Rename createAsmInfo to createMCAsmInfo and move registration code to MCTargetDesc...
[oota-llvm.git] / lib / Target / X86 / MCTargetDesc / 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   "{fpcr}", "",
49   "{cc}", "cc",
50   0,0};
51
52 X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) {
53   AsmTransCBE = x86_asm_table;
54   AssemblerDialect = AsmWriterFlavor;
55
56   bool is64Bit = Triple.getArch() == Triple::x86_64;
57
58   TextAlignFillValue = 0x90;
59
60   if (!is64Bit)
61     Data64bitsDirective = 0;       // we can't emit a 64-bit unit
62
63   // Use ## as a comment string so that .s files generated by llvm can go
64   // through the GCC preprocessor without causing an error.  This is needed
65   // because "clang foo.s" runs the C preprocessor, which is usually reserved
66   // for .S files on other systems.  Perhaps this is because the file system
67   // wasn't always case preserving or something.
68   CommentString = "##";
69   PCSymbol = ".";
70
71   SupportsDebugInformation = true;
72   DwarfUsesInlineInfoSection = true;
73
74   // Exceptions handling
75   ExceptionsType = ExceptionHandling::DwarfCFI;
76 }
77
78 const MCExpr *
79 X86_64MCAsmInfoDarwin::getExprForPersonalitySymbol(const MCSymbol *Sym,
80                                                    unsigned Encoding,
81                                                    MCStreamer &Streamer) const {
82   MCContext &Context = Streamer.getContext();
83   const MCExpr *Res =
84     MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Context);
85   const MCExpr *Four = MCConstantExpr::Create(4, Context);
86   return MCBinaryExpr::CreateAdd(Res, Four, Context);
87 }
88
89 X86_64MCAsmInfoDarwin::X86_64MCAsmInfoDarwin(const Triple &Triple)
90   : X86MCAsmInfoDarwin(Triple) {
91 }
92
93 X86ELFMCAsmInfo::X86ELFMCAsmInfo(const Triple &T) {
94   AsmTransCBE = x86_asm_table;
95   AssemblerDialect = AsmWriterFlavor;
96
97   TextAlignFillValue = 0x90;
98
99   PrivateGlobalPrefix = ".L";
100   WeakRefDirective = "\t.weak\t";
101   PCSymbol = ".";
102
103   // Set up DWARF directives
104   HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
105
106   // Debug Information
107   SupportsDebugInformation = true;
108
109   // Exceptions handling
110   ExceptionsType = ExceptionHandling::DwarfCFI;
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 }