d3b00521aa0c072ea9f2dada8870048b78032087
[oota-llvm.git] / lib / Target / X86 / X86MCAsmInfo.cpp
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 "X86TargetMachine.h"
16 #include "llvm/ADT/Triple.h"
17 #include "llvm/MC/MCSectionELF.h"
18 #include "llvm/Support/CommandLine.h"
19 using namespace llvm;
20
21 enum AsmWriterFlavorTy {
22   // Note: This numbering has to match the GCC assembler dialects for inline
23   // asm alternatives to work right.
24   ATT = 0, Intel = 1
25 };
26
27 static cl::opt<AsmWriterFlavorTy>
28 AsmWriterFlavor("x86-asm-syntax", cl::init(ATT),
29   cl::desc("Choose style of code to emit from X86 backend:"),
30   cl::values(clEnumValN(ATT,   "att",   "Emit AT&T-style assembly"),
31              clEnumValN(Intel, "intel", "Emit Intel-style assembly"),
32              clEnumValEnd));
33
34
35 static const char *const x86_asm_table[] = {
36   "{si}", "S",
37   "{di}", "D",
38   "{ax}", "a",
39   "{cx}", "c",
40   "{memory}", "memory",
41   "{flags}", "",
42   "{dirflag}", "",
43   "{fpsr}", "",
44   "{cc}", "cc",
45   0,0};
46
47 X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) {
48   AsmTransCBE = x86_asm_table;
49   AssemblerDialect = AsmWriterFlavor;
50     
51   bool is64Bit = Triple.getArch() == Triple::x86_64;
52
53   TextAlignFillValue = 0x90;
54
55   if (!is64Bit)
56     Data64bitsDirective = 0;       // we can't emit a 64-bit unit
57
58   CommentString = "##";
59   PCSymbol = ".";
60
61   SupportsDebugInformation = true;
62   DwarfUsesInlineInfoSection = true;
63
64   // Exceptions handling
65   ExceptionsType = ExceptionHandling::Dwarf;
66   AbsoluteEHSectionOffsets = false;
67 }
68
69 X86ELFMCAsmInfo::X86ELFMCAsmInfo(const Triple &Triple) {
70   AsmTransCBE = x86_asm_table;
71   AssemblerDialect = AsmWriterFlavor;
72
73   PrivateGlobalPrefix = ".L";
74   WeakRefDirective = "\t.weak\t";
75   PCSymbol = ".";
76
77   // Set up DWARF directives
78   HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
79
80   // Debug Information
81   AbsoluteDebugSectionOffsets = true;
82   SupportsDebugInformation = true;
83
84   // Exceptions handling
85   ExceptionsType = ExceptionHandling::Dwarf;
86   AbsoluteEHSectionOffsets = false;
87 }
88
89 MCSection *X86ELFMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
90   return MCSectionELF::Create(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
91                               0, SectionKind::getMetadata(), false, Ctx);
92 }
93
94 X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
95   AsmTransCBE = x86_asm_table;
96   AssemblerDialect = AsmWriterFlavor;
97 }
98
99
100 X86WinMCAsmInfo::X86WinMCAsmInfo(const Triple &Triple) {
101   AsmTransCBE = x86_asm_table;
102   AssemblerDialect = AsmWriterFlavor;
103
104   GlobalPrefix = "_";
105   CommentString = ";";
106
107   PrivateGlobalPrefix = "$";
108   AlignDirective = "\tALIGN\t";
109   ZeroDirective = "\tdb\t";
110   AsciiDirective = "\tdb\t";
111   AscizDirective = 0;
112   Data8bitsDirective = "\tdb\t";
113   Data16bitsDirective = "\tdw\t";
114   Data32bitsDirective = "\tdd\t";
115   Data64bitsDirective = "\tdq\t";
116   HasDotTypeDotSizeDirective = false;
117   HasSingleParameterDotFile = false;
118
119   AlignmentIsInBytes = true;
120 }