daniel remembered why this was needed.
[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   // Use ## as a comment string so that .s files generated by llvm can go
59   // through the GCC preprocessor without causing an error.  This is needed
60   // because "clang foo.s" runs the C preprocessor, which is usually reserved
61   // for .S files on other systems.  Perhaps this is because the file system
62   // wasn't always case preserving or something.
63   CommentString = "##";
64   PCSymbol = ".";
65
66   SupportsDebugInformation = true;
67   DwarfUsesInlineInfoSection = true;
68
69   // Exceptions handling
70   ExceptionsType = ExceptionHandling::Dwarf;
71   AbsoluteEHSectionOffsets = false;
72 }
73
74 X86ELFMCAsmInfo::X86ELFMCAsmInfo(const Triple &Triple) {
75   AsmTransCBE = x86_asm_table;
76   AssemblerDialect = AsmWriterFlavor;
77
78   PrivateGlobalPrefix = ".L";
79   WeakRefDirective = "\t.weak\t";
80   PCSymbol = ".";
81
82   // Set up DWARF directives
83   HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
84
85   // Debug Information
86   AbsoluteDebugSectionOffsets = true;
87   SupportsDebugInformation = true;
88
89   // Exceptions handling
90   ExceptionsType = ExceptionHandling::Dwarf;
91   AbsoluteEHSectionOffsets = false;
92 }
93
94 MCSection *X86ELFMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
95   return MCSectionELF::Create(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
96                               0, SectionKind::getMetadata(), false, Ctx);
97 }
98
99 X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
100   AsmTransCBE = x86_asm_table;
101   AssemblerDialect = AsmWriterFlavor;
102 }