MCAsmInfo.h revision e8e98d7f2eaa0613442ce21ab6a040c0f04f5b4d
1//===-- llvm/MC/MCAsmInfo.h - Asm info --------------------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// 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/MC/MCDirectives.h"
20#include <cassert>
21
22namespace llvm {
23  class MCSection;
24  class MCContext;
25
26  /// MCAsmInfo - This class is intended to be used as a base class for asm
27  /// properties and features specific to the target.
28  namespace ExceptionHandling { enum ExceptionsType { None, Dwarf, SjLj }; }
29
30  class MCAsmInfo {
31  protected:
32    //===------------------------------------------------------------------===//
33    // Properties to be set by the target writer, used to configure asm printer.
34    //
35
36    /// HasSubsectionsViaSymbols - True if this target has the MachO
37    /// .subsections_via_symbols directive.
38    bool HasSubsectionsViaSymbols;           // Default is false.
39
40    /// HasMachoZeroFillDirective - True if this is a MachO target that supports
41    /// the macho-specific .zerofill directive for emitting BSS Symbols.
42    bool HasMachoZeroFillDirective;               // Default is false.
43
44    /// HasMachoTBSSDirective - True if this is a MachO target that supports
45    /// the macho-specific .tbss directive for emitting thread local BSS Symbols
46    bool HasMachoTBSSDirective;                 // Default is false.
47
48    /// HasStaticCtorDtorReferenceInStaticMode - True if the compiler should
49    /// emit a ".reference .constructors_used" or ".reference .destructors_used"
50    /// directive after the a static ctor/dtor list.  This directive is only
51    /// emitted in Static relocation model.
52    bool HasStaticCtorDtorReferenceInStaticMode;  // Default is false.
53
54    /// MaxInstLength - This is the maximum possible length of an instruction,
55    /// which is needed to compute the size of an inline asm.
56    unsigned MaxInstLength;                  // Defaults to 4.
57
58    /// PCSymbol - The symbol used to represent the current PC.  Used in PC
59    /// relative expressions.
60    const char *PCSymbol;                    // Defaults to "$".
61
62    /// SeparatorChar - This character, if specified, is used to separate
63    /// instructions from each other when on the same line.  This is used to
64    /// measure inline asm instructions.
65    char SeparatorChar;                      // Defaults to ';'
66
67    /// CommentColumn - This indicates the comment num (zero-based) at
68    /// which asm comments should be printed.
69    unsigned CommentColumn;                  // Defaults to 40
70
71    /// CommentString - This indicates the comment character used by the
72    /// assembler.
73    const char *CommentString;               // Defaults to "#"
74
75    /// LabelSuffix - This is appended to emitted labels.
76    const char *LabelSuffix;                 // Defaults to ":"
77
78    /// GlobalPrefix - If this is set to a non-empty string, it is prepended
79    /// onto all global symbols.  This is often used for "_" or ".".
80    const char *GlobalPrefix;                // Defaults to ""
81
82    /// PrivateGlobalPrefix - This prefix is used for globals like constant
83    /// pool entries that are completely private to the .s file and should not
84    /// have names in the .o file.  This is often "." or "L".
85    const char *PrivateGlobalPrefix;         // Defaults to "."
86
87    /// LinkerPrivateGlobalPrefix - This prefix is used for symbols that should
88    /// be passed through the assembler but be removed by the linker.  This
89    /// is "l" on Darwin, currently used for some ObjC metadata.
90    const char *LinkerPrivateGlobalPrefix;   // Defaults to ""
91
92    /// InlineAsmStart/End - If these are nonempty, they contain a directive to
93    /// emit before and after an inline assembly statement.
94    const char *InlineAsmStart;              // Defaults to "#APP\n"
95    const char *InlineAsmEnd;                // Defaults to "#NO_APP\n"
96
97    /// AssemblerDialect - Which dialect of an assembler variant to use.
98    unsigned AssemblerDialect;               // Defaults to 0
99
100    /// AllowQuotesInName - This is true if the assembler allows for complex
101    /// symbol names to be surrounded in quotes.  This defaults to false.
102    bool AllowQuotesInName;
103
104    /// AllowNameToStartWithDigit - This is true if the assembler allows symbol
105    /// names to start with a digit (e.g., "0x0021").  This defaults to false.
106    bool AllowNameToStartWithDigit;
107
108    /// AllowPeriodsInName - This is true if the assembler allows periods in
109    /// symbol names.  This defaults to true.
110    bool AllowPeriodsInName;
111
112    //===--- Data Emission Directives -------------------------------------===//
113
114    /// ZeroDirective - this should be set to the directive used to get some
115    /// number of zero bytes emitted to the current section.  Common cases are
116    /// "\t.zero\t" and "\t.space\t".  If this is set to null, the
117    /// Data*bitsDirective's will be used to emit zero bytes.
118    const char *ZeroDirective;               // Defaults to "\t.zero\t"
119
120    /// AsciiDirective - This directive allows emission of an ascii string with
121    /// the standard C escape characters embedded into it.
122    const char *AsciiDirective;              // Defaults to "\t.ascii\t"
123
124    /// AscizDirective - If not null, this allows for special handling of
125    /// zero terminated strings on this target.  This is commonly supported as
126    /// ".asciz".  If a target doesn't support this, it can be set to null.
127    const char *AscizDirective;              // Defaults to "\t.asciz\t"
128
129    /// DataDirectives - These directives are used to output some unit of
130    /// integer data to the current section.  If a data directive is set to
131    /// null, smaller data directives will be used to emit the large sizes.
132    const char *Data8bitsDirective;          // Defaults to "\t.byte\t"
133    const char *Data16bitsDirective;         // Defaults to "\t.short\t"
134    const char *Data32bitsDirective;         // Defaults to "\t.long\t"
135    const char *Data64bitsDirective;         // Defaults to "\t.quad\t"
136
137    /// GPRel32Directive - if non-null, a directive that is used to emit a word
138    /// which should be relocated as a 32-bit GP-relative offset, e.g. .gpword
139    /// on Mips or .gprel32 on Alpha.
140    const char *GPRel32Directive;            // Defaults to NULL.
141
142    /// getDataASDirective - Return the directive that should be used to emit
143    /// data of the specified size to the specified numeric address space.
144    virtual const char *getDataASDirective(unsigned Size, unsigned AS) const {
145      assert(AS != 0 && "Don't know the directives for default addr space");
146      return 0;
147    }
148
149    /// SunStyleELFSectionSwitchSyntax - This is true if this target uses "Sun
150    /// Style" syntax for section switching ("#alloc,#write" etc) instead of the
151    /// normal ELF syntax (,"a,w") in .section directives.
152    bool SunStyleELFSectionSwitchSyntax;     // Defaults to false.
153
154    /// UsesELFSectionDirectiveForBSS - This is true if this target uses ELF
155    /// '.section' directive before the '.bss' one. It's used for PPC/Linux
156    /// which doesn't support the '.bss' directive only.
157    bool UsesELFSectionDirectiveForBSS;      // Defaults to false.
158
159    /// HasMicrosoftFastStdCallMangling - True if this target uses microsoft
160    /// style mangling for functions with X86_StdCall/X86_FastCall calling
161    /// convention.
162    bool HasMicrosoftFastStdCallMangling;    // Defaults to false.
163
164    //===--- Alignment Information ----------------------------------------===//
165
166    /// AlignDirective - The directive used to emit round up to an alignment
167    /// boundary.
168    ///
169    const char *AlignDirective;              // Defaults to "\t.align\t"
170
171    /// AlignmentIsInBytes - If this is true (the default) then the asmprinter
172    /// emits ".align N" directives, where N is the number of bytes to align to.
173    /// Otherwise, it emits ".align log2(N)", e.g. 3 to align to an 8 byte
174    /// boundary.
175    bool AlignmentIsInBytes;                 // Defaults to true
176
177    /// TextAlignFillValue - If non-zero, this is used to fill the executable
178    /// space created as the result of a alignment directive.
179    unsigned TextAlignFillValue;             // Defaults to 0
180
181    //===--- Global Variable Emission Directives --------------------------===//
182
183    /// GlobalDirective - This is the directive used to declare a global entity.
184    ///
185    const char *GlobalDirective;             // Defaults to NULL.
186
187    /// ExternDirective - This is the directive used to declare external
188    /// globals.
189    ///
190    const char *ExternDirective;             // Defaults to NULL.
191
192    /// HasSetDirective - True if the assembler supports the .set directive.
193    bool HasSetDirective;                    // Defaults to true.
194
195    /// HasLCOMMDirective - This is true if the target supports the .lcomm
196    /// directive.
197    bool HasLCOMMDirective;                  // Defaults to false.
198
199    /// COMMDirectiveAlignmentIsInBytes - True is COMMDirective's optional
200    /// alignment is to be specified in bytes instead of log2(n).
201    bool COMMDirectiveAlignmentIsInBytes;    // Defaults to true;
202
203    /// HasDotTypeDotSizeDirective - True if the target has .type and .size
204    /// directives, this is true for most ELF targets.
205    bool HasDotTypeDotSizeDirective;         // Defaults to true.
206
207    /// HasSingleParameterDotFile - True if the target has a single parameter
208    /// .file directive, this is true for ELF targets.
209    bool HasSingleParameterDotFile;          // Defaults to true.
210
211    /// HasNoDeadStrip - True if this target supports the MachO .no_dead_strip
212    /// directive.
213    bool HasNoDeadStrip;                     // Defaults to false.
214
215    /// HasSymbolResolver - True if this target supports the MachO
216    /// .symbol_resolver directive.
217    bool HasSymbolResolver;                     // Defaults to false.
218
219    /// WeakRefDirective - This directive, if non-null, is used to declare a
220    /// global as being a weak undefined symbol.
221    const char *WeakRefDirective;            // Defaults to NULL.
222
223    /// WeakDefDirective - This directive, if non-null, is used to declare a
224    /// global as being a weak defined symbol.
225    const char *WeakDefDirective;            // Defaults to NULL.
226
227    /// LinkOnceDirective - This directive, if non-null is used to declare a
228    /// global as being a weak defined symbol.  This is used on cygwin/mingw.
229    const char *LinkOnceDirective;           // Defaults to NULL.
230
231    /// HiddenVisibilityAttr - This attribute, if not MCSA_Invalid, is used to
232    /// declare a symbol as having hidden visibility.
233    MCSymbolAttr HiddenVisibilityAttr;       // Defaults to MCSA_Hidden.
234
235    /// ProtectedVisibilityAttr - This attribute, if not MCSA_Invalid, is used
236    /// to declare a symbol as having protected visibility.
237    MCSymbolAttr ProtectedVisibilityAttr;    // Defaults to MCSA_Protected
238
239    //===--- Dwarf Emission Directives -----------------------------------===//
240
241    /// HasLEB128 - True if target asm supports leb128 directives.
242    bool HasLEB128;                          // Defaults to false.
243
244    /// SupportsDebugInformation - True if target supports emission of debugging
245    /// information.
246    bool SupportsDebugInformation;           // Defaults to false.
247
248    /// SupportsExceptionHandling - True if target supports exception handling.
249    ExceptionHandling::ExceptionsType ExceptionsType; // Defaults to None
250
251    /// RequiresFrameSection - true if the Dwarf2 output needs a frame section
252    bool DwarfRequiresFrameSection;          // Defaults to true.
253
254    /// DwarfUsesInlineInfoSection - True if DwarfDebugInlineSection is used to
255    /// encode inline subroutine information.
256    bool DwarfUsesInlineInfoSection;         // Defaults to false.
257
258    /// DwarfSectionOffsetDirective - Special section offset directive.
259    const char* DwarfSectionOffsetDirective; // Defaults to NULL
260
261    /// DwarfUsesAbsoluteLabelForStmtList - True if DW_AT_stmt_list needs
262    /// absolute label instead of offset.
263    bool DwarfUsesAbsoluteLabelForStmtList;  // Defaults to true;
264
265    // DwarfUsesLabelOffsetDifference - True if Dwarf2 output can
266    // use EmitLabelOffsetDifference.
267    bool DwarfUsesLabelOffsetForRanges;
268
269    //===--- CBE Asm Translation Table -----------------------------------===//
270
271    const char *const *AsmTransCBE;          // Defaults to empty
272
273  public:
274    explicit MCAsmInfo();
275    virtual ~MCAsmInfo();
276
277    // FIXME: move these methods to DwarfPrinter when the JIT stops using them.
278    static unsigned getSLEB128Size(int Value);
279    static unsigned getULEB128Size(unsigned Value);
280
281    bool hasSubsectionsViaSymbols() const { return HasSubsectionsViaSymbols; }
282
283    // Data directive accessors.
284    //
285    const char *getData8bitsDirective(unsigned AS = 0) const {
286      return AS == 0 ? Data8bitsDirective : getDataASDirective(8, AS);
287    }
288    const char *getData16bitsDirective(unsigned AS = 0) const {
289      return AS == 0 ? Data16bitsDirective : getDataASDirective(16, AS);
290    }
291    const char *getData32bitsDirective(unsigned AS = 0) const {
292      return AS == 0 ? Data32bitsDirective : getDataASDirective(32, AS);
293    }
294    const char *getData64bitsDirective(unsigned AS = 0) const {
295      return AS == 0 ? Data64bitsDirective : getDataASDirective(64, AS);
296    }
297    const char *getGPRel32Directive() const { return GPRel32Directive; }
298
299    /// getNonexecutableStackSection - Targets can implement this method to
300    /// specify a section to switch to if the translation unit doesn't have any
301    /// trampolines that require an executable stack.
302    virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const{
303      return 0;
304    }
305
306    bool usesSunStyleELFSectionSwitchSyntax() const {
307      return SunStyleELFSectionSwitchSyntax;
308    }
309
310    bool usesELFSectionDirectiveForBSS() const {
311      return UsesELFSectionDirectiveForBSS;
312    }
313
314    bool hasMicrosoftFastStdCallMangling() const {
315      return HasMicrosoftFastStdCallMangling;
316    }
317
318    // Accessors.
319    //
320    bool hasMachoZeroFillDirective() const { return HasMachoZeroFillDirective; }
321    bool hasMachoTBSSDirective() const { return HasMachoTBSSDirective; }
322    bool hasStaticCtorDtorReferenceInStaticMode() const {
323      return HasStaticCtorDtorReferenceInStaticMode;
324    }
325    unsigned getMaxInstLength() const {
326      return MaxInstLength;
327    }
328    const char *getPCSymbol() const {
329      return PCSymbol;
330    }
331    char getSeparatorChar() const {
332      return SeparatorChar;
333    }
334    unsigned getCommentColumn() const {
335      return CommentColumn;
336    }
337    const char *getCommentString() const {
338      return CommentString;
339    }
340    const char *getLabelSuffix() const {
341      return LabelSuffix;
342    }
343    const char *getGlobalPrefix() const {
344      return GlobalPrefix;
345    }
346    const char *getPrivateGlobalPrefix() const {
347      return PrivateGlobalPrefix;
348    }
349    const char *getLinkerPrivateGlobalPrefix() const {
350      return LinkerPrivateGlobalPrefix;
351    }
352    const char *getInlineAsmStart() const {
353      return InlineAsmStart;
354    }
355    const char *getInlineAsmEnd() const {
356      return InlineAsmEnd;
357    }
358    unsigned getAssemblerDialect() const {
359      return AssemblerDialect;
360    }
361    bool doesAllowQuotesInName() const {
362      return AllowQuotesInName;
363    }
364    bool doesAllowNameToStartWithDigit() const {
365      return AllowNameToStartWithDigit;
366    }
367    bool doesAllowPeriodsInName() const {
368      return AllowPeriodsInName;
369    }
370    const char *getZeroDirective() const {
371      return ZeroDirective;
372    }
373    const char *getAsciiDirective() const {
374      return AsciiDirective;
375    }
376    const char *getAscizDirective() const {
377      return AscizDirective;
378    }
379    const char *getAlignDirective() const {
380      return AlignDirective;
381    }
382    bool getAlignmentIsInBytes() const {
383      return AlignmentIsInBytes;
384    }
385    unsigned getTextAlignFillValue() const {
386      return TextAlignFillValue;
387    }
388    const char *getGlobalDirective() const {
389      return GlobalDirective;
390    }
391    const char *getExternDirective() const {
392      return ExternDirective;
393    }
394    bool hasSetDirective() const { return HasSetDirective; }
395    bool hasLCOMMDirective() const { return HasLCOMMDirective; }
396    bool hasDotTypeDotSizeDirective() const {return HasDotTypeDotSizeDirective;}
397    bool getCOMMDirectiveAlignmentIsInBytes() const {
398      return COMMDirectiveAlignmentIsInBytes;
399    }
400    bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile; }
401    bool hasNoDeadStrip() const { return HasNoDeadStrip; }
402    bool hasSymbolResolver() const { return HasSymbolResolver; }
403    const char *getWeakRefDirective() const { return WeakRefDirective; }
404    const char *getWeakDefDirective() const { return WeakDefDirective; }
405    const char *getLinkOnceDirective() const { return LinkOnceDirective; }
406
407    MCSymbolAttr getHiddenVisibilityAttr() const { return HiddenVisibilityAttr;}
408    MCSymbolAttr getProtectedVisibilityAttr() const {
409      return ProtectedVisibilityAttr;
410    }
411    bool hasLEB128() const {
412      return HasLEB128;
413    }
414    bool doesSupportDebugInformation() const {
415      return SupportsDebugInformation;
416    }
417    bool doesSupportExceptionHandling() const {
418      return ExceptionsType != ExceptionHandling::None;
419    }
420    ExceptionHandling::ExceptionsType getExceptionHandlingType() const {
421      return ExceptionsType;
422    }
423    bool doesDwarfRequireFrameSection() const {
424      return DwarfRequiresFrameSection;
425    }
426    bool doesDwarfUsesInlineInfoSection() const {
427      return DwarfUsesInlineInfoSection;
428    }
429    const char *getDwarfSectionOffsetDirective() const {
430      return DwarfSectionOffsetDirective;
431    }
432    bool doesDwarfUsesAbsoluteLabelForStmtList() const {
433      return DwarfUsesAbsoluteLabelForStmtList;
434    }
435    bool doesDwarfUsesLabelOffsetForRanges() const {
436      return DwarfUsesLabelOffsetForRanges;
437    }
438    const char *const *getAsmCBE() const {
439      return AsmTransCBE;
440    }
441  };
442}
443
444#endif
445