LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
X86MCAsmInfo.cpp
Go to the documentation of this file.
1 //===-- X86MCAsmInfo.cpp - X86 asm properties -----------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declarations of the X86MCAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "X86MCAsmInfo.h"
15 #include "llvm/ADT/Triple.h"
16 #include "llvm/MC/MCContext.h"
17 #include "llvm/MC/MCExpr.h"
18 #include "llvm/MC/MCSectionELF.h"
19 #include "llvm/MC/MCStreamer.h"
21 #include "llvm/Support/ELF.h"
22 using namespace llvm;
23 
25  // Note: This numbering has to match the GCC assembler dialects for inline
26  // asm alternatives to work right.
27  ATT = 0, Intel = 1
28 };
29 
31 AsmWriterFlavor("x86-asm-syntax", cl::init(ATT),
32  cl::desc("Choose style of code to emit from X86 backend:"),
33  cl::values(clEnumValN(ATT, "att", "Emit AT&T-style assembly"),
34  clEnumValN(Intel, "intel", "Emit Intel-style assembly"),
35  clEnumValEnd));
36 
37 static cl::opt<bool>
38 MarkedJTDataRegions("mark-data-regions", cl::init(false),
39  cl::desc("Mark code section jump table data regions."),
40  cl::Hidden);
41 
42 void X86MCAsmInfoDarwin::anchor() { }
43 
45  bool is64Bit = T.getArch() == Triple::x86_64;
46  if (is64Bit)
48 
50 
51  TextAlignFillValue = 0x90;
52 
53  if (!is64Bit)
54  Data64bitsDirective = 0; // we can't emit a 64-bit unit
55 
56  // Use ## as a comment string so that .s files generated by llvm can go
57  // through the GCC preprocessor without causing an error. This is needed
58  // because "clang foo.s" runs the C preprocessor, which is usually reserved
59  // for .S files on other systems. Perhaps this is because the file system
60  // wasn't always case preserving or something.
61  CommentString = "##";
62 
65 
66  // Exceptions handling
68 }
69 
71  : X86MCAsmInfoDarwin(Triple) {
72 }
73 
74 void X86ELFMCAsmInfo::anchor() { }
75 
77  bool is64Bit = T.getArch() == Triple::x86_64;
78  bool isX32 = T.getEnvironment() == Triple::GNUX32;
79 
80  // For ELF, x86-64 pointer size depends on the ABI.
81  // For x86-64 without the x32 ABI, pointer size is 8. For x86 and for x86-64
82  // with the x32 ABI, pointer size remains the default 4.
83  PointerSize = (is64Bit && !isX32) ? 8 : 4;
84 
85  // OTOH, stack slot size is always 8 for x86-64, even with the x32 ABI.
86  CalleeSaveStackSlotSize = is64Bit ? 8 : 4;
87 
89 
90  TextAlignFillValue = 0x90;
91 
92  PrivateGlobalPrefix = ".L";
93 
94  // Set up DWARF directives
95  HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
96 
97  // Debug Information
99 
100  // Exceptions handling
102 
103  // OpenBSD and Bitrig have buggy support for .quad in 32-bit mode, just split
104  // into two .words.
105  if ((T.getOS() == Triple::OpenBSD || T.getOS() == Triple::Bitrig) &&
106  T.getArch() == Triple::x86)
108 }
109 
110 const MCExpr *
112  unsigned Encoding,
113  MCStreamer &Streamer) const {
114  MCContext &Context = Streamer.getContext();
115  const MCExpr *Res =
117  const MCExpr *Four = MCConstantExpr::Create(4, Context);
118  return MCBinaryExpr::CreateAdd(Res, Four, Context);
119 }
120 
123  return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS,
125 }
126 
127 void X86MCAsmInfoMicrosoft::anchor() { }
128 
130  if (Triple.getArch() == Triple::x86_64) {
131  GlobalPrefix = "";
132  PrivateGlobalPrefix = ".L";
133  }
134 
136 
137  TextAlignFillValue = 0x90;
138 
139  AllowAtInName = true;
140 }
141 
142 void X86MCAsmInfoGNUCOFF::anchor() { }
143 
145  if (Triple.getArch() == Triple::x86_64) {
146  GlobalPrefix = "";
147  PrivateGlobalPrefix = ".L";
148  }
149 
151 
152  TextAlignFillValue = 0x90;
153 
154  // Exceptions handling
156 }
OSType getOS() const
getOS - Get the parsed operating system type of this triple.
Definition: Triple.h:178
unsigned TextAlignFillValue
Definition: MCAsmInfo.h:223
static const MCConstantExpr * Create(int64_t Value, MCContext &Ctx)
Definition: MCExpr.cpp:152
const char * GlobalPrefix
Definition: MCAsmInfo.h:120
#define clEnumValEnd
Definition: CommandLine.h:472
const MCSectionELF * getELFSection(StringRef Section, unsigned Type, unsigned Flags, SectionKind Kind)
Definition: MCContext.cpp:244
const char * Data64bitsDirective
Definition: MCAsmInfo.h:179
static cl::opt< bool > MarkedJTDataRegions("mark-data-regions", cl::init(false), cl::desc("Mark code section jump table data regions."), cl::Hidden)
unsigned CalleeSaveStackSlotSize
Definition: MCAsmInfo.h:55
unsigned AssemblerDialect
AssemblerDialect - Which dialect of an assembler variant to use.
Definition: MCAsmInfo.h:145
ValuesClass< DataType > END_WITH_NULL values(const char *Arg, DataType Val, const char *Desc,...)
Definition: CommandLine.h:510
ExceptionHandling::ExceptionsType ExceptionsType
SupportsExceptionHandling - True if target supports exception handling.
Definition: MCAsmInfo.h:300
const char * PrivateGlobalPrefix
Definition: MCAsmInfo.h:125
X86_64MCAsmInfoDarwin(const Triple &Triple)
virtual const MCSection * getNonexecutableStackSection(MCContext &Ctx) const
X86MCAsmInfoMicrosoft(const Triple &Triple)
MCContext & getContext() const
Definition: MCStreamer.h:168
const char * CommentString
Definition: MCAsmInfo.h:110
ArchType getArch() const
getArch - Get the parsed architecture type of this triple.
Definition: Triple.h:172
AsmWriterFlavorTy
static const MCSymbolRefExpr * Create(const MCSymbol *Symbol, MCContext &Ctx)
Definition: MCExpr.h:270
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:314
unsigned PointerSize
Definition: MCAsmInfo.h:50
bool AllowAtInName
This is true if the assembler allows @ characters in symbol names. Defaults to false.
Definition: MCAsmInfo.h:149
bool SupportsDebugInformation
Definition: MCAsmInfo.h:297
X86ELFMCAsmInfo(const Triple &Triple)
bool HasLEB128
HasLEB128 - True if target asm supports leb128 directives.
Definition: MCAsmInfo.h:293
static SectionKind getMetadata()
Definition: SectionKind.h:207
X86MCAsmInfoDarwin(const Triple &Triple)
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
Definition: CommandLine.h:471
static const MCBinaryExpr * CreateAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
Definition: MCExpr.h:396
bool UseDataRegionDirectives
Definition: MCAsmInfo.h:154
X86MCAsmInfoGNUCOFF(const Triple &Triple)
EnvironmentType getEnvironment() const
getEnvironment - Get the parsed environment type of this triple.
Definition: Triple.h:187
virtual const MCExpr * getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding, MCStreamer &Streamer) const
static cl::opt< AsmWriterFlavorTy > AsmWriterFlavor("x86-asm-syntax", cl::init(ATT), cl::desc("Choose style of code to emit from X86 backend:"), cl::values(clEnumValN(ATT,"att","Emit AT&T-style assembly"), clEnumValN(Intel,"intel","Emit Intel-style assembly"), clEnumValEnd))