60de43015dc35be89ffcc288a38e6c786f667b7c
[oota-llvm.git] / include / llvm / Target / TargetAsmInfo.h
1 //===-- llvm/Target/TargetAsmInfo.h - Asm info ------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by James M. Laskey and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains a class to be used as the basis for target specific
11 // asm writers.  This class primarily takes care of global printing constants,
12 // which are used in very similar ways across all targets.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_TARGET_ASM_INFO_H
17 #define LLVM_TARGET_ASM_INFO_H
18
19 #include "llvm/CodeGen/MachineFunctionPass.h"
20 #include "llvm/Support/DataTypes.h"
21
22 namespace llvm {
23   class TargetMachine;
24   class CallInst;
25
26   /// TargetAsmInfo - This class is intended to be used as a base class for asm
27   /// properties and features specific to the target.
28   class TargetAsmInfo {
29   protected:
30     //===------------------------------------------------------------------===//
31     // Properties to be set by the target writer, used to configure asm printer.
32     //
33     
34     /// TextSection - Section directive for standard text.
35     ///
36     const char *TextSection;              // Defaults to ".text".
37     
38     /// DataSection - Section directive for standard data.
39     ///
40     const char *DataSection;              // Defaults to ".data".
41
42     /// BSSSection - Section directive for uninitialized data.  Null if this
43     /// target doesn't support a BSS section.
44     ///
45     const char *BSSSection;               // Default to ".bss".
46
47     /// TLSDataSection - Section directive for Thread Local data.
48     ///
49     const char *TLSDataSection;// Defaults to ".section .tdata,"awT",@progbits".
50
51     /// TLSBSSSection - Section directive for Thread Local uninitialized data.
52     /// Null if this target doesn't support a BSS section.
53     ///
54     const char *TLSBSSSection;// Default to ".section .tbss,"awT",@nobits".
55     /// ZeroFillDirective - Directive for emitting a global to the ZeroFill
56     /// section on this target.  Null if this target doesn't support zerofill.
57     const char *ZeroFillDirective;        // Default is null.
58     
59     /// AddressSize - Size of addresses used in file.
60     ///
61     unsigned AddressSize;                 // Defaults to 4.
62     
63     /// NeedsSet - True if target asm can't compute addresses on data
64     /// directives.
65     bool NeedsSet;                        // Defaults to false.
66     
67     /// MaxInstLength - This is the maximum possible length of an instruction,
68     /// which is needed to compute the size of an inline asm.
69     unsigned MaxInstLength;               // Defaults to 4.
70     
71     /// PCSymbol - The symbol used to represent the current PC.  Used in PC
72     /// relative expressions.
73     const char *PCSymbol;                 // Defaults to "$".
74
75     /// SeparatorChar - This character, if specified, is used to separate
76     /// instructions from each other when on the same line.  This is used to
77     /// measure inline asm instructions.
78     char SeparatorChar;                   // Defaults to ';'
79
80     /// CommentString - This indicates the comment character used by the
81     /// assembler.
82     const char *CommentString;            // Defaults to "#"
83
84     /// GlobalPrefix - If this is set to a non-empty string, it is prepended
85     /// onto all global symbols.  This is often used for "_" or ".".
86     const char *GlobalPrefix;             // Defaults to ""
87
88     /// PrivateGlobalPrefix - This prefix is used for globals like constant
89     /// pool entries that are completely private to the .o file and should not
90     /// have names in the .o file.  This is often "." or "L".
91     const char *PrivateGlobalPrefix;      // Defaults to "."
92     
93     /// JumpTableSpecialLabelPrefix - If not null, a extra (dead) label is
94     /// emitted before jump tables with the specified prefix.
95     const char *JumpTableSpecialLabelPrefix;  // Default to null.
96     
97     /// GlobalVarAddrPrefix/Suffix - If these are nonempty, these strings
98     /// will enclose any GlobalVariable (that isn't a function)
99     ///
100     const char *GlobalVarAddrPrefix;      // Defaults to ""
101     const char *GlobalVarAddrSuffix;      // Defaults to ""
102
103     /// FunctionAddrPrefix/Suffix - If these are nonempty, these strings
104     /// will enclose any GlobalVariable that points to a function.
105     /// For example, this is used by the IA64 backend to materialize
106     /// function descriptors, by decorating the ".data8" object with the
107     /// \literal @fptr( ) \endliteral
108     /// link-relocation operator.
109     ///
110     const char *FunctionAddrPrefix;       // Defaults to ""
111     const char *FunctionAddrSuffix;       // Defaults to ""
112
113     /// InlineAsmStart/End - If these are nonempty, they contain a directive to
114     /// emit before and after an inline assembly statement.
115     const char *InlineAsmStart;           // Defaults to "#APP\n"
116     const char *InlineAsmEnd;             // Defaults to "#NO_APP\n"
117
118     /// AssemblerDialect - Which dialect of an assembler variant to use.
119     unsigned AssemblerDialect;            // Defaults to 0
120
121     //===--- Data Emission Directives -------------------------------------===//
122
123     /// ZeroDirective - this should be set to the directive used to get some
124     /// number of zero bytes emitted to the current section.  Common cases are
125     /// "\t.zero\t" and "\t.space\t".  If this is set to null, the
126     /// Data*bitsDirective's will be used to emit zero bytes.
127     const char *ZeroDirective;            // Defaults to "\t.zero\t"
128     const char *ZeroDirectiveSuffix;      // Defaults to ""
129
130     /// AsciiDirective - This directive allows emission of an ascii string with
131     /// the standard C escape characters embedded into it.
132     const char *AsciiDirective;           // Defaults to "\t.ascii\t"
133     
134     /// AscizDirective - If not null, this allows for special handling of
135     /// zero terminated strings on this target.  This is commonly supported as
136     /// ".asciz".  If a target doesn't support this, it can be set to null.
137     const char *AscizDirective;           // Defaults to "\t.asciz\t"
138
139     /// DataDirectives - These directives are used to output some unit of
140     /// integer data to the current section.  If a data directive is set to
141     /// null, smaller data directives will be used to emit the large sizes.
142     const char *Data8bitsDirective;       // Defaults to "\t.byte\t"
143     const char *Data16bitsDirective;      // Defaults to "\t.short\t"
144     const char *Data32bitsDirective;      // Defaults to "\t.long\t"
145     const char *Data64bitsDirective;      // Defaults to "\t.quad\t"
146
147     //===--- Alignment Information ----------------------------------------===//
148
149     /// AlignDirective - The directive used to emit round up to an alignment
150     /// boundary.
151     ///
152     const char *AlignDirective;           // Defaults to "\t.align\t"
153
154     /// AlignmentIsInBytes - If this is true (the default) then the asmprinter
155     /// emits ".align N" directives, where N is the number of bytes to align to.
156     /// Otherwise, it emits ".align log2(N)", e.g. 3 to align to an 8 byte
157     /// boundary.
158     bool AlignmentIsInBytes;              // Defaults to true
159
160     //===--- Section Switching Directives ---------------------------------===//
161     
162     /// SwitchToSectionDirective - This is the directive used when we want to
163     /// emit a global to an arbitrary section.  The section name is emited after
164     /// this.
165     const char *SwitchToSectionDirective; // Defaults to "\t.section\t"
166     
167     /// TextSectionStartSuffix - This is printed after each start of section
168     /// directive for text sections.
169     const char *TextSectionStartSuffix;   // Defaults to "".
170
171     /// DataSectionStartSuffix - This is printed after each start of section
172     /// directive for data sections.
173     const char *DataSectionStartSuffix;   // Defaults to "".
174     
175     /// SectionEndDirectiveSuffix - If non-null, the asm printer will close each
176     /// section with the section name and this suffix printed.
177     const char *SectionEndDirectiveSuffix;// Defaults to null.
178     
179     /// ConstantPoolSection - This is the section that we SwitchToSection right
180     /// before emitting the constant pool for a function.
181     const char *ConstantPoolSection;      // Defaults to "\t.section .rodata\n"
182
183     /// JumpTableDataSection - This is the section that we SwitchToSection right
184     /// before emitting the jump tables for a function when the relocation model
185     /// is not PIC.
186     const char *JumpTableDataSection;     // Defaults to "\t.section .rodata\n"
187     
188     /// JumpTableDirective - if non-null, the directive to emit before a jump
189     /// table.
190     const char *JumpTableDirective;
191
192     /// CStringSection - If not null, this allows for special handling of
193     /// cstring constants (\0 terminated string that does not contain any
194     /// other null bytes) on this target. This is commonly supported as
195     /// ".cstring".
196     const char *CStringSection;           // Defaults to NULL
197
198     /// StaticCtorsSection - This is the directive that is emitted to switch to
199     /// a section to emit the static constructor list.
200     /// Defaults to "\t.section .ctors,\"aw\",@progbits".
201     const char *StaticCtorsSection;
202
203     /// StaticDtorsSection - This is the directive that is emitted to switch to
204     /// a section to emit the static destructor list.
205     /// Defaults to "\t.section .dtors,\"aw\",@progbits".
206     const char *StaticDtorsSection;
207
208     /// FourByteConstantSection, EightByteConstantSection,
209     /// SixteenByteConstantSection - These are special sections where we place
210     /// 4-, 8-, and 16- byte constant literals.
211     const char *FourByteConstantSection;
212     const char *EightByteConstantSection;
213     const char *SixteenByteConstantSection;
214
215     /// ReadOnlySection - This is the directive that is emitted to switch to a
216     /// read-only section for constant data (e.g. data declared const,
217     /// jump tables).
218     const char *ReadOnlySection;          // Defaults to NULL
219
220     //===--- Global Variable Emission Directives --------------------------===//
221     
222     /// GlobalDirective - This is the directive used to declare a global entity.
223     ///
224     const char *GlobalDirective;          // Defaults to NULL.
225     
226     /// SetDirective - This is the name of a directive that can be used to tell
227     /// the assembler to set the value of a variable to some expression.
228     const char *SetDirective;             // Defaults to null.
229     
230     /// LCOMMDirective - This is the name of a directive (if supported) that can
231     /// be used to efficiently declare a local (internal) block of zero
232     /// initialized data in the .bss/.data section.  The syntax expected is:
233     /// \literal <LCOMMDirective> SYMBOLNAME LENGTHINBYTES, ALIGNMENT
234     /// \endliteral
235     const char *LCOMMDirective;           // Defaults to null.
236     
237     const char *COMMDirective;            // Defaults to "\t.comm\t".
238
239     /// COMMDirectiveTakesAlignment - True if COMMDirective take a third
240     /// argument that specifies the alignment of the declaration.
241     bool COMMDirectiveTakesAlignment;     // Defaults to true.
242     
243     /// HasDotTypeDotSizeDirective - True if the target has .type and .size
244     /// directives, this is true for most ELF targets.
245     bool HasDotTypeDotSizeDirective;      // Defaults to true.
246     
247     /// UsedDirective - This directive, if non-null, is used to declare a global
248     /// as being used somehow that the assembler can't see.  This prevents dead
249     /// code elimination on some targets.
250     const char *UsedDirective;            // Defaults to null.
251
252     /// WeakRefDirective - This directive, if non-null, is used to declare a
253     /// global as being a weak undefined symbol.
254     const char *WeakRefDirective;         // Defaults to null.
255     
256     /// HiddenDirective - This directive, if non-null, is used to declare a
257     /// global or function as having hidden visibility.
258     const char *HiddenDirective;          // Defaults to "\t.hidden\t".
259     
260     //===--- Dwarf Emission Directives -----------------------------------===//
261
262     /// AbsoluteSectionOffsets - True if we should emit abolute section
263     /// offsets. Defaults to false.
264     bool AbsoluteSectionOffsets;
265     
266     /// HasLEB128 - True if target asm supports leb128 directives.
267     ///
268     bool HasLEB128; // Defaults to false.
269     
270     /// hasDotLoc - True if target asm supports .loc directives.
271     ///
272     bool HasDotLoc; // Defaults to false.
273     
274     /// HasDotFile - True if target asm supports .file directives.
275     ///
276     bool HasDotFile; // Defaults to false.
277     
278     /// SupportsExceptionHandling - True if target supports exception handling.
279     ///
280     bool SupportsExceptionHandling; // Defaults to false.
281     
282     /// RequiresFrameSection - true if the Dwarf2 output needs a frame section
283     ///
284     bool DwarfRequiresFrameSection; // Defaults to true.
285
286     /// DwarfSectionOffsetDirective - Special section offset directive.
287     const char* DwarfSectionOffsetDirective; // Defaults to NULL
288     
289     /// DwarfAbbrevSection - Section directive for Dwarf abbrev.
290     ///
291     const char *DwarfAbbrevSection; // Defaults to ".debug_abbrev".
292
293     /// DwarfInfoSection - Section directive for Dwarf info.
294     ///
295     const char *DwarfInfoSection; // Defaults to ".debug_info".
296
297     /// DwarfLineSection - Section directive for Dwarf info.
298     ///
299     const char *DwarfLineSection; // Defaults to ".debug_line".
300     
301     /// DwarfFrameSection - Section directive for Dwarf info.
302     ///
303     const char *DwarfFrameSection; // Defaults to ".debug_frame".
304     
305     /// DwarfPubNamesSection - Section directive for Dwarf info.
306     ///
307     const char *DwarfPubNamesSection; // Defaults to ".debug_pubnames".
308     
309     /// DwarfPubTypesSection - Section directive for Dwarf info.
310     ///
311     const char *DwarfPubTypesSection; // Defaults to ".debug_pubtypes".
312     
313     /// DwarfStrSection - Section directive for Dwarf info.
314     ///
315     const char *DwarfStrSection; // Defaults to ".debug_str".
316
317     /// DwarfLocSection - Section directive for Dwarf info.
318     ///
319     const char *DwarfLocSection; // Defaults to ".debug_loc".
320
321     /// DwarfARangesSection - Section directive for Dwarf info.
322     ///
323     const char *DwarfARangesSection; // Defaults to ".debug_aranges".
324
325     /// DwarfRangesSection - Section directive for Dwarf info.
326     ///
327     const char *DwarfRangesSection; // Defaults to ".debug_ranges".
328
329     /// DwarfMacInfoSection - Section directive for Dwarf info.
330     ///
331     const char *DwarfMacInfoSection; // Defaults to ".debug_macinfo".
332     
333     /// DwarfEHFrameSection - Section directive for Exception frames.
334     ///
335     const char *DwarfEHFrameSection; // Defaults to ".eh_frame".
336     
337     /// DwarfExceptionSection - Section directive for Exception table.
338     ///
339     const char *DwarfExceptionSection; // Defaults to ".gcc_except_table".
340      
341
342     //===--- CBE Asm Translation Table -----------------------------------===//
343
344     const char** AsmTransCBE; // Defaults to empty
345
346   public:
347     TargetAsmInfo();
348     virtual ~TargetAsmInfo();
349
350     /// Measure the specified inline asm to determine an approximation of its
351     /// length.
352     unsigned getInlineAsmLength(const char *Str) const;
353
354     /// ExpandInlineAsm - This hook allows the target to expand an inline asm
355     /// call to be explicit llvm code if it wants to.  This is useful for
356     /// turning simple inline asms into LLVM intrinsics, which gives the
357     /// compiler more information about the behavior of the code.
358     virtual bool ExpandInlineAsm(CallInst *CI) const {
359       return false;
360     }
361     
362     // Accessors.
363     //
364     const char *getTextSection() const {
365       return TextSection;
366     }
367     const char *getDataSection() const {
368       return DataSection;
369     }
370     const char *getBSSSection() const {
371       return BSSSection;
372     }
373     const char *getTLSDataSection() const {
374       return TLSDataSection;
375     }
376     const char *getTLSBSSSection() const {
377       return TLSBSSSection;
378     }
379     const char *getZeroFillDirective() const {
380       return ZeroFillDirective;
381     }
382     unsigned getAddressSize() const {
383       return AddressSize;
384     }
385     bool needsSet() const {
386       return NeedsSet;
387     }
388     const char *getPCSymbol() const {
389       return PCSymbol;
390     }
391     char getSeparatorChar() const {
392       return SeparatorChar;
393     }
394     const char *getCommentString() const {
395       return CommentString;
396     }
397     const char *getGlobalPrefix() const {
398       return GlobalPrefix;
399     }
400     const char *getPrivateGlobalPrefix() const {
401       return PrivateGlobalPrefix;
402     }
403     const char *getJumpTableSpecialLabelPrefix() const {
404       return JumpTableSpecialLabelPrefix;
405     }
406     const char *getGlobalVarAddrPrefix() const {
407       return GlobalVarAddrPrefix;
408     }
409     const char *getGlobalVarAddrSuffix() const {
410       return GlobalVarAddrSuffix;
411     }
412     const char *getFunctionAddrPrefix() const {
413       return FunctionAddrPrefix;
414     }
415     const char *getFunctionAddrSuffix() const {
416       return FunctionAddrSuffix;
417     }
418     const char *getInlineAsmStart() const {
419       return InlineAsmStart;
420     }
421     const char *getInlineAsmEnd() const {
422       return InlineAsmEnd;
423     }
424     unsigned getAssemblerDialect() const {
425       return AssemblerDialect;
426     }
427     const char *getZeroDirective() const {
428       return ZeroDirective;
429     }
430     const char *getZeroDirectiveSuffix() const {
431       return ZeroDirectiveSuffix;
432     }
433     const char *getAsciiDirective() const {
434       return AsciiDirective;
435     }
436     const char *getAscizDirective() const {
437       return AscizDirective;
438     }
439     const char *getData8bitsDirective() const {
440       return Data8bitsDirective;
441     }
442     const char *getData16bitsDirective() const {
443       return Data16bitsDirective;
444     }
445     const char *getData32bitsDirective() const {
446       return Data32bitsDirective;
447     }
448     const char *getData64bitsDirective() const {
449       return Data64bitsDirective;
450     }
451     const char *getJumpTableDirective() const {
452       return JumpTableDirective;
453     }
454     const char *getAlignDirective() const {
455       return AlignDirective;
456     }
457     bool getAlignmentIsInBytes() const {
458       return AlignmentIsInBytes;
459     }
460     const char *getSwitchToSectionDirective() const {
461       return SwitchToSectionDirective;
462     }
463     const char *getTextSectionStartSuffix() const {
464       return TextSectionStartSuffix;
465     }
466     const char *getDataSectionStartSuffix() const {
467       return DataSectionStartSuffix;
468     }
469     const char *getSectionEndDirectiveSuffix() const {
470       return SectionEndDirectiveSuffix;
471     }
472     const char *getConstantPoolSection() const {
473       return ConstantPoolSection;
474     }
475     const char *getJumpTableDataSection() const {
476       return JumpTableDataSection;
477     }
478     const char *getCStringSection() const {
479       return CStringSection;
480     }
481     const char *getStaticCtorsSection() const {
482       return StaticCtorsSection;
483     }
484     const char *getStaticDtorsSection() const {
485       return StaticDtorsSection;
486     }
487     const char *getFourByteConstantSection() const {
488       return FourByteConstantSection;
489     }
490     const char *getEightByteConstantSection() const {
491       return EightByteConstantSection;
492     }
493     const char *getSixteenByteConstantSection() const {
494       return SixteenByteConstantSection;
495     }
496     const char *getReadOnlySection() const {
497       return ReadOnlySection;
498     }
499     const char *getGlobalDirective() const {
500       return GlobalDirective;
501     }
502     const char *getSetDirective() const {
503       return SetDirective;
504     }
505     const char *getLCOMMDirective() const {
506       return LCOMMDirective;
507     }
508     const char *getCOMMDirective() const {
509       return COMMDirective;
510     }
511     bool getCOMMDirectiveTakesAlignment() const {
512       return COMMDirectiveTakesAlignment;
513     }
514     bool hasDotTypeDotSizeDirective() const {
515       return HasDotTypeDotSizeDirective;
516     }
517     const char *getUsedDirective() const {
518       return UsedDirective;
519     }
520     const char *getWeakRefDirective() const {
521       return WeakRefDirective;
522     }
523     const char *getHiddenDirective() const {
524       return HiddenDirective;
525     }
526     bool isAbsoluteSectionOffsets() const {
527       return AbsoluteSectionOffsets;
528     }
529     bool hasLEB128() const {
530       return HasLEB128;
531     }
532     bool hasDotLoc() const {
533       return HasDotLoc;
534     }
535     bool hasDotFile() const {
536       return HasDotFile;
537     }
538     bool getSupportsExceptionHandling() const {
539       return SupportsExceptionHandling;
540     }
541     bool getDwarfRequiresFrameSection() const {
542       return DwarfRequiresFrameSection;
543     }
544     const char *getDwarfSectionOffsetDirective() const {
545       return DwarfSectionOffsetDirective;
546     }    
547     const char *getDwarfAbbrevSection() const {
548       return DwarfAbbrevSection;
549     }
550     const char *getDwarfInfoSection() const {
551       return DwarfInfoSection;
552     }
553     const char *getDwarfLineSection() const {
554       return DwarfLineSection;
555     }
556     const char *getDwarfFrameSection() const {
557       return DwarfFrameSection;
558     }
559     const char *getDwarfPubNamesSection() const {
560       return DwarfPubNamesSection;
561     }
562     const char *getDwarfPubTypesSection() const {
563       return DwarfPubTypesSection;
564     }
565     const char *getDwarfStrSection() const {
566       return DwarfStrSection;
567     }
568     const char *getDwarfLocSection() const {
569       return DwarfLocSection;
570     }
571     const char *getDwarfARangesSection() const {
572       return DwarfARangesSection;
573     }
574     const char *getDwarfRangesSection() const {
575       return DwarfRangesSection;
576     }
577     const char *getDwarfMacInfoSection() const {
578       return DwarfMacInfoSection;
579     }
580     const char *getDwarfEHFrameSection() const {
581       return DwarfEHFrameSection;
582     }
583     const char *getDwarfExceptionSection() const {
584       return DwarfExceptionSection;
585     }
586     const char** getAsmCBE() const {
587       return AsmTransCBE;
588     }
589   };
590 }
591
592 #endif
593