Remove support for i386 tiger tools for aligned common symbols.
[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   SetDirective = "\t.set\t";
76   PCSymbol = ".";
77
78   // Set up DWARF directives
79   HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
80
81   // Debug Information
82   AbsoluteDebugSectionOffsets = true;
83   SupportsDebugInformation = true;
84
85   // Exceptions handling
86   ExceptionsType = ExceptionHandling::Dwarf;
87   AbsoluteEHSectionOffsets = false;
88 }
89
90 MCSection *X86ELFMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
91   return MCSectionELF::Create(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
92                               0, SectionKind::getMetadata(), false, Ctx);
93 }
94
95 X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
96   AsmTransCBE = x86_asm_table;
97   AssemblerDialect = AsmWriterFlavor;
98 }
99
100
101 X86WinMCAsmInfo::X86WinMCAsmInfo(const Triple &Triple) {
102   AsmTransCBE = x86_asm_table;
103   AssemblerDialect = AsmWriterFlavor;
104
105   GlobalPrefix = "_";
106   CommentString = ";";
107
108   PrivateGlobalPrefix = "$";
109   AlignDirective = "\tALIGN\t";
110   ZeroDirective = "\tdb\t";
111   AsciiDirective = "\tdb\t";
112   AscizDirective = 0;
113   Data8bitsDirective = "\tdb\t";
114   Data16bitsDirective = "\tdw\t";
115   Data32bitsDirective = "\tdd\t";
116   Data64bitsDirective = "\tdq\t";
117   HasDotTypeDotSizeDirective = false;
118   HasSingleParameterDotFile = false;
119
120   AlignmentIsInBytes = true;
121 }