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 23 namespace llvm { 24 25 class MCContext; 26 class MCCFIInstruction; 27 class MCExpr; 28 class MCSection; 29 class MCStreamer; 30 class MCSubtargetInfo; 31 class MCSymbol; 32 33 namespace WinEH { 34 35 enum 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 48 namespace LCOMM { 49 50 enum 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. 56 class MCAsmInfo { 57 protected: 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 406 public: 407 explicit MCAsmInfo(); 408 virtual ~MCAsmInfo(); 409 410 /// Get the code pointer size in bytes. getCodePointerSize()411 unsigned getCodePointerSize() const { return CodePointerSize; } 412 413 /// Get the callee-saved register stack slot 414 /// size in bytes. getCalleeSaveStackSlotSize()415 unsigned getCalleeSaveStackSlotSize() const { 416 return CalleeSaveStackSlotSize; 417 } 418 419 /// True if the target is little endian. isLittleEndian()420 bool isLittleEndian() const { return IsLittleEndian; } 421 422 /// True if target stack grow up. isStackGrowthDirectionUp()423 bool isStackGrowthDirectionUp() const { return StackGrowsUp; } 424 hasSubsectionsViaSymbols()425 bool hasSubsectionsViaSymbols() const { return HasSubsectionsViaSymbols; } 426 427 // Data directive accessors. 428 getData8bitsDirective()429 const char *getData8bitsDirective() const { return Data8bitsDirective; } getData16bitsDirective()430 const char *getData16bitsDirective() const { return Data16bitsDirective; } getData32bitsDirective()431 const char *getData32bitsDirective() const { return Data32bitsDirective; } getData64bitsDirective()432 const char *getData64bitsDirective() const { return Data64bitsDirective; } getGPRel64Directive()433 const char *getGPRel64Directive() const { return GPRel64Directive; } getGPRel32Directive()434 const char *getGPRel32Directive() const { return GPRel32Directive; } getDTPRel64Directive()435 const char *getDTPRel64Directive() const { return DTPRel64Directive; } getDTPRel32Directive()436 const char *getDTPRel32Directive() const { return DTPRel32Directive; } getTPRel64Directive()437 const char *getTPRel64Directive() const { return TPRel64Directive; } getTPRel32Directive()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. getNonexecutableStackSection(MCContext & Ctx)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 usesSunStyleELFSectionSwitchSyntax()477 bool usesSunStyleELFSectionSwitchSyntax() const { 478 return SunStyleELFSectionSwitchSyntax; 479 } 480 usesELFSectionDirectiveForBSS()481 bool usesELFSectionDirectiveForBSS() const { 482 return UsesELFSectionDirectiveForBSS; 483 } 484 needsDwarfSectionOffsetDirective()485 bool needsDwarfSectionOffsetDirective() const { 486 return NeedsDwarfSectionOffsetDirective; 487 } 488 489 // Accessors. 490 hasMachoZeroFillDirective()491 bool hasMachoZeroFillDirective() const { return HasMachoZeroFillDirective; } hasMachoTBSSDirective()492 bool hasMachoTBSSDirective() const { return HasMachoTBSSDirective; } hasCOFFAssociativeComdats()493 bool hasCOFFAssociativeComdats() const { return HasCOFFAssociativeComdats; } hasCOFFComdatConstants()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 getMinInstAlignment()502 unsigned getMinInstAlignment() const { return MinInstAlignment; } getDollarIsPC()503 bool getDollarIsPC() const { return DollarIsPC; } getSeparatorString()504 const char *getSeparatorString() const { return SeparatorString; } 505 506 /// This indicates the column (zero-based) at which asm comments should be 507 /// printed. getCommentColumn()508 unsigned getCommentColumn() const { return 40; } 509 getCommentString()510 StringRef getCommentString() const { return CommentString; } getLabelSuffix()511 const char *getLabelSuffix() const { return LabelSuffix; } 512 useAssignmentForEHBegin()513 bool useAssignmentForEHBegin() const { return UseAssignmentForEHBegin; } needsLocalForSize()514 bool needsLocalForSize() const { return NeedsLocalForSize; } getPrivateGlobalPrefix()515 StringRef getPrivateGlobalPrefix() const { return PrivateGlobalPrefix; } getPrivateLabelPrefix()516 StringRef getPrivateLabelPrefix() const { return PrivateLabelPrefix; } 517 hasLinkerPrivateGlobalPrefix()518 bool hasLinkerPrivateGlobalPrefix() const { 519 return !LinkerPrivateGlobalPrefix.empty(); 520 } 521 getLinkerPrivateGlobalPrefix()522 StringRef getLinkerPrivateGlobalPrefix() const { 523 if (hasLinkerPrivateGlobalPrefix()) 524 return LinkerPrivateGlobalPrefix; 525 return getPrivateGlobalPrefix(); 526 } 527 getInlineAsmStart()528 const char *getInlineAsmStart() const { return InlineAsmStart; } getInlineAsmEnd()529 const char *getInlineAsmEnd() const { return InlineAsmEnd; } getCode16Directive()530 const char *getCode16Directive() const { return Code16Directive; } getCode32Directive()531 const char *getCode32Directive() const { return Code32Directive; } getCode64Directive()532 const char *getCode64Directive() const { return Code64Directive; } getAssemblerDialect()533 unsigned getAssemblerDialect() const { return AssemblerDialect; } doesAllowAtInName()534 bool doesAllowAtInName() const { return AllowAtInName; } supportsNameQuoting()535 bool supportsNameQuoting() const { return SupportsQuotedNames; } 536 doesSupportDataRegionDirectives()537 bool doesSupportDataRegionDirectives() const { 538 return UseDataRegionDirectives; 539 } 540 useDotAlignForAlignment()541 bool useDotAlignForAlignment() const { 542 return UseDotAlignForAlignment; 543 } 544 getZeroDirective()545 const char *getZeroDirective() const { return ZeroDirective; } getAsciiDirective()546 const char *getAsciiDirective() const { return AsciiDirective; } getAscizDirective()547 const char *getAscizDirective() const { return AscizDirective; } getAlignmentIsInBytes()548 bool getAlignmentIsInBytes() const { return AlignmentIsInBytes; } getTextAlignFillValue()549 unsigned getTextAlignFillValue() const { return TextAlignFillValue; } getGlobalDirective()550 const char *getGlobalDirective() const { return GlobalDirective; } 551 doesSetDirectiveSuppressReloc()552 bool doesSetDirectiveSuppressReloc() const { 553 return SetDirectiveSuppressesReloc; 554 } 555 hasAggressiveSymbolFolding()556 bool hasAggressiveSymbolFolding() const { return HasAggressiveSymbolFolding; } 557 getCOMMDirectiveAlignmentIsInBytes()558 bool getCOMMDirectiveAlignmentIsInBytes() const { 559 return COMMDirectiveAlignmentIsInBytes; 560 } 561 getLCOMMDirectiveAlignmentType()562 LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const { 563 return LCOMMDirectiveAlignmentType; 564 } 565 hasFunctionAlignment()566 bool hasFunctionAlignment() const { return HasFunctionAlignment; } hasDotTypeDotSizeDirective()567 bool hasDotTypeDotSizeDirective() const { return HasDotTypeDotSizeDirective; } hasSingleParameterDotFile()568 bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile; } hasIdentDirective()569 bool hasIdentDirective() const { return HasIdentDirective; } hasNoDeadStrip()570 bool hasNoDeadStrip() const { return HasNoDeadStrip; } hasAltEntry()571 bool hasAltEntry() const { return HasAltEntry; } getWeakDirective()572 const char *getWeakDirective() const { return WeakDirective; } getWeakRefDirective()573 const char *getWeakRefDirective() const { return WeakRefDirective; } hasWeakDefDirective()574 bool hasWeakDefDirective() const { return HasWeakDefDirective; } 575 hasWeakDefCanBeHiddenDirective()576 bool hasWeakDefCanBeHiddenDirective() const { 577 return HasWeakDefCanBeHiddenDirective; 578 } 579 hasLinkOnceDirective()580 bool hasLinkOnceDirective() const { return HasLinkOnceDirective; } 581 hasDotLGloblDirective()582 bool hasDotLGloblDirective() const { return HasDotLGloblDirective; } 583 getHiddenVisibilityAttr()584 MCSymbolAttr getHiddenVisibilityAttr() const { return HiddenVisibilityAttr; } 585 getHiddenDeclarationVisibilityAttr()586 MCSymbolAttr getHiddenDeclarationVisibilityAttr() const { 587 return HiddenDeclarationVisibilityAttr; 588 } 589 getProtectedVisibilityAttr()590 MCSymbolAttr getProtectedVisibilityAttr() const { 591 return ProtectedVisibilityAttr; 592 } 593 getSymbolsHaveSMC()594 bool getSymbolsHaveSMC() const { return SymbolsHaveSMC; } 595 doesSupportDebugInformation()596 bool doesSupportDebugInformation() const { return SupportsDebugInformation; } 597 doesSupportExceptionHandling()598 bool doesSupportExceptionHandling() const { 599 return ExceptionsType != ExceptionHandling::None; 600 } 601 getExceptionHandlingType()602 ExceptionHandling getExceptionHandlingType() const { return ExceptionsType; } getWinEHEncodingType()603 WinEH::EncodingType getWinEHEncodingType() const { return WinEHEncodingType; } 604 setExceptionsType(ExceptionHandling EH)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. usesCFIForEH()611 bool usesCFIForEH() const { 612 return (ExceptionsType == ExceptionHandling::DwarfCFI || 613 ExceptionsType == ExceptionHandling::ARM || usesWindowsCFI()); 614 } 615 usesWindowsCFI()616 bool usesWindowsCFI() const { 617 return ExceptionsType == ExceptionHandling::WinEH && 618 (WinEHEncodingType != WinEH::EncodingType::Invalid && 619 WinEHEncodingType != WinEH::EncodingType::X86); 620 } 621 doesDwarfUseRelocationsAcrossSections()622 bool doesDwarfUseRelocationsAcrossSections() const { 623 return DwarfUsesRelocationsAcrossSections; 624 } 625 doDwarfFDESymbolsUseAbsDiff()626 bool doDwarfFDESymbolsUseAbsDiff() const { return DwarfFDESymbolsUseAbsDiff; } useDwarfRegNumForCFI()627 bool useDwarfRegNumForCFI() const { return DwarfRegNumForCFI; } useParensForSymbolVariant()628 bool useParensForSymbolVariant() const { return UseParensForSymbolVariant; } supportsExtendedDwarfLocDirective()629 bool supportsExtendedDwarfLocDirective() const { 630 return SupportsExtendedDwarfLocDirective; 631 } 632 633 void addInitialFrameState(const MCCFIInstruction &Inst); 634 getInitialFrameState()635 const std::vector<MCCFIInstruction> &getInitialFrameState() const { 636 return InitialFrameState; 637 } 638 639 /// Return true if assembly (inline or otherwise) should be parsed. useIntegratedAssembler()640 bool useIntegratedAssembler() const { return UseIntegratedAssembler; } 641 642 /// Set whether assembly (inline or otherwise) should be parsed. setUseIntegratedAssembler(bool Value)643 virtual void setUseIntegratedAssembler(bool Value) { 644 UseIntegratedAssembler = Value; 645 } 646 647 /// Return true if assembly (inline or otherwise) should be parsed. preserveAsmComments()648 bool preserveAsmComments() const { return PreserveAsmComments; } 649 650 /// Set whether assembly (inline or otherwise) should be parsed. setPreserveAsmComments(bool Value)651 virtual void setPreserveAsmComments(bool Value) { 652 PreserveAsmComments = Value; 653 } 654 compressDebugSections()655 DebugCompressionType compressDebugSections() const { 656 return CompressDebugSections; 657 } 658 setCompressDebugSections(DebugCompressionType CompressDebugSections)659 void setCompressDebugSections(DebugCompressionType CompressDebugSections) { 660 this->CompressDebugSections = CompressDebugSections; 661 } 662 shouldUseLogicalShr()663 bool shouldUseLogicalShr() const { return UseLogicalShr; } 664 canRelaxRelocations()665 bool canRelaxRelocations() const { return RelaxELFRelocations; } setRelaxELFRelocations(bool V)666 void setRelaxELFRelocations(bool V) { RelaxELFRelocations = V; } hasMipsExpressions()667 bool hasMipsExpressions() const { return HasMipsExpressions; } needsFunctionDescriptors()668 bool needsFunctionDescriptors() const { return NeedsFunctionDescriptors; } 669 }; 670 671 } // end namespace llvm 672 673 #endif // LLVM_MC_MCASMINFO_H 674