Revert the previous patch while I figure out how to make llvm-gcc
[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/MCContext.h"
18 #include "llvm/MC/MCExpr.h"
19 #include "llvm/MC/MCSectionELF.h"
20 #include "llvm/MC/MCStreamer.h"
21 #include "llvm/Support/CommandLine.h"
22 #include "llvm/Support/ELF.h"
23 using namespace llvm;
24
25 enum AsmWriterFlavorTy {
26   // Note: This numbering has to match the GCC assembler dialects for inline
27   // asm alternatives to work right.
28   ATT = 0, Intel = 1
29 };
30
31 static cl::opt<AsmWriterFlavorTy>
32 AsmWriterFlavor("x86-asm-syntax", cl::init(ATT),
33   cl::desc("Choose style of code to emit from X86 backend:"),
34   cl::values(clEnumValN(ATT,   "att",   "Emit AT&T-style assembly"),
35              clEnumValN(Intel, "intel", "Emit Intel-style assembly"),
36              clEnumValEnd));
37
38
39 static const char *const x86_asm_table[] = {
40   "{si}", "S",
41   "{di}", "D",
42   "{ax}", "a",
43   "{cx}", "c",
44   "{memory}", "memory",
45   "{flags}", "",
46   "{dirflag}", "",
47   "{fpsr}", "",
48   "{cc}", "cc",
49   0,0};
50
51 X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) {
52   AsmTransCBE = x86_asm_table;
53   AssemblerDialect = AsmWriterFlavor;
54     
55   bool is64Bit = Triple.getArch() == Triple::x86_64;
56
57   TextAlignFillValue = 0x90;
58
59   if (!is64Bit)
60     Data64bitsDirective = 0;       // we can't emit a 64-bit unit
61
62   // Use ## as a comment string so that .s files generated by llvm can go
63   // through the GCC preprocessor without causing an error.  This is needed
64   // because "clang foo.s" runs the C preprocessor, which is usually reserved
65   // for .S files on other systems.  Perhaps this is because the file system
66   // wasn't always case preserving or something.
67   CommentString = "##";
68   PCSymbol = ".";
69
70   SupportsDebugInformation = true;
71   DwarfUsesInlineInfoSection = true;
72
73   // Exceptions handling
74   ExceptionsType = ExceptionHandling::DwarfTable;
75 }
76
77 const MCExpr *
78 X86_64MCAsmInfoDarwin::getExprForPersonalitySymbol(const MCSymbol *Sym,
79                                                    MCStreamer &Streamer) const {
80   MCContext &Context = Streamer.getContext();
81   const MCExpr *Res =
82     MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Context);
83   const MCExpr *Four = MCConstantExpr::Create(4, Context);
84   return MCBinaryExpr::CreateAdd(Res, Four, Context);
85 }
86
87 X86_64MCAsmInfoDarwin::X86_64MCAsmInfoDarwin(const Triple &Triple)
88   : X86MCAsmInfoDarwin(Triple) {
89 }
90
91 X86ELFMCAsmInfo::X86ELFMCAsmInfo(const Triple &T) {
92   AsmTransCBE = x86_asm_table;
93   AssemblerDialect = AsmWriterFlavor;
94
95   TextAlignFillValue = 0x90;
96
97   PrivateGlobalPrefix = ".L";
98   WeakRefDirective = "\t.weak\t";
99   PCSymbol = ".";
100
101   // Set up DWARF directives
102   HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
103
104   // Debug Information
105   SupportsDebugInformation = true;
106
107   // Exceptions handling
108   ExceptionsType = ExceptionHandling::DwarfCFI;
109
110   DwarfRequiresFrameSection = false;
111
112   // OpenBSD has buggy support for .quad in 32-bit mode, just split into two
113   // .words.
114   if (T.getOS() == Triple::OpenBSD && T.getArch() == Triple::x86)
115     Data64bitsDirective = 0;
116 }
117
118 const MCSection *X86ELFMCAsmInfo::
119 getNonexecutableStackSection(MCContext &Ctx) const {
120   return Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS,
121                            0, SectionKind::getMetadata());
122 }
123
124 X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
125   if (Triple.getArch() == Triple::x86_64) {
126     GlobalPrefix = "";
127     PrivateGlobalPrefix = ".L";
128   }
129
130   AsmTransCBE = x86_asm_table;
131   AssemblerDialect = AsmWriterFlavor;
132
133   TextAlignFillValue = 0x90;
134 }