1//===-- llvm/MC/MCAsmInfo.h - Asm info --------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains a class to be used as the basis for target specific
10// asm writers.  This class primarily takes care of global printing constants,
11// which are used in very similar ways across all targets.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_MC_MCASMINFO_H
16#define LLVM_MC_MCASMINFO_H
17
18#include "llvm/ADT/StringRef.h"
19#include "llvm/MC/MCDirectives.h"
20#include "llvm/MC/MCTargetOptions.h"
21#include <vector>
22
23namespace llvm {
24
25class MCContext;
26class MCCFIInstruction;
27class MCExpr;
28class MCSection;
29class MCStreamer;
30class MCSubtargetInfo;
31class MCSymbol;
32
33namespace WinEH {
34
35enum class EncodingType {
36  Invalid, /// Invalid
37  Alpha,   /// Windows Alpha
38  Alpha64, /// Windows AXP64
39  ARM,     /// Windows NT (Windows on ARM)
40  CE,      /// Windows CE ARM, PowerPC, SH3, SH4
41  Itanium, /// Windows x64, Windows Itanium (IA-64)
42  X86,     /// Windows x86, uses no CFI, just EH tables
43  MIPS = Alpha,
44};
45
46} // end namespace WinEH
47
48namespace LCOMM {
49
50enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment };
51
52} // end namespace LCOMM
53
54/// This class is intended to be used as a base class for asm
55/// properties and features specific to the target.
56class MCAsmInfo {
57protected:
58  //===------------------------------------------------------------------===//
59  // Properties to be set by the target writer, used to configure asm printer.
60  //
61
62  /// Code pointer size in bytes.  Default is 4.
63  unsigned CodePointerSize = 4;
64
65  /// Size of the stack slot reserved for callee-saved registers, in bytes.
66  /// Default is same as pointer size.
67  unsigned CalleeSaveStackSlotSize = 4;
68
69  /// True if target is little endian.  Default is true.
70  bool IsLittleEndian = true;
71
72  /// True if target stack grow up.  Default is false.
73  bool StackGrowsUp = false;
74
75  /// True if this target has the MachO .subsections_via_symbols directive.
76  /// Default is false.
77  bool HasSubsectionsViaSymbols = false;
78
79  /// True if this is a MachO target that supports the macho-specific .zerofill
80  /// directive for emitting BSS Symbols.  Default is false.
81  bool HasMachoZeroFillDirective = false;
82
83  /// True if this is a MachO target that supports the macho-specific .tbss
84  /// directive for emitting thread local BSS Symbols.  Default is false.
85  bool HasMachoTBSSDirective = false;
86
87  /// True if this is a non-GNU COFF target. The COFF port of the GNU linker
88  /// doesn't handle associative comdats in the way that we would like to use
89  /// them.
90  bool HasCOFFAssociativeComdats = false;
91
92  /// True if this is a non-GNU COFF target. For GNU targets, we don't generate
93  /// constants into comdat sections.
94  bool HasCOFFComdatConstants = false;
95
96  /// This is the maximum possible length of an instruction, which is needed to
97  /// compute the size of an inline asm.  Defaults to 4.
98  unsigned MaxInstLength = 4;
99
100  /// Every possible instruction length is a multiple of this value.  Factored
101  /// out in .debug_frame and .debug_line.  Defaults to 1.
102  unsigned MinInstAlignment = 1;
103
104  /// The '$' token, when not referencing an identifier or constant, refers to
105  /// the current PC.  Defaults to false.
106  bool DollarIsPC = false;
107
108  /// This string, if specified, is used to separate instructions from each
109  /// other when on the same line.  Defaults to ';'
110  const char *SeparatorString;
111
112  /// This indicates the comment character used by the assembler.  Defaults to
113  /// "#"
114  StringRef CommentString;
115
116  /// This is appended to emitted labels.  Defaults to ":"
117  const char *LabelSuffix;
118
119  // Print the EH begin symbol with an assignment. Defaults to false.
120  bool UseAssignmentForEHBegin = false;
121
122  // Do we need to create a local symbol for .size?
123  bool NeedsLocalForSize = false;
124
125  /// This prefix is used for globals like constant pool entries that are
126  /// completely private to the .s file and should not have names in the .o
127  /// file.  Defaults to "L"
128  StringRef PrivateGlobalPrefix;
129
130  /// This prefix is used for labels for basic blocks. Defaults to the same as
131  /// PrivateGlobalPrefix.
132  StringRef PrivateLabelPrefix;
133
134  /// This prefix is used for symbols that should be passed through the
135  /// assembler but be removed by the linker.  This is 'l' on Darwin, currently
136  /// used for some ObjC metadata.  The default of "" meast that for this system
137  /// a plain private symbol should be used.  Defaults to "".
138  StringRef LinkerPrivateGlobalPrefix;
139
140  /// If these are nonempty, they contain a directive to emit before and after
141  /// an inline assembly statement.  Defaults to "#APP\n", "#NO_APP\n"
142  const char *InlineAsmStart;
143  const char *InlineAsmEnd;
144
145  /// These are assembly directives that tells the assembler to interpret the
146  /// following instructions differently.  Defaults to ".code16", ".code32",
147  /// ".code64".
148  const char *Code16Directive;
149  const char *Code32Directive;
150  const char *Code64Directive;
151
152  /// Which dialect of an assembler variant to use.  Defaults to 0
153  unsigned AssemblerDialect = 0;
154
155  /// This is true if the assembler allows @ characters in symbol names.
156  /// Defaults to false.
157  bool AllowAtInName = false;
158
159  /// If this is true, symbol names with invalid characters will be printed in
160  /// quotes.
161  bool SupportsQuotedNames = true;
162
163  /// This is true if data region markers should be printed as
164  /// ".data_region/.end_data_region" directives. If false, use "$d/$a" labels
165  /// instead.
166  bool UseDataRegionDirectives = false;
167
168  /// True if .align is to be used for alignment. Only power-of-two
169  /// alignment is supported.
170  bool UseDotAlignForAlignment = false;
171
172  //===--- Data Emission Directives -------------------------------------===//
173
174  /// This should be set to the directive used to get some number of zero bytes
175  /// emitted to the current section.  Common cases are "\t.zero\t" and
176  /// "\t.space\t".  If this is set to null, the Data*bitsDirective's will be
177  /// used to emit zero bytes.  Defaults to "\t.zero\t"
178  const char *ZeroDirective;
179
180  /// This directive allows emission of an ascii string with the standard C
181  /// escape characters embedded into it.  If a target doesn't support this, it
182  /// can be set to null. Defaults to "\t.ascii\t"
183  const char *AsciiDirective;
184
185  /// If not null, this allows for special handling of zero terminated strings
186  /// on this target.  This is commonly supported as ".asciz".  If a target
187  /// doesn't support this, it can be set to null.  Defaults to "\t.asciz\t"
188  const char *AscizDirective;
189
190  /// These directives are used to output some unit of integer data to the
191  /// current section.  If a data directive is set to null, smaller data
192  /// directives will be used to emit the large sizes.  Defaults to "\t.byte\t",
193  /// "\t.short\t", "\t.long\t", "\t.quad\t"
194  const char *Data8bitsDirective;
195  const char *Data16bitsDirective;
196  const char *Data32bitsDirective;
197  const char *Data64bitsDirective;
198
199  /// If non-null, a directive that is used to emit a word which should be
200  /// relocated as a 64-bit GP-relative offset, e.g. .gpdword on Mips.  Defaults
201  /// to nullptr.
202  const char *GPRel64Directive = nullptr;
203
204  /// If non-null, a directive that is used to emit a word which should be
205  /// relocated as a 32-bit GP-relative offset, e.g. .gpword on Mips or .gprel32
206  /// on Alpha.  Defaults to nullptr.
207  const char *GPRel32Directive = nullptr;
208
209  /// If non-null, directives that are used to emit a word/dword which should
210  /// be relocated as a 32/64-bit DTP/TP-relative offset, e.g. .dtprelword/
211  /// .dtpreldword/.tprelword/.tpreldword on Mips.
212  const char *DTPRel32Directive = nullptr;
213  const char *DTPRel64Directive = nullptr;
214  const char *TPRel32Directive = nullptr;
215  const char *TPRel64Directive = nullptr;
216
217  /// This is true if this target uses "Sun Style" syntax for section switching
218  /// ("#alloc,#write" etc) instead of the normal ELF syntax (,"a,w") in
219  /// .section directives.  Defaults to false.
220  bool SunStyleELFSectionSwitchSyntax = false;
221
222  /// This is true if this target uses ELF '.section' directive before the
223  /// '.bss' one. It's used for PPC/Linux which doesn't support the '.bss'
224  /// directive only.  Defaults to false.
225  bool UsesELFSectionDirectiveForBSS = false;
226
227  bool NeedsDwarfSectionOffsetDirective = false;
228
229  //===--- Alignment Information ----------------------------------------===//
230
231  /// If this is true (the default) then the asmprinter emits ".align N"
232  /// directives, where N is the number of bytes to align to.  Otherwise, it
233  /// emits ".align log2(N)", e.g. 3 to align to an 8 byte boundary.  Defaults
234  /// to true.
235  bool AlignmentIsInBytes = true;
236
237  /// If non-zero, this is used to fill the executable space created as the
238  /// result of a alignment directive.  Defaults to 0
239  unsigned TextAlignFillValue = 0;
240
241  //===--- Global Variable Emission Directives --------------------------===//
242
243  /// This is the directive used to declare a global entity. Defaults to
244  /// ".globl".
245  const char *GlobalDirective;
246
247  /// True if the expression
248  ///   .long f - g
249  /// uses a relocation but it can be suppressed by writing
250  ///   a = f - g
251  ///   .long a
252  bool SetDirectiveSuppressesReloc = false;
253
254  /// False if the assembler requires that we use
255  /// \code
256  ///   Lc = a - b
257  ///   .long Lc
258  /// \endcode
259  //
260  /// instead of
261  //
262  /// \code
263  ///   .long a - b
264  /// \endcode
265  ///
266  ///  Defaults to true.
267  bool HasAggressiveSymbolFolding = true;
268
269  /// True is .comm's and .lcomms optional alignment is to be specified in bytes
270  /// instead of log2(n).  Defaults to true.
271  bool COMMDirectiveAlignmentIsInBytes = true;
272
273  /// Describes if the .lcomm directive for the target supports an alignment
274  /// argument and how it is interpreted.  Defaults to NoAlignment.
275  LCOMM::LCOMMType LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
276
277  // True if the target allows .align directives on functions. This is true for
278  // most targets, so defaults to true.
279  bool HasFunctionAlignment = true;
280
281  /// True if the target has .type and .size directives, this is true for most
282  /// ELF targets.  Defaults to true.
283  bool HasDotTypeDotSizeDirective = true;
284
285  /// True if the target has a single parameter .file directive, this is true
286  /// for ELF targets.  Defaults to true.
287  bool HasSingleParameterDotFile = true;
288
289  /// True if the target has a .ident directive, this is true for ELF targets.
290  /// Defaults to false.
291  bool HasIdentDirective = false;
292
293  /// True if this target supports the MachO .no_dead_strip directive.  Defaults
294  /// to false.
295  bool HasNoDeadStrip = false;
296
297  /// True if this target supports the MachO .alt_entry directive.  Defaults to
298  /// false.
299  bool HasAltEntry = false;
300
301  /// Used to declare a global as being a weak symbol. Defaults to ".weak".
302  const char *WeakDirective;
303
304  /// This directive, if non-null, is used to declare a global as being a weak
305  /// undefined symbol.  Defaults to nullptr.
306  const char *WeakRefDirective = nullptr;
307
308  /// True if we have a directive to declare a global as being a weak defined
309  /// symbol.  Defaults to false.
310  bool HasWeakDefDirective = false;
311
312  /// True if we have a directive to declare a global as being a weak defined
313  /// symbol that can be hidden (unexported).  Defaults to false.
314  bool HasWeakDefCanBeHiddenDirective = false;
315
316  /// True if we have a .linkonce directive.  This is used on cygwin/mingw.
317  /// Defaults to false.
318  bool HasLinkOnceDirective = false;
319
320  /// True if we have a .lglobl directive, which is used to emit the information
321  /// of a static symbol into the symbol table. Defaults to false.
322  bool HasDotLGloblDirective = false;
323
324  /// This attribute, if not MCSA_Invalid, is used to declare a symbol as having
325  /// hidden visibility.  Defaults to MCSA_Hidden.
326  MCSymbolAttr HiddenVisibilityAttr = MCSA_Hidden;
327
328  /// This attribute, if not MCSA_Invalid, is used to declare an undefined
329  /// symbol as having hidden visibility. Defaults to MCSA_Hidden.
330  MCSymbolAttr HiddenDeclarationVisibilityAttr = MCSA_Hidden;
331
332  /// This attribute, if not MCSA_Invalid, is used to declare a symbol as having
333  /// protected visibility.  Defaults to MCSA_Protected
334  MCSymbolAttr ProtectedVisibilityAttr = MCSA_Protected;
335
336  // This attribute is used to indicate symbols such as commons on AIX may have
337  // a storage mapping class embedded in the name.
338  bool SymbolsHaveSMC = false;
339
340  //===--- Dwarf Emission Directives -----------------------------------===//
341
342  /// True if target supports emission of debugging information.  Defaults to
343  /// false.
344  bool SupportsDebugInformation = false;
345
346  /// Exception handling format for the target.  Defaults to None.
347  ExceptionHandling ExceptionsType = ExceptionHandling::None;
348
349  /// Windows exception handling data (.pdata) encoding.  Defaults to Invalid.
350  WinEH::EncodingType WinEHEncodingType = WinEH::EncodingType::Invalid;
351
352  /// True if Dwarf2 output generally uses relocations for references to other
353  /// .debug_* sections.
354  bool DwarfUsesRelocationsAcrossSections = true;
355
356  /// True if DWARF FDE symbol reference relocations should be replaced by an
357  /// absolute difference.
358  bool DwarfFDESymbolsUseAbsDiff = false;
359
360  /// True if dwarf register numbers are printed instead of symbolic register
361  /// names in .cfi_* directives.  Defaults to false.
362  bool DwarfRegNumForCFI = false;
363
364  /// True if target uses parens to indicate the symbol variant instead of @.
365  /// For example, foo(plt) instead of foo@plt.  Defaults to false.
366  bool UseParensForSymbolVariant = false;
367
368  /// True if the target supports flags in ".loc" directive, false if only
369  /// location is allowed.
370  bool SupportsExtendedDwarfLocDirective = true;
371
372  //===--- Prologue State ----------------------------------------------===//
373
374  std::vector<MCCFIInstruction> InitialFrameState;
375
376  //===--- Integrated Assembler Information ----------------------------===//
377
378  /// Should we use the integrated assembler?
379  /// The integrated assembler should be enabled by default (by the
380  /// constructors) when failing to parse a valid piece of assembly (inline
381  /// or otherwise) is considered a bug. It may then be overridden after
382  /// construction (see LLVMTargetMachine::initAsmInfo()).
383  bool UseIntegratedAssembler;
384
385  /// Preserve Comments in assembly
386  bool PreserveAsmComments;
387
388  /// Compress DWARF debug sections. Defaults to no compression.
389  DebugCompressionType CompressDebugSections = DebugCompressionType::None;
390
391  /// True if the integrated assembler should interpret 'a >> b' constant
392  /// expressions as logical rather than arithmetic.
393  bool UseLogicalShr = true;
394
395  // If true, emit GOTPCRELX/REX_GOTPCRELX instead of GOTPCREL, on
396  // X86_64 ELF.
397  bool RelaxELFRelocations = true;
398
399  // If true, then the lexer and expression parser will support %neg(),
400  // %hi(), and similar unary operators.
401  bool HasMipsExpressions = false;
402
403  // If true, emit function descriptor symbol on AIX.
404  bool NeedsFunctionDescriptors = false;
405
406public:
407  explicit MCAsmInfo();
408  virtual ~MCAsmInfo();
409
410  /// Get the code pointer size in bytes.
411  unsigned getCodePointerSize() const { return CodePointerSize; }
412
413  /// Get the callee-saved register stack slot
414  /// size in bytes.
415  unsigned getCalleeSaveStackSlotSize() const {
416    return CalleeSaveStackSlotSize;
417  }
418
419  /// True if the target is little endian.
420  bool isLittleEndian() const { return IsLittleEndian; }
421
422  /// True if target stack grow up.
423  bool isStackGrowthDirectionUp() const { return StackGrowsUp; }
424
425  bool hasSubsectionsViaSymbols() const { return HasSubsectionsViaSymbols; }
426
427  // Data directive accessors.
428
429  const char *getData8bitsDirective() const { return Data8bitsDirective; }
430  const char *getData16bitsDirective() const { return Data16bitsDirective; }
431  const char *getData32bitsDirective() const { return Data32bitsDirective; }
432  const char *getData64bitsDirective() const { return Data64bitsDirective; }
433  const char *getGPRel64Directive() const { return GPRel64Directive; }
434  const char *getGPRel32Directive() const { return GPRel32Directive; }
435  const char *getDTPRel64Directive() const { return DTPRel64Directive; }
436  const char *getDTPRel32Directive() const { return DTPRel32Directive; }
437  const char *getTPRel64Directive() const { return TPRel64Directive; }
438  const char *getTPRel32Directive() const { return TPRel32Directive; }
439
440  /// Targets can implement this method to specify a section to switch to if the
441  /// translation unit doesn't have any trampolines that require an executable
442  /// stack.
443  virtual MCSection *getNonexecutableStackSection(MCContext &Ctx) const {
444    return nullptr;
445  }
446
447  /// True if the section is atomized using the symbols in it.
448  /// This is false if the section is not atomized at all (most ELF sections) or
449  /// if it is atomized based on its contents (MachO' __TEXT,__cstring for
450  /// example).
451  virtual bool isSectionAtomizableBySymbols(const MCSection &Section) const;
452
453  virtual const MCExpr *getExprForPersonalitySymbol(const MCSymbol *Sym,
454                                                    unsigned Encoding,
455                                                    MCStreamer &Streamer) const;
456
457  virtual const MCExpr *getExprForFDESymbol(const MCSymbol *Sym,
458                                            unsigned Encoding,
459                                            MCStreamer &Streamer) const;
460
461  /// Return true if C is an acceptable character inside a symbol name.
462  virtual bool isAcceptableChar(char C) const;
463
464  /// Return true if the identifier \p Name does not need quotes to be
465  /// syntactically correct.
466  virtual bool isValidUnquotedName(StringRef Name) const;
467
468  /// Return true if the .section directive should be omitted when
469  /// emitting \p SectionName.  For example:
470  ///
471  /// shouldOmitSectionDirective(".text")
472  ///
473  /// returns false => .section .text,#alloc,#execinstr
474  /// returns true  => .text
475  virtual bool shouldOmitSectionDirective(StringRef SectionName) const;
476
477  bool usesSunStyleELFSectionSwitchSyntax() const {
478    return SunStyleELFSectionSwitchSyntax;
479  }
480
481  bool usesELFSectionDirectiveForBSS() const {
482    return UsesELFSectionDirectiveForBSS;
483  }
484
485  bool needsDwarfSectionOffsetDirective() const {
486    return NeedsDwarfSectionOffsetDirective;
487  }
488
489  // Accessors.
490
491  bool hasMachoZeroFillDirective() const { return HasMachoZeroFillDirective; }
492  bool hasMachoTBSSDirective() const { return HasMachoTBSSDirective; }
493  bool hasCOFFAssociativeComdats() const { return HasCOFFAssociativeComdats; }
494  bool hasCOFFComdatConstants() const { return HasCOFFComdatConstants; }
495
496  /// Returns the maximum possible encoded instruction size in bytes. If \p STI
497  /// is null, this should be the maximum size for any subtarget.
498  virtual unsigned getMaxInstLength(const MCSubtargetInfo *STI = nullptr) const {
499    return MaxInstLength;
500  }
501
502  unsigned getMinInstAlignment() const { return MinInstAlignment; }
503  bool getDollarIsPC() const { return DollarIsPC; }
504  const char *getSeparatorString() const { return SeparatorString; }
505
506  /// This indicates the column (zero-based) at which asm comments should be
507  /// printed.
508  unsigned getCommentColumn() const { return 40; }
509
510  StringRef getCommentString() const { return CommentString; }
511  const char *getLabelSuffix() const { return LabelSuffix; }
512
513  bool useAssignmentForEHBegin() const { return UseAssignmentForEHBegin; }
514  bool needsLocalForSize() const { return NeedsLocalForSize; }
515  StringRef getPrivateGlobalPrefix() const { return PrivateGlobalPrefix; }
516  StringRef getPrivateLabelPrefix() const { return PrivateLabelPrefix; }
517
518  bool hasLinkerPrivateGlobalPrefix() const {
519    return !LinkerPrivateGlobalPrefix.empty();
520  }
521
522  StringRef getLinkerPrivateGlobalPrefix() const {
523    if (hasLinkerPrivateGlobalPrefix())
524      return LinkerPrivateGlobalPrefix;
525    return getPrivateGlobalPrefix();
526  }
527
528  const char *getInlineAsmStart() const { return InlineAsmStart; }
529  const char *getInlineAsmEnd() const { return InlineAsmEnd; }
530  const char *getCode16Directive() const { return Code16Directive; }
531  const char *getCode32Directive() const { return Code32Directive; }
532  const char *getCode64Directive() const { return Code64Directive; }
533  unsigned getAssemblerDialect() const { return AssemblerDialect; }
534  bool doesAllowAtInName() const { return AllowAtInName; }
535  bool supportsNameQuoting() const { return SupportsQuotedNames; }
536
537  bool doesSupportDataRegionDirectives() const {
538    return UseDataRegionDirectives;
539  }
540
541  bool useDotAlignForAlignment() const {
542    return UseDotAlignForAlignment;
543  }
544
545  const char *getZeroDirective() const { return ZeroDirective; }
546  const char *getAsciiDirective() const { return AsciiDirective; }
547  const char *getAscizDirective() const { return AscizDirective; }
548  bool getAlignmentIsInBytes() const { return AlignmentIsInBytes; }
549  unsigned getTextAlignFillValue() const { return TextAlignFillValue; }
550  const char *getGlobalDirective() const { return GlobalDirective; }
551
552  bool doesSetDirectiveSuppressReloc() const {
553    return SetDirectiveSuppressesReloc;
554  }
555
556  bool hasAggressiveSymbolFolding() const { return HasAggressiveSymbolFolding; }
557
558  bool getCOMMDirectiveAlignmentIsInBytes() const {
559    return COMMDirectiveAlignmentIsInBytes;
560  }
561
562  LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
563    return LCOMMDirectiveAlignmentType;
564  }
565
566  bool hasFunctionAlignment() const { return HasFunctionAlignment; }
567  bool hasDotTypeDotSizeDirective() const { return HasDotTypeDotSizeDirective; }
568  bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile; }
569  bool hasIdentDirective() const { return HasIdentDirective; }
570  bool hasNoDeadStrip() const { return HasNoDeadStrip; }
571  bool hasAltEntry() const { return HasAltEntry; }
572  const char *getWeakDirective() const { return WeakDirective; }
573  const char *getWeakRefDirective() const { return WeakRefDirective; }
574  bool hasWeakDefDirective() const { return HasWeakDefDirective; }
575
576  bool hasWeakDefCanBeHiddenDirective() const {
577    return HasWeakDefCanBeHiddenDirective;
578  }
579
580  bool hasLinkOnceDirective() const { return HasLinkOnceDirective; }
581
582  bool hasDotLGloblDirective() const { return HasDotLGloblDirective; }
583
584  MCSymbolAttr getHiddenVisibilityAttr() const { return HiddenVisibilityAttr; }
585
586  MCSymbolAttr getHiddenDeclarationVisibilityAttr() const {
587    return HiddenDeclarationVisibilityAttr;
588  }
589
590  MCSymbolAttr getProtectedVisibilityAttr() const {
591    return ProtectedVisibilityAttr;
592  }
593
594  bool getSymbolsHaveSMC() const { return SymbolsHaveSMC; }
595
596  bool doesSupportDebugInformation() const { return SupportsDebugInformation; }
597
598  bool doesSupportExceptionHandling() const {
599    return ExceptionsType != ExceptionHandling::None;
600  }
601
602  ExceptionHandling getExceptionHandlingType() const { return ExceptionsType; }
603  WinEH::EncodingType getWinEHEncodingType() const { return WinEHEncodingType; }
604
605  void setExceptionsType(ExceptionHandling EH) {
606    ExceptionsType = EH;
607  }
608
609  /// Returns true if the exception handling method for the platform uses call
610  /// frame information to unwind.
611  bool usesCFIForEH() const {
612    return (ExceptionsType == ExceptionHandling::DwarfCFI ||
613            ExceptionsType == ExceptionHandling::ARM || usesWindowsCFI());
614  }
615
616  bool usesWindowsCFI() const {
617    return ExceptionsType == ExceptionHandling::WinEH &&
618           (WinEHEncodingType != WinEH::EncodingType::Invalid &&
619            WinEHEncodingType != WinEH::EncodingType::X86);
620  }
621
622  bool doesDwarfUseRelocationsAcrossSections() const {
623    return DwarfUsesRelocationsAcrossSections;
624  }
625
626  bool doDwarfFDESymbolsUseAbsDiff() const { return DwarfFDESymbolsUseAbsDiff; }
627  bool useDwarfRegNumForCFI() const { return DwarfRegNumForCFI; }
628  bool useParensForSymbolVariant() const { return UseParensForSymbolVariant; }
629  bool supportsExtendedDwarfLocDirective() const {
630    return SupportsExtendedDwarfLocDirective;
631  }
632
633  void addInitialFrameState(const MCCFIInstruction &Inst);
634
635  const std::vector<MCCFIInstruction> &getInitialFrameState() const {
636    return InitialFrameState;
637  }
638
639  /// Return true if assembly (inline or otherwise) should be parsed.
640  bool useIntegratedAssembler() const { return UseIntegratedAssembler; }
641
642  /// Set whether assembly (inline or otherwise) should be parsed.
643  virtual void setUseIntegratedAssembler(bool Value) {
644    UseIntegratedAssembler = Value;
645  }
646
647  /// Return true if assembly (inline or otherwise) should be parsed.
648  bool preserveAsmComments() const { return PreserveAsmComments; }
649
650  /// Set whether assembly (inline or otherwise) should be parsed.
651  virtual void setPreserveAsmComments(bool Value) {
652    PreserveAsmComments = Value;
653  }
654
655  DebugCompressionType compressDebugSections() const {
656    return CompressDebugSections;
657  }
658
659  void setCompressDebugSections(DebugCompressionType CompressDebugSections) {
660    this->CompressDebugSections = CompressDebugSections;
661  }
662
663  bool shouldUseLogicalShr() const { return UseLogicalShr; }
664
665  bool canRelaxRelocations() const { return RelaxELFRelocations; }
666  void setRelaxELFRelocations(bool V) { RelaxELFRelocations = V; }
667  bool hasMipsExpressions() const { return HasMipsExpressions; }
668  bool needsFunctionDescriptors() const { return NeedsFunctionDescriptors; }
669};
670
671} // end namespace llvm
672
673#endif // LLVM_MC_MCASMINFO_H
674