2009-08-22 20:58:17 +00:00
|
|
|
//===-- llvm/MC/MCAsmInfo.h - Asm info --------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains a class to be used as the basis for target specific
|
|
|
|
// asm writers. This class primarily takes care of global printing constants,
|
|
|
|
// which are used in very similar ways across all targets.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-08-22 20:48:53 +00:00
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_MC_MCASMINFO_H
|
|
|
|
#define LLVM_MC_MCASMINFO_H
|
2009-08-22 20:48:53 +00:00
|
|
|
|
2010-01-23 06:53:23 +00:00
|
|
|
#include "llvm/MC/MCDirectives.h"
|
2013-05-13 01:16:13 +00:00
|
|
|
#include "llvm/MC/MCDwarf.h"
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/MC/MachineLocation.h"
|
2009-08-22 20:58:17 +00:00
|
|
|
#include <cassert>
|
2011-07-18 22:29:13 +00:00
|
|
|
#include <vector>
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2011-04-28 16:09:09 +00:00
|
|
|
class MCExpr;
|
2010-01-23 07:21:06 +00:00
|
|
|
class MCSection;
|
2011-04-28 16:09:09 +00:00
|
|
|
class MCStreamer;
|
|
|
|
class MCSymbol;
|
2010-01-23 07:21:06 +00:00
|
|
|
class MCContext;
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2011-01-14 21:58:08 +00:00
|
|
|
namespace ExceptionHandling {
|
2011-05-27 23:47:32 +00:00
|
|
|
enum ExceptionsType { None, DwarfCFI, SjLj, ARM, Win64 };
|
2011-01-14 21:58:08 +00:00
|
|
|
}
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2012-09-07 21:08:01 +00:00
|
|
|
namespace LCOMM {
|
|
|
|
enum LCOMMType { NoAlignment, ByteAlignment, Log2Alignment };
|
|
|
|
}
|
|
|
|
|
2011-05-27 23:47:32 +00:00
|
|
|
/// MCAsmInfo - This class is intended to be used as a base class for asm
|
|
|
|
/// properties and features specific to the target.
|
2009-08-22 20:58:17 +00:00
|
|
|
class MCAsmInfo {
|
|
|
|
protected:
|
|
|
|
//===------------------------------------------------------------------===//
|
|
|
|
// Properties to be set by the target writer, used to configure asm printer.
|
|
|
|
//
|
2012-03-02 17:46:15 +00:00
|
|
|
|
2011-07-15 02:09:41 +00:00
|
|
|
/// PointerSize - Pointer size in bytes.
|
|
|
|
/// Default is 4.
|
|
|
|
unsigned PointerSize;
|
|
|
|
|
2013-01-22 18:02:49 +00:00
|
|
|
/// CalleeSaveStackSlotSize - Size of the stack slot reserved for
|
|
|
|
/// callee-saved registers, in bytes.
|
|
|
|
/// Default is same as pointer size.
|
|
|
|
unsigned CalleeSaveStackSlotSize;
|
|
|
|
|
2011-07-15 02:09:41 +00:00
|
|
|
/// IsLittleEndian - True if target is little endian.
|
|
|
|
/// Default is true.
|
|
|
|
bool IsLittleEndian;
|
|
|
|
|
|
|
|
/// StackGrowsUp - True if target stack grow up.
|
|
|
|
/// Default is false.
|
|
|
|
bool StackGrowsUp;
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2010-01-23 07:21:06 +00:00
|
|
|
/// HasSubsectionsViaSymbols - True if this target has the MachO
|
|
|
|
/// .subsections_via_symbols directive.
|
|
|
|
bool HasSubsectionsViaSymbols; // Default is false.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-01-19 02:09:44 +00:00
|
|
|
/// HasMachoZeroFillDirective - True if this is a MachO target that supports
|
|
|
|
/// the macho-specific .zerofill directive for emitting BSS Symbols.
|
2010-01-19 04:34:02 +00:00
|
|
|
bool HasMachoZeroFillDirective; // Default is false.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-05-20 00:59:30 +00:00
|
|
|
/// HasMachoTBSSDirective - True if this is a MachO target that supports
|
|
|
|
/// the macho-specific .tbss directive for emitting thread local BSS Symbols
|
|
|
|
bool HasMachoTBSSDirective; // Default is false.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-01-19 04:34:02 +00:00
|
|
|
/// HasStaticCtorDtorReferenceInStaticMode - True if the compiler should
|
|
|
|
/// emit a ".reference .constructors_used" or ".reference .destructors_used"
|
|
|
|
/// directive after the a static ctor/dtor list. This directive is only
|
|
|
|
/// emitted in Static relocation model.
|
|
|
|
bool HasStaticCtorDtorReferenceInStaticMode; // Default is false.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-12-04 00:31:13 +00:00
|
|
|
/// LinkerRequiresNonEmptyDwarfLines - True if the linker has a bug and
|
|
|
|
/// requires that the debug_line section be of a minimum size. In practice
|
|
|
|
/// such a linker requires a non empty line sequence if a file is present.
|
|
|
|
bool LinkerRequiresNonEmptyDwarfLines; // Default to false.
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// MaxInstLength - This is the maximum possible length of an instruction,
|
|
|
|
/// which is needed to compute the size of an inline asm.
|
2009-08-25 21:01:42 +00:00
|
|
|
unsigned MaxInstLength; // Defaults to 4.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2013-06-12 14:46:54 +00:00
|
|
|
/// MinInstAlignment - Every possible instruction length is a multiple of
|
|
|
|
/// this value. Factored out in .debug_frame and .debug_line.
|
|
|
|
unsigned MinInstAlignment; // Defaults to 1.
|
|
|
|
|
2013-09-25 10:47:21 +00:00
|
|
|
/// DollarIsPC - The '$' token, when not referencing an identifier or
|
|
|
|
/// constant, refers to the current PC.
|
|
|
|
bool DollarIsPC; // Defaults to false.
|
|
|
|
|
2011-03-24 18:46:34 +00:00
|
|
|
/// SeparatorString - This string, if specified, is used to separate
|
|
|
|
/// instructions from each other when on the same line.
|
|
|
|
const char *SeparatorString; // Defaults to ';'
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// CommentColumn - This indicates the comment num (zero-based) at
|
|
|
|
/// which asm comments should be printed.
|
2010-02-05 07:32:18 +00:00
|
|
|
unsigned CommentColumn; // Defaults to 40
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// CommentString - This indicates the comment character used by the
|
|
|
|
/// assembler.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *CommentString; // Defaults to "#"
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2010-09-22 22:19:53 +00:00
|
|
|
/// LabelSuffix - This is appended to emitted labels.
|
|
|
|
const char *LabelSuffix; // Defaults to ":"
|
|
|
|
|
2012-12-16 04:00:45 +00:00
|
|
|
/// LabelSuffix - This is appended to emitted labels.
|
|
|
|
const char *DebugLabelSuffix; // Defaults to ":"
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// GlobalPrefix - If this is set to a non-empty string, it is prepended
|
|
|
|
/// onto all global symbols. This is often used for "_" or ".".
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *GlobalPrefix; // Defaults to ""
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// PrivateGlobalPrefix - This prefix is used for globals like constant
|
|
|
|
/// pool entries that are completely private to the .s file and should not
|
|
|
|
/// have names in the .o file. This is often "." or "L".
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *PrivateGlobalPrefix; // Defaults to "."
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// LinkerPrivateGlobalPrefix - This prefix is used for symbols that should
|
|
|
|
/// be passed through the assembler but be removed by the linker. This
|
|
|
|
/// is "l" on Darwin, currently used for some ObjC metadata.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *LinkerPrivateGlobalPrefix; // Defaults to ""
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// InlineAsmStart/End - If these are nonempty, they contain a directive to
|
|
|
|
/// emit before and after an inline assembly statement.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *InlineAsmStart; // Defaults to "#APP\n"
|
|
|
|
const char *InlineAsmEnd; // Defaults to "#NO_APP\n"
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2011-07-27 00:38:12 +00:00
|
|
|
/// Code16Directive, Code32Directive, Code64Directive - These are assembly
|
|
|
|
/// directives that tells the assembler to interpret the following
|
|
|
|
/// instructions differently.
|
|
|
|
const char *Code16Directive; // Defaults to ".code16"
|
|
|
|
const char *Code32Directive; // Defaults to ".code32"
|
|
|
|
const char *Code64Directive; // Defaults to ".code64"
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// AssemblerDialect - Which dialect of an assembler variant to use.
|
2009-08-25 21:01:42 +00:00
|
|
|
unsigned AssemblerDialect; // Defaults to 0
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// AllowQuotesInName - This is true if the assembler allows for complex
|
|
|
|
/// symbol names to be surrounded in quotes. This defaults to false.
|
|
|
|
bool AllowQuotesInName;
|
2009-09-18 16:57:42 +00:00
|
|
|
|
|
|
|
/// AllowNameToStartWithDigit - This is true if the assembler allows symbol
|
|
|
|
/// names to start with a digit (e.g., "0x0021"). This defaults to false.
|
|
|
|
bool AllowNameToStartWithDigit;
|
2010-04-29 04:00:56 +00:00
|
|
|
|
|
|
|
/// AllowPeriodsInName - This is true if the assembler allows periods in
|
|
|
|
/// symbol names. This defaults to true.
|
|
|
|
bool AllowPeriodsInName;
|
|
|
|
|
2012-04-07 00:37:53 +00:00
|
|
|
/// AllowUTF8 - This is true if the assembler accepts UTF-8 input.
|
|
|
|
// FIXME: Make this a more general encoding setting?
|
|
|
|
bool AllowUTF8;
|
|
|
|
|
2012-05-18 19:12:01 +00:00
|
|
|
/// UseDataRegionDirectives - This is true if data region markers should
|
|
|
|
/// be printed as ".data_region/.end_data_region" directives. If false,
|
|
|
|
/// use "$d/$a" labels instead.
|
|
|
|
bool UseDataRegionDirectives;
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
//===--- Data Emission Directives -------------------------------------===//
|
|
|
|
|
|
|
|
/// ZeroDirective - this should be set to the directive used to get some
|
|
|
|
/// number of zero bytes emitted to the current section. Common cases are
|
|
|
|
/// "\t.zero\t" and "\t.space\t". If this is set to null, the
|
|
|
|
/// Data*bitsDirective's will be used to emit zero bytes.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *ZeroDirective; // Defaults to "\t.zero\t"
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// AsciiDirective - This directive allows emission of an ascii string with
|
|
|
|
/// the standard C escape characters embedded into it.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *AsciiDirective; // Defaults to "\t.ascii\t"
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// AscizDirective - If not null, this allows for special handling of
|
|
|
|
/// zero terminated strings on this target. This is commonly supported as
|
|
|
|
/// ".asciz". If a target doesn't support this, it can be set to null.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *AscizDirective; // Defaults to "\t.asciz\t"
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// DataDirectives - These directives are used to output some unit of
|
|
|
|
/// integer data to the current section. If a data directive is set to
|
|
|
|
/// null, smaller data directives will be used to emit the large sizes.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *Data8bitsDirective; // Defaults to "\t.byte\t"
|
|
|
|
const char *Data16bitsDirective; // Defaults to "\t.short\t"
|
|
|
|
const char *Data32bitsDirective; // Defaults to "\t.long\t"
|
|
|
|
const char *Data64bitsDirective; // Defaults to "\t.quad\t"
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2012-02-03 04:33:00 +00:00
|
|
|
/// GPRel64Directive - if non-null, a directive that is used to emit a word
|
|
|
|
/// which should be relocated as a 64-bit GP-relative offset, e.g. .gpdword
|
|
|
|
/// on Mips.
|
|
|
|
const char *GPRel64Directive; // Defaults to NULL.
|
|
|
|
|
2010-01-25 21:10:10 +00:00
|
|
|
/// GPRel32Directive - if non-null, a directive that is used to emit a word
|
|
|
|
/// which should be relocated as a 32-bit GP-relative offset, e.g. .gpword
|
|
|
|
/// on Mips or .gprel32 on Alpha.
|
|
|
|
const char *GPRel32Directive; // Defaults to NULL.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// SunStyleELFSectionSwitchSyntax - This is true if this target uses "Sun
|
|
|
|
/// Style" syntax for section switching ("#alloc,#write" etc) instead of the
|
|
|
|
/// normal ELF syntax (,"a,w") in .section directives.
|
2009-08-25 21:01:42 +00:00
|
|
|
bool SunStyleELFSectionSwitchSyntax; // Defaults to false.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// UsesELFSectionDirectiveForBSS - This is true if this target uses ELF
|
2010-09-23 18:07:04 +00:00
|
|
|
/// '.section' directive before the '.bss' one. It's used for PPC/Linux
|
2009-08-22 20:58:17 +00:00
|
|
|
/// which doesn't support the '.bss' directive only.
|
2009-08-25 21:01:42 +00:00
|
|
|
bool UsesELFSectionDirectiveForBSS; // Defaults to false.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-03-12 21:03:47 +00:00
|
|
|
/// HasMicrosoftFastStdCallMangling - True if this target uses microsoft
|
|
|
|
/// style mangling for functions with X86_StdCall/X86_FastCall calling
|
|
|
|
/// convention.
|
|
|
|
bool HasMicrosoftFastStdCallMangling; // Defaults to false.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2013-04-22 22:49:11 +00:00
|
|
|
bool NeedsDwarfSectionOffsetDirective;
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
//===--- Alignment Information ----------------------------------------===//
|
|
|
|
|
|
|
|
/// AlignDirective - The directive used to emit round up to an alignment
|
|
|
|
/// boundary.
|
|
|
|
///
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *AlignDirective; // Defaults to "\t.align\t"
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// AlignmentIsInBytes - If this is true (the default) then the asmprinter
|
|
|
|
/// emits ".align N" directives, where N is the number of bytes to align to.
|
|
|
|
/// Otherwise, it emits ".align log2(N)", e.g. 3 to align to an 8 byte
|
|
|
|
/// boundary.
|
2009-08-25 21:01:42 +00:00
|
|
|
bool AlignmentIsInBytes; // Defaults to true
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// TextAlignFillValue - If non-zero, this is used to fill the executable
|
|
|
|
/// space created as the result of a alignment directive.
|
2009-08-25 21:01:42 +00:00
|
|
|
unsigned TextAlignFillValue; // Defaults to 0
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
//===--- Global Variable Emission Directives --------------------------===//
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// GlobalDirective - This is the directive used to declare a global entity.
|
|
|
|
///
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *GlobalDirective; // Defaults to NULL.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2010-09-23 18:07:04 +00:00
|
|
|
/// ExternDirective - This is the directive used to declare external
|
2009-08-22 20:58:17 +00:00
|
|
|
/// globals.
|
|
|
|
///
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *ExternDirective; // Defaults to NULL.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-01-26 20:40:54 +00:00
|
|
|
/// HasSetDirective - True if the assembler supports the .set directive.
|
|
|
|
bool HasSetDirective; // Defaults to true.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-12-22 21:51:29 +00:00
|
|
|
/// HasAggressiveSymbolFolding - False if the assembler requires that we use
|
2010-12-04 03:21:47 +00:00
|
|
|
/// Lc = a - b
|
|
|
|
/// .long Lc
|
2010-12-22 21:51:29 +00:00
|
|
|
/// instead of
|
2010-12-04 03:21:47 +00:00
|
|
|
/// .long a - b
|
2010-12-22 21:51:29 +00:00
|
|
|
bool HasAggressiveSymbolFolding; // Defaults to true.
|
2010-12-04 03:21:47 +00:00
|
|
|
|
2012-09-07 17:25:13 +00:00
|
|
|
/// COMMDirectiveAlignmentIsInBytes - True is .comm's and .lcomms optional
|
2010-01-26 20:21:43 +00:00
|
|
|
/// alignment is to be specified in bytes instead of log2(n).
|
|
|
|
bool COMMDirectiveAlignmentIsInBytes; // Defaults to true;
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2012-09-07 21:08:01 +00:00
|
|
|
/// LCOMMDirectiveAlignment - Describes if the .lcomm directive for the
|
|
|
|
/// target supports an alignment argument and how it is interpreted.
|
|
|
|
LCOMM::LCOMMType LCOMMDirectiveAlignmentType; // Defaults to NoAlignment.
|
2012-09-07 17:25:13 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// HasDotTypeDotSizeDirective - True if the target has .type and .size
|
|
|
|
/// directives, this is true for most ELF targets.
|
2009-08-25 21:01:42 +00:00
|
|
|
bool HasDotTypeDotSizeDirective; // Defaults to true.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// HasSingleParameterDotFile - True if the target has a single parameter
|
|
|
|
/// .file directive, this is true for ELF targets.
|
2009-08-25 21:01:42 +00:00
|
|
|
bool HasSingleParameterDotFile; // Defaults to true.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2010-01-23 05:51:36 +00:00
|
|
|
/// HasNoDeadStrip - True if this target supports the MachO .no_dead_strip
|
|
|
|
/// directive.
|
|
|
|
bool HasNoDeadStrip; // Defaults to false.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2010-11-19 18:39:33 +00:00
|
|
|
/// HasSymbolResolver - True if this target supports the MachO
|
|
|
|
/// .symbol_resolver directive.
|
|
|
|
bool HasSymbolResolver; // Defaults to false.
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// WeakRefDirective - This directive, if non-null, is used to declare a
|
|
|
|
/// global as being a weak undefined symbol.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *WeakRefDirective; // Defaults to NULL.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
/// WeakDefDirective - This directive, if non-null, is used to declare a
|
|
|
|
/// global as being a weak defined symbol.
|
2009-08-25 21:01:42 +00:00
|
|
|
const char *WeakDefDirective; // Defaults to NULL.
|
2010-01-19 05:08:13 +00:00
|
|
|
|
|
|
|
/// LinkOnceDirective - This directive, if non-null is used to declare a
|
|
|
|
/// global as being a weak defined symbol. This is used on cygwin/mingw.
|
|
|
|
const char *LinkOnceDirective; // Defaults to NULL.
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-01-23 06:53:23 +00:00
|
|
|
/// HiddenVisibilityAttr - This attribute, if not MCSA_Invalid, is used to
|
|
|
|
/// declare a symbol as having hidden visibility.
|
|
|
|
MCSymbolAttr HiddenVisibilityAttr; // Defaults to MCSA_Hidden.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2011-02-23 02:27:05 +00:00
|
|
|
/// HiddenDeclarationVisibilityAttr - This attribute, if not MCSA_Invalid,
|
|
|
|
/// is used to declare an undefined symbol as having hidden visibility.
|
|
|
|
MCSymbolAttr HiddenDeclarationVisibilityAttr; // Defaults to MCSA_Hidden.
|
|
|
|
|
|
|
|
|
2010-01-23 06:53:23 +00:00
|
|
|
/// ProtectedVisibilityAttr - This attribute, if not MCSA_Invalid, is used
|
|
|
|
/// to declare a symbol as having protected visibility.
|
|
|
|
MCSymbolAttr ProtectedVisibilityAttr; // Defaults to MCSA_Protected
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
//===--- Dwarf Emission Directives -----------------------------------===//
|
|
|
|
|
|
|
|
/// HasLEB128 - True if target asm supports leb128 directives.
|
2009-08-25 20:21:17 +00:00
|
|
|
bool HasLEB128; // Defaults to false.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
|
|
|
/// SupportsDebugInformation - True if target supports emission of debugging
|
|
|
|
/// information.
|
2009-08-25 20:21:17 +00:00
|
|
|
bool SupportsDebugInformation; // Defaults to false.
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2009-08-25 20:21:17 +00:00
|
|
|
/// SupportsExceptionHandling - True if target supports exception handling.
|
|
|
|
ExceptionHandling::ExceptionsType ExceptionsType; // Defaults to None
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2012-06-22 01:25:12 +00:00
|
|
|
/// DwarfUsesRelocationsAcrossSections - True if Dwarf2 output generally
|
|
|
|
/// uses relocations for references to other .debug_* sections.
|
|
|
|
bool DwarfUsesRelocationsAcrossSections;
|
2010-09-02 16:43:44 +00:00
|
|
|
|
2011-07-07 20:30:33 +00:00
|
|
|
/// DwarfRegNumForCFI - True if dwarf register numbers are printed
|
|
|
|
/// instead of symbolic register names in .cfi_* directives.
|
|
|
|
bool DwarfRegNumForCFI; // Defaults to false;
|
|
|
|
|
2011-07-18 22:29:13 +00:00
|
|
|
//===--- Prologue State ----------------------------------------------===//
|
|
|
|
|
2013-05-13 01:16:13 +00:00
|
|
|
std::vector<MCCFIInstruction> InitialFrameState;
|
2011-07-18 22:29:13 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
public:
|
2010-01-20 06:34:14 +00:00
|
|
|
explicit MCAsmInfo();
|
2009-08-22 20:58:17 +00:00
|
|
|
virtual ~MCAsmInfo();
|
|
|
|
|
2010-01-23 07:21:06 +00:00
|
|
|
// FIXME: move these methods to DwarfPrinter when the JIT stops using them.
|
2013-06-23 18:31:11 +00:00
|
|
|
static unsigned getSLEB128Size(int64_t Value);
|
|
|
|
static unsigned getULEB128Size(uint64_t Value);
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2011-07-15 02:09:41 +00:00
|
|
|
/// getPointerSize - Get the pointer size in bytes.
|
|
|
|
unsigned getPointerSize() const {
|
|
|
|
return PointerSize;
|
|
|
|
}
|
|
|
|
|
2013-01-22 18:02:49 +00:00
|
|
|
/// getCalleeSaveStackSlotSize - Get the callee-saved register stack slot
|
|
|
|
/// size in bytes.
|
|
|
|
unsigned getCalleeSaveStackSlotSize() const {
|
2013-01-23 16:22:04 +00:00
|
|
|
return CalleeSaveStackSlotSize;
|
2013-01-22 18:02:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isLittleEndian - True if the target is little endian.
|
2011-07-15 02:09:41 +00:00
|
|
|
bool isLittleEndian() const {
|
|
|
|
return IsLittleEndian;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isStackGrowthDirectionUp - True if target stack grow up.
|
|
|
|
bool isStackGrowthDirectionUp() const {
|
|
|
|
return StackGrowsUp;
|
|
|
|
}
|
|
|
|
|
2010-01-23 07:21:06 +00:00
|
|
|
bool hasSubsectionsViaSymbols() const { return HasSubsectionsViaSymbols; }
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
// Data directive accessors.
|
|
|
|
//
|
2013-07-02 15:49:13 +00:00
|
|
|
const char *getData8bitsDirective() const {
|
|
|
|
return Data8bitsDirective;
|
2009-08-22 20:58:17 +00:00
|
|
|
}
|
2013-07-02 15:49:13 +00:00
|
|
|
const char *getData16bitsDirective() const {
|
|
|
|
return Data16bitsDirective;
|
2009-08-22 20:58:17 +00:00
|
|
|
}
|
2013-07-02 15:49:13 +00:00
|
|
|
const char *getData32bitsDirective() const {
|
|
|
|
return Data32bitsDirective;
|
2009-08-22 20:58:17 +00:00
|
|
|
}
|
2013-07-02 15:49:13 +00:00
|
|
|
const char *getData64bitsDirective() const {
|
|
|
|
return Data64bitsDirective;
|
2009-08-22 20:58:17 +00:00
|
|
|
}
|
2012-02-03 04:33:00 +00:00
|
|
|
const char *getGPRel64Directive() const { return GPRel64Directive; }
|
2010-01-25 21:10:10 +00:00
|
|
|
const char *getGPRel32Directive() const { return GPRel32Directive; }
|
2009-08-22 20:58:17 +00:00
|
|
|
|
2010-01-23 07:21:06 +00:00
|
|
|
/// getNonexecutableStackSection - Targets can implement this method to
|
|
|
|
/// specify a section to switch to if the translation unit doesn't have any
|
|
|
|
/// trampolines that require an executable stack.
|
2010-04-08 21:26:26 +00:00
|
|
|
virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const{
|
2010-01-23 07:21:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2011-04-28 16:09:09 +00:00
|
|
|
virtual const MCExpr *
|
|
|
|
getExprForPersonalitySymbol(const MCSymbol *Sym,
|
2011-05-01 03:50:49 +00:00
|
|
|
unsigned Encoding,
|
2011-04-28 16:09:09 +00:00
|
|
|
MCStreamer &Streamer) const;
|
|
|
|
|
2011-05-01 03:50:49 +00:00
|
|
|
const MCExpr *
|
|
|
|
getExprForFDESymbol(const MCSymbol *Sym,
|
|
|
|
unsigned Encoding,
|
|
|
|
MCStreamer &Streamer) const;
|
2011-04-28 21:04:39 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
bool usesSunStyleELFSectionSwitchSyntax() const {
|
|
|
|
return SunStyleELFSectionSwitchSyntax;
|
|
|
|
}
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
bool usesELFSectionDirectiveForBSS() const {
|
|
|
|
return UsesELFSectionDirectiveForBSS;
|
|
|
|
}
|
|
|
|
|
2010-03-12 21:03:47 +00:00
|
|
|
bool hasMicrosoftFastStdCallMangling() const {
|
|
|
|
return HasMicrosoftFastStdCallMangling;
|
|
|
|
}
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2013-04-22 22:49:11 +00:00
|
|
|
bool needsDwarfSectionOffsetDirective() const {
|
|
|
|
return NeedsDwarfSectionOffsetDirective;
|
|
|
|
}
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
// Accessors.
|
|
|
|
//
|
2010-01-19 02:09:44 +00:00
|
|
|
bool hasMachoZeroFillDirective() const { return HasMachoZeroFillDirective; }
|
2010-05-20 00:49:07 +00:00
|
|
|
bool hasMachoTBSSDirective() const { return HasMachoTBSSDirective; }
|
2010-01-19 04:34:02 +00:00
|
|
|
bool hasStaticCtorDtorReferenceInStaticMode() const {
|
|
|
|
return HasStaticCtorDtorReferenceInStaticMode;
|
|
|
|
}
|
2010-12-04 00:31:13 +00:00
|
|
|
bool getLinkerRequiresNonEmptyDwarfLines() const {
|
|
|
|
return LinkerRequiresNonEmptyDwarfLines;
|
|
|
|
}
|
2009-08-22 20:58:17 +00:00
|
|
|
unsigned getMaxInstLength() const {
|
|
|
|
return MaxInstLength;
|
|
|
|
}
|
2013-06-12 14:46:54 +00:00
|
|
|
unsigned getMinInstAlignment() const {
|
|
|
|
return MinInstAlignment;
|
|
|
|
}
|
2013-09-25 10:47:21 +00:00
|
|
|
bool getDollarIsPC() const {
|
|
|
|
return DollarIsPC;
|
|
|
|
}
|
2011-03-24 18:46:34 +00:00
|
|
|
const char *getSeparatorString() const {
|
|
|
|
return SeparatorString;
|
2009-08-22 20:58:17 +00:00
|
|
|
}
|
|
|
|
unsigned getCommentColumn() const {
|
|
|
|
return CommentColumn;
|
|
|
|
}
|
|
|
|
const char *getCommentString() const {
|
|
|
|
return CommentString;
|
|
|
|
}
|
2010-09-22 22:19:53 +00:00
|
|
|
const char *getLabelSuffix() const {
|
|
|
|
return LabelSuffix;
|
|
|
|
}
|
2012-12-16 04:00:45 +00:00
|
|
|
|
|
|
|
const char *getDebugLabelSuffix() const {
|
|
|
|
return DebugLabelSuffix;
|
|
|
|
}
|
|
|
|
|
2009-08-22 20:58:17 +00:00
|
|
|
const char *getGlobalPrefix() const {
|
|
|
|
return GlobalPrefix;
|
|
|
|
}
|
|
|
|
const char *getPrivateGlobalPrefix() const {
|
|
|
|
return PrivateGlobalPrefix;
|
|
|
|
}
|
|
|
|
const char *getLinkerPrivateGlobalPrefix() const {
|
|
|
|
return LinkerPrivateGlobalPrefix;
|
|
|
|
}
|
|
|
|
const char *getInlineAsmStart() const {
|
|
|
|
return InlineAsmStart;
|
|
|
|
}
|
|
|
|
const char *getInlineAsmEnd() const {
|
|
|
|
return InlineAsmEnd;
|
|
|
|
}
|
2011-07-27 00:38:12 +00:00
|
|
|
const char *getCode16Directive() const {
|
|
|
|
return Code16Directive;
|
|
|
|
}
|
|
|
|
const char *getCode32Directive() const {
|
|
|
|
return Code32Directive;
|
|
|
|
}
|
|
|
|
const char *getCode64Directive() const {
|
|
|
|
return Code64Directive;
|
|
|
|
}
|
2009-08-22 20:58:17 +00:00
|
|
|
unsigned getAssemblerDialect() const {
|
|
|
|
return AssemblerDialect;
|
|
|
|
}
|
|
|
|
bool doesAllowQuotesInName() const {
|
|
|
|
return AllowQuotesInName;
|
|
|
|
}
|
2009-09-18 16:57:42 +00:00
|
|
|
bool doesAllowNameToStartWithDigit() const {
|
|
|
|
return AllowNameToStartWithDigit;
|
|
|
|
}
|
2010-04-29 04:00:56 +00:00
|
|
|
bool doesAllowPeriodsInName() const {
|
|
|
|
return AllowPeriodsInName;
|
|
|
|
}
|
2012-04-07 00:37:53 +00:00
|
|
|
bool doesAllowUTF8() const {
|
|
|
|
return AllowUTF8;
|
|
|
|
}
|
2012-05-18 19:12:01 +00:00
|
|
|
bool doesSupportDataRegionDirectives() const {
|
|
|
|
return UseDataRegionDirectives;
|
|
|
|
}
|
2009-08-22 20:58:17 +00:00
|
|
|
const char *getZeroDirective() const {
|
|
|
|
return ZeroDirective;
|
|
|
|
}
|
|
|
|
const char *getAsciiDirective() const {
|
|
|
|
return AsciiDirective;
|
|
|
|
}
|
|
|
|
const char *getAscizDirective() const {
|
|
|
|
return AscizDirective;
|
|
|
|
}
|
|
|
|
const char *getAlignDirective() const {
|
|
|
|
return AlignDirective;
|
|
|
|
}
|
|
|
|
bool getAlignmentIsInBytes() const {
|
|
|
|
return AlignmentIsInBytes;
|
|
|
|
}
|
|
|
|
unsigned getTextAlignFillValue() const {
|
|
|
|
return TextAlignFillValue;
|
|
|
|
}
|
|
|
|
const char *getGlobalDirective() const {
|
|
|
|
return GlobalDirective;
|
|
|
|
}
|
|
|
|
const char *getExternDirective() const {
|
|
|
|
return ExternDirective;
|
|
|
|
}
|
2010-01-26 20:40:54 +00:00
|
|
|
bool hasSetDirective() const { return HasSetDirective; }
|
2010-12-22 21:51:29 +00:00
|
|
|
bool hasAggressiveSymbolFolding() const {
|
|
|
|
return HasAggressiveSymbolFolding;
|
|
|
|
}
|
2010-01-26 20:21:43 +00:00
|
|
|
bool getCOMMDirectiveAlignmentIsInBytes() const {
|
|
|
|
return COMMDirectiveAlignmentIsInBytes;
|
|
|
|
}
|
2012-09-07 21:08:01 +00:00
|
|
|
LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
|
|
|
|
return LCOMMDirectiveAlignmentType;
|
2012-09-07 17:25:13 +00:00
|
|
|
}
|
|
|
|
bool hasDotTypeDotSizeDirective() const {return HasDotTypeDotSizeDirective;}
|
2010-01-23 05:51:36 +00:00
|
|
|
bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile; }
|
|
|
|
bool hasNoDeadStrip() const { return HasNoDeadStrip; }
|
2010-11-19 18:39:33 +00:00
|
|
|
bool hasSymbolResolver() const { return HasSymbolResolver; }
|
2010-01-19 05:08:13 +00:00
|
|
|
const char *getWeakRefDirective() const { return WeakRefDirective; }
|
|
|
|
const char *getWeakDefDirective() const { return WeakDefDirective; }
|
|
|
|
const char *getLinkOnceDirective() const { return LinkOnceDirective; }
|
2010-09-23 18:07:04 +00:00
|
|
|
|
2010-01-23 06:53:23 +00:00
|
|
|
MCSymbolAttr getHiddenVisibilityAttr() const { return HiddenVisibilityAttr;}
|
2011-02-23 02:27:05 +00:00
|
|
|
MCSymbolAttr getHiddenDeclarationVisibilityAttr() const {
|
|
|
|
return HiddenDeclarationVisibilityAttr;
|
|
|
|
}
|
2010-01-23 06:53:23 +00:00
|
|
|
MCSymbolAttr getProtectedVisibilityAttr() const {
|
|
|
|
return ProtectedVisibilityAttr;
|
2009-08-22 20:58:17 +00:00
|
|
|
}
|
|
|
|
bool hasLEB128() const {
|
|
|
|
return HasLEB128;
|
|
|
|
}
|
|
|
|
bool doesSupportDebugInformation() const {
|
|
|
|
return SupportsDebugInformation;
|
|
|
|
}
|
|
|
|
bool doesSupportExceptionHandling() const {
|
|
|
|
return ExceptionsType != ExceptionHandling::None;
|
|
|
|
}
|
|
|
|
ExceptionHandling::ExceptionsType getExceptionHandlingType() const {
|
|
|
|
return ExceptionsType;
|
|
|
|
}
|
2011-01-14 21:58:08 +00:00
|
|
|
bool isExceptionHandlingDwarf() const {
|
|
|
|
return
|
2011-05-05 22:14:31 +00:00
|
|
|
(ExceptionsType == ExceptionHandling::DwarfCFI ||
|
2011-06-03 05:09:12 +00:00
|
|
|
ExceptionsType == ExceptionHandling::ARM ||
|
|
|
|
ExceptionsType == ExceptionHandling::Win64);
|
2011-01-14 21:58:08 +00:00
|
|
|
}
|
2012-06-22 01:25:12 +00:00
|
|
|
bool doesDwarfUseRelocationsAcrossSections() const {
|
|
|
|
return DwarfUsesRelocationsAcrossSections;
|
2010-09-02 16:43:44 +00:00
|
|
|
}
|
2011-07-07 20:30:33 +00:00
|
|
|
bool useDwarfRegNumForCFI() const {
|
|
|
|
return DwarfRegNumForCFI;
|
|
|
|
}
|
2011-07-18 22:29:13 +00:00
|
|
|
|
2013-05-13 01:16:13 +00:00
|
|
|
void addInitialFrameState(const MCCFIInstruction &Inst) {
|
|
|
|
InitialFrameState.push_back(Inst);
|
2011-07-18 22:29:13 +00:00
|
|
|
}
|
2013-05-13 01:16:13 +00:00
|
|
|
|
|
|
|
const std::vector<MCCFIInstruction> &getInitialFrameState() const {
|
2011-07-18 22:29:13 +00:00
|
|
|
return InitialFrameState;
|
|
|
|
}
|
2009-08-22 20:58:17 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|