1 //===-- llvm/MC/MCAsmInfo.h - Asm info --------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
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.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_MC_MCASMINFO_H
16 #define LLVM_MC_MCASMINFO_H
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/MC/MCDirectives.h"
20 #include "llvm/MC/MCTargetOptions.h"
26 class MCCFIInstruction
;
30 class MCSubtargetInfo
;
35 enum class EncodingType
{
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
46 } // end namespace WinEH
50 enum LCOMMType
{ NoAlignment
, ByteAlignment
, Log2Alignment
};
52 } // end namespace LCOMM
54 /// This class is intended to be used as a base class for asm
55 /// properties and features specific to the target.
58 //===------------------------------------------------------------------===//
59 // Properties to be set by the target writer, used to configure asm printer.
62 /// Code pointer size in bytes. Default is 4.
63 unsigned CodePointerSize
= 4;
65 /// Size of the stack slot reserved for callee-saved registers, in bytes.
66 /// Default is same as pointer size.
67 unsigned CalleeSaveStackSlotSize
= 4;
69 /// True if target is little endian. Default is true.
70 bool IsLittleEndian
= true;
72 /// True if target stack grow up. Default is false.
73 bool StackGrowsUp
= false;
75 /// True if this target has the MachO .subsections_via_symbols directive.
77 bool HasSubsectionsViaSymbols
= false;
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;
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;
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
90 bool HasCOFFAssociativeComdats
= false;
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;
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;
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;
104 /// The '$' token, when not referencing an identifier or constant, refers to
105 /// the current PC. Defaults to false.
106 bool DollarIsPC
= false;
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
;
112 /// This indicates the comment character used by the assembler. Defaults to
114 StringRef CommentString
;
116 /// This is appended to emitted labels. Defaults to ":"
117 const char *LabelSuffix
;
119 // Print the EH begin symbol with an assignment. Defaults to false.
120 bool UseAssignmentForEHBegin
= false;
122 // Do we need to create a local symbol for .size?
123 bool NeedsLocalForSize
= false;
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
;
130 /// This prefix is used for labels for basic blocks. Defaults to the same as
131 /// PrivateGlobalPrefix.
132 StringRef PrivateLabelPrefix
;
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
;
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
;
145 /// These are assembly directives that tells the assembler to interpret the
146 /// following instructions differently. Defaults to ".code16", ".code32",
148 const char *Code16Directive
;
149 const char *Code32Directive
;
150 const char *Code64Directive
;
152 /// Which dialect of an assembler variant to use. Defaults to 0
153 unsigned AssemblerDialect
= 0;
155 /// This is true if the assembler allows @ characters in symbol names.
156 /// Defaults to false.
157 bool AllowAtInName
= false;
159 /// If this is true, symbol names with invalid characters will be printed in
161 bool SupportsQuotedNames
= true;
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
166 bool UseDataRegionDirectives
= false;
168 /// True if .align is to be used for alignment. Only power-of-two
169 /// alignment is supported.
170 bool UseDotAlignForAlignment
= false;
172 //===--- Data Emission Directives -------------------------------------===//
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
;
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
;
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
;
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
;
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
202 const char *GPRel64Directive
= nullptr;
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;
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;
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;
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;
227 bool NeedsDwarfSectionOffsetDirective
= false;
229 //===--- Alignment Information ----------------------------------------===//
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
235 bool AlignmentIsInBytes
= true;
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;
241 //===--- Global Variable Emission Directives --------------------------===//
243 /// This is the directive used to declare a global entity. Defaults to
245 const char *GlobalDirective
;
247 /// True if the expression
249 /// uses a relocation but it can be suppressed by writing
252 bool SetDirectiveSuppressesReloc
= false;
254 /// False if the assembler requires that we use
266 /// Defaults to true.
267 bool HasAggressiveSymbolFolding
= true;
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;
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
;
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;
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;
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;
289 /// True if the target has a .ident directive, this is true for ELF targets.
290 /// Defaults to false.
291 bool HasIdentDirective
= false;
293 /// True if this target supports the MachO .no_dead_strip directive. Defaults
295 bool HasNoDeadStrip
= false;
297 /// True if this target supports the MachO .alt_entry directive. Defaults to
299 bool HasAltEntry
= false;
301 /// Used to declare a global as being a weak symbol. Defaults to ".weak".
302 const char *WeakDirective
;
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;
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;
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;
316 /// True if we have a .linkonce directive. This is used on cygwin/mingw.
317 /// Defaults to false.
318 bool HasLinkOnceDirective
= false;
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;
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
;
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
;
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
;
336 //===--- Dwarf Emission Directives -----------------------------------===//
338 /// True if target supports emission of debugging information. Defaults to
340 bool SupportsDebugInformation
= false;
342 /// Exception handling format for the target. Defaults to None.
343 ExceptionHandling ExceptionsType
= ExceptionHandling::None
;
345 /// Windows exception handling data (.pdata) encoding. Defaults to Invalid.
346 WinEH::EncodingType WinEHEncodingType
= WinEH::EncodingType::Invalid
;
348 /// True if Dwarf2 output generally uses relocations for references to other
349 /// .debug_* sections.
350 bool DwarfUsesRelocationsAcrossSections
= true;
352 /// True if DWARF FDE symbol reference relocations should be replaced by an
353 /// absolute difference.
354 bool DwarfFDESymbolsUseAbsDiff
= false;
356 /// True if dwarf register numbers are printed instead of symbolic register
357 /// names in .cfi_* directives. Defaults to false.
358 bool DwarfRegNumForCFI
= false;
360 /// True if target uses parens to indicate the symbol variant instead of @.
361 /// For example, foo(plt) instead of foo@plt. Defaults to false.
362 bool UseParensForSymbolVariant
= false;
364 /// True if the target supports flags in ".loc" directive, false if only
365 /// location is allowed.
366 bool SupportsExtendedDwarfLocDirective
= true;
368 //===--- Prologue State ----------------------------------------------===//
370 std::vector
<MCCFIInstruction
> InitialFrameState
;
372 //===--- Integrated Assembler Information ----------------------------===//
374 /// Should we use the integrated assembler?
375 /// The integrated assembler should be enabled by default (by the
376 /// constructors) when failing to parse a valid piece of assembly (inline
377 /// or otherwise) is considered a bug. It may then be overridden after
378 /// construction (see LLVMTargetMachine::initAsmInfo()).
379 bool UseIntegratedAssembler
;
381 /// Preserve Comments in assembly
382 bool PreserveAsmComments
;
384 /// Compress DWARF debug sections. Defaults to no compression.
385 DebugCompressionType CompressDebugSections
= DebugCompressionType::None
;
387 /// True if the integrated assembler should interpret 'a >> b' constant
388 /// expressions as logical rather than arithmetic.
389 bool UseLogicalShr
= true;
391 // If true, emit GOTPCRELX/REX_GOTPCRELX instead of GOTPCREL, on
393 bool RelaxELFRelocations
= true;
395 // If true, then the lexer and expression parser will support %neg(),
396 // %hi(), and similar unary operators.
397 bool HasMipsExpressions
= false;
399 // If true, emit function descriptor symbol on AIX.
400 bool NeedsFunctionDescriptors
= false;
403 explicit MCAsmInfo();
404 virtual ~MCAsmInfo();
406 /// Get the code pointer size in bytes.
407 unsigned getCodePointerSize() const { return CodePointerSize
; }
409 /// Get the callee-saved register stack slot
411 unsigned getCalleeSaveStackSlotSize() const {
412 return CalleeSaveStackSlotSize
;
415 /// True if the target is little endian.
416 bool isLittleEndian() const { return IsLittleEndian
; }
418 /// True if target stack grow up.
419 bool isStackGrowthDirectionUp() const { return StackGrowsUp
; }
421 bool hasSubsectionsViaSymbols() const { return HasSubsectionsViaSymbols
; }
423 // Data directive accessors.
425 const char *getData8bitsDirective() const { return Data8bitsDirective
; }
426 const char *getData16bitsDirective() const { return Data16bitsDirective
; }
427 const char *getData32bitsDirective() const { return Data32bitsDirective
; }
428 const char *getData64bitsDirective() const { return Data64bitsDirective
; }
429 const char *getGPRel64Directive() const { return GPRel64Directive
; }
430 const char *getGPRel32Directive() const { return GPRel32Directive
; }
431 const char *getDTPRel64Directive() const { return DTPRel64Directive
; }
432 const char *getDTPRel32Directive() const { return DTPRel32Directive
; }
433 const char *getTPRel64Directive() const { return TPRel64Directive
; }
434 const char *getTPRel32Directive() const { return TPRel32Directive
; }
436 /// Targets can implement this method to specify a section to switch to if the
437 /// translation unit doesn't have any trampolines that require an executable
439 virtual MCSection
*getNonexecutableStackSection(MCContext
&Ctx
) const {
443 /// True if the section is atomized using the symbols in it.
444 /// This is false if the section is not atomized at all (most ELF sections) or
445 /// if it is atomized based on its contents (MachO' __TEXT,__cstring for
447 virtual bool isSectionAtomizableBySymbols(const MCSection
&Section
) const;
449 virtual const MCExpr
*getExprForPersonalitySymbol(const MCSymbol
*Sym
,
451 MCStreamer
&Streamer
) const;
453 virtual const MCExpr
*getExprForFDESymbol(const MCSymbol
*Sym
,
455 MCStreamer
&Streamer
) const;
457 /// Return true if the identifier \p Name does not need quotes to be
458 /// syntactically correct.
459 virtual bool isValidUnquotedName(StringRef Name
) const;
461 /// Return true if the .section directive should be omitted when
462 /// emitting \p SectionName. For example:
464 /// shouldOmitSectionDirective(".text")
466 /// returns false => .section .text,#alloc,#execinstr
467 /// returns true => .text
468 virtual bool shouldOmitSectionDirective(StringRef SectionName
) const;
470 bool usesSunStyleELFSectionSwitchSyntax() const {
471 return SunStyleELFSectionSwitchSyntax
;
474 bool usesELFSectionDirectiveForBSS() const {
475 return UsesELFSectionDirectiveForBSS
;
478 bool needsDwarfSectionOffsetDirective() const {
479 return NeedsDwarfSectionOffsetDirective
;
484 bool hasMachoZeroFillDirective() const { return HasMachoZeroFillDirective
; }
485 bool hasMachoTBSSDirective() const { return HasMachoTBSSDirective
; }
486 bool hasCOFFAssociativeComdats() const { return HasCOFFAssociativeComdats
; }
487 bool hasCOFFComdatConstants() const { return HasCOFFComdatConstants
; }
489 /// Returns the maximum possible encoded instruction size in bytes. If \p STI
490 /// is null, this should be the maximum size for any subtarget.
491 virtual unsigned getMaxInstLength(const MCSubtargetInfo
*STI
= nullptr) const {
492 return MaxInstLength
;
495 unsigned getMinInstAlignment() const { return MinInstAlignment
; }
496 bool getDollarIsPC() const { return DollarIsPC
; }
497 const char *getSeparatorString() const { return SeparatorString
; }
499 /// This indicates the column (zero-based) at which asm comments should be
501 unsigned getCommentColumn() const { return 40; }
503 StringRef
getCommentString() const { return CommentString
; }
504 const char *getLabelSuffix() const { return LabelSuffix
; }
506 bool useAssignmentForEHBegin() const { return UseAssignmentForEHBegin
; }
507 bool needsLocalForSize() const { return NeedsLocalForSize
; }
508 StringRef
getPrivateGlobalPrefix() const { return PrivateGlobalPrefix
; }
509 StringRef
getPrivateLabelPrefix() const { return PrivateLabelPrefix
; }
511 bool hasLinkerPrivateGlobalPrefix() const {
512 return !LinkerPrivateGlobalPrefix
.empty();
515 StringRef
getLinkerPrivateGlobalPrefix() const {
516 if (hasLinkerPrivateGlobalPrefix())
517 return LinkerPrivateGlobalPrefix
;
518 return getPrivateGlobalPrefix();
521 const char *getInlineAsmStart() const { return InlineAsmStart
; }
522 const char *getInlineAsmEnd() const { return InlineAsmEnd
; }
523 const char *getCode16Directive() const { return Code16Directive
; }
524 const char *getCode32Directive() const { return Code32Directive
; }
525 const char *getCode64Directive() const { return Code64Directive
; }
526 unsigned getAssemblerDialect() const { return AssemblerDialect
; }
527 bool doesAllowAtInName() const { return AllowAtInName
; }
528 bool supportsNameQuoting() const { return SupportsQuotedNames
; }
530 bool doesSupportDataRegionDirectives() const {
531 return UseDataRegionDirectives
;
534 bool useDotAlignForAlignment() const {
535 return UseDotAlignForAlignment
;
538 const char *getZeroDirective() const { return ZeroDirective
; }
539 const char *getAsciiDirective() const { return AsciiDirective
; }
540 const char *getAscizDirective() const { return AscizDirective
; }
541 bool getAlignmentIsInBytes() const { return AlignmentIsInBytes
; }
542 unsigned getTextAlignFillValue() const { return TextAlignFillValue
; }
543 const char *getGlobalDirective() const { return GlobalDirective
; }
545 bool doesSetDirectiveSuppressReloc() const {
546 return SetDirectiveSuppressesReloc
;
549 bool hasAggressiveSymbolFolding() const { return HasAggressiveSymbolFolding
; }
551 bool getCOMMDirectiveAlignmentIsInBytes() const {
552 return COMMDirectiveAlignmentIsInBytes
;
555 LCOMM::LCOMMType
getLCOMMDirectiveAlignmentType() const {
556 return LCOMMDirectiveAlignmentType
;
559 bool hasFunctionAlignment() const { return HasFunctionAlignment
; }
560 bool hasDotTypeDotSizeDirective() const { return HasDotTypeDotSizeDirective
; }
561 bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile
; }
562 bool hasIdentDirective() const { return HasIdentDirective
; }
563 bool hasNoDeadStrip() const { return HasNoDeadStrip
; }
564 bool hasAltEntry() const { return HasAltEntry
; }
565 const char *getWeakDirective() const { return WeakDirective
; }
566 const char *getWeakRefDirective() const { return WeakRefDirective
; }
567 bool hasWeakDefDirective() const { return HasWeakDefDirective
; }
569 bool hasWeakDefCanBeHiddenDirective() const {
570 return HasWeakDefCanBeHiddenDirective
;
573 bool hasLinkOnceDirective() const { return HasLinkOnceDirective
; }
575 bool hasDotLGloblDirective() const { return HasDotLGloblDirective
; }
577 MCSymbolAttr
getHiddenVisibilityAttr() const { return HiddenVisibilityAttr
; }
579 MCSymbolAttr
getHiddenDeclarationVisibilityAttr() const {
580 return HiddenDeclarationVisibilityAttr
;
583 MCSymbolAttr
getProtectedVisibilityAttr() const {
584 return ProtectedVisibilityAttr
;
587 bool doesSupportDebugInformation() const { return SupportsDebugInformation
; }
589 bool doesSupportExceptionHandling() const {
590 return ExceptionsType
!= ExceptionHandling::None
;
593 ExceptionHandling
getExceptionHandlingType() const { return ExceptionsType
; }
594 WinEH::EncodingType
getWinEHEncodingType() const { return WinEHEncodingType
; }
596 void setExceptionsType(ExceptionHandling EH
) {
600 /// Returns true if the exception handling method for the platform uses call
601 /// frame information to unwind.
602 bool usesCFIForEH() const {
603 return (ExceptionsType
== ExceptionHandling::DwarfCFI
||
604 ExceptionsType
== ExceptionHandling::ARM
|| usesWindowsCFI());
607 bool usesWindowsCFI() const {
608 return ExceptionsType
== ExceptionHandling::WinEH
&&
609 (WinEHEncodingType
!= WinEH::EncodingType::Invalid
&&
610 WinEHEncodingType
!= WinEH::EncodingType::X86
);
613 bool doesDwarfUseRelocationsAcrossSections() const {
614 return DwarfUsesRelocationsAcrossSections
;
617 bool doDwarfFDESymbolsUseAbsDiff() const { return DwarfFDESymbolsUseAbsDiff
; }
618 bool useDwarfRegNumForCFI() const { return DwarfRegNumForCFI
; }
619 bool useParensForSymbolVariant() const { return UseParensForSymbolVariant
; }
620 bool supportsExtendedDwarfLocDirective() const {
621 return SupportsExtendedDwarfLocDirective
;
624 void addInitialFrameState(const MCCFIInstruction
&Inst
);
626 const std::vector
<MCCFIInstruction
> &getInitialFrameState() const {
627 return InitialFrameState
;
630 /// Return true if assembly (inline or otherwise) should be parsed.
631 bool useIntegratedAssembler() const { return UseIntegratedAssembler
; }
633 /// Set whether assembly (inline or otherwise) should be parsed.
634 virtual void setUseIntegratedAssembler(bool Value
) {
635 UseIntegratedAssembler
= Value
;
638 /// Return true if assembly (inline or otherwise) should be parsed.
639 bool preserveAsmComments() const { return PreserveAsmComments
; }
641 /// Set whether assembly (inline or otherwise) should be parsed.
642 virtual void setPreserveAsmComments(bool Value
) {
643 PreserveAsmComments
= Value
;
646 DebugCompressionType
compressDebugSections() const {
647 return CompressDebugSections
;
650 void setCompressDebugSections(DebugCompressionType CompressDebugSections
) {
651 this->CompressDebugSections
= CompressDebugSections
;
654 bool shouldUseLogicalShr() const { return UseLogicalShr
; }
656 bool canRelaxRelocations() const { return RelaxELFRelocations
; }
657 void setRelaxELFRelocations(bool V
) { RelaxELFRelocations
= V
; }
658 bool hasMipsExpressions() const { return HasMipsExpressions
; }
659 bool needsFunctionDescriptors() const { return NeedsFunctionDescriptors
; }
662 } // end namespace llvm
664 #endif // LLVM_MC_MCASMINFO_H