Simplify code. No functionality change.
[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/MCSectionELF.h"
19 #include "llvm/Support/CommandLine.h"
20 using namespace llvm;
21
22 enum AsmWriterFlavorTy {
23   // Note: This numbering has to match the GCC assembler dialects for inline
24   // asm alternatives to work right.
25   ATT = 0, Intel = 1
26 };
27
28 static cl::opt<AsmWriterFlavorTy>
29 AsmWriterFlavor("x86-asm-syntax", cl::init(ATT),
30   cl::desc("Choose style of code to emit from X86 backend:"),
31   cl::values(clEnumValN(ATT,   "att",   "Emit AT&T-style assembly"),
32              clEnumValN(Intel, "intel", "Emit Intel-style assembly"),
33              clEnumValEnd));
34
35
36 static const char *const x86_asm_table[] = {
37   "{si}", "S",
38   "{di}", "D",
39   "{ax}", "a",
40   "{cx}", "c",
41   "{memory}", "memory",
42   "{flags}", "",
43   "{dirflag}", "",
44   "{fpsr}", "",
45   "{cc}", "cc",
46   0,0};
47
48 X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) {
49   AsmTransCBE = x86_asm_table;
50   AssemblerDialect = AsmWriterFlavor;
51     
52   bool is64Bit = Triple.getArch() == Triple::x86_64;
53
54   TextAlignFillValue = 0x90;
55
56   if (!is64Bit)
57     Data64bitsDirective = 0;       // we can't emit a 64-bit unit
58
59   // FIXME: Darwin 10 doesn't need this.
60   if (is64Bit)
61     NeedsSetToChangeDiffSize = true;
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::Dwarf;
76 }
77
78 X86ELFMCAsmInfo::X86ELFMCAsmInfo(const Triple &T) {
79   AsmTransCBE = x86_asm_table;
80   AssemblerDialect = AsmWriterFlavor;
81
82   TextAlignFillValue = 0x90;
83
84   PrivateGlobalPrefix = ".L";
85   WeakRefDirective = "\t.weak\t";
86   PCSymbol = ".";
87
88   // Set up DWARF directives
89   HasLEB128 = true;  // Target asm supports leb128 directives (little-endian)
90
91   // Debug Information
92   SupportsDebugInformation = true;
93
94   // Exceptions handling
95   ExceptionsType = ExceptionHandling::Dwarf;
96   
97   // OpenBSD has buggy support for .quad in 32-bit mode, just split into two
98   // .words.
99   if (T.getOS() == Triple::OpenBSD && T.getArch() == Triple::x86)
100     Data64bitsDirective = 0;
101 }
102
103 const MCSection *X86ELFMCAsmInfo::
104 getNonexecutableStackSection(MCContext &Ctx) const {
105   return Ctx.getELFSection(".note.GNU-stack", MCSectionELF::SHT_PROGBITS,
106                            0, SectionKind::getMetadata());
107 }
108
109 X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
110   if (Triple.getArch() == Triple::x86_64)
111     GlobalPrefix = "";
112
113   AsmTransCBE = x86_asm_table;
114   AssemblerDialect = AsmWriterFlavor;
115
116   TextAlignFillValue = 0x90;
117 }