a44afc6984d389af43830d86d79b732afb60675b
[oota-llvm.git] / lib / Target / X86 / X86AsmBackend.cpp
1 //===-- X86AsmBackend.cpp - X86 Assembler Backend -------------------------===//
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 #include "llvm/Target/TargetAsmBackend.h"
11 #include "X86.h"
12 #include "llvm/MC/MCSectionMachO.h"
13 #include "llvm/Target/TargetRegistry.h"
14 #include "llvm/Target/TargetAsmBackend.h"
15 using namespace llvm;
16
17 namespace {
18
19 class X86AsmBackend : public TargetAsmBackend {
20 public:
21   X86AsmBackend(const Target &T)
22     : TargetAsmBackend(T) {}
23 };
24
25 class DarwinX86AsmBackend : public X86AsmBackend {
26 public:
27   DarwinX86AsmBackend(const Target &T)
28     : X86AsmBackend(T) {}
29
30   virtual bool hasAbsolutizedSet() const { return true; }
31
32   virtual bool hasScatteredSymbols() const { return true; }
33 };
34
35 class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
36 public:
37   DarwinX86_32AsmBackend(const Target &T)
38     : DarwinX86AsmBackend(T) {}
39 };
40
41 class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
42 public:
43   DarwinX86_64AsmBackend(const Target &T)
44     : DarwinX86AsmBackend(T) {}
45
46   virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
47     // Temporary labels in the string literals sections require symbols. The
48     // issue is that the x86_64 relocation format does not allow symbol +
49     // offset, and so the linker does not have enough information to resolve the
50     // access to the appropriate atom unless an external relocation is used. For
51     // non-cstring sections, we expect the compiler to use a non-temporary label
52     // for anything that could have an addend pointing outside the symbol.
53     //
54     // See <rdar://problem/4765733>.
55     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
56     return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
57   }
58 };
59
60 }
61
62 TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
63                                                const std::string &TT) {
64   switch (Triple(TT).getOS()) {
65   case Triple::Darwin:
66     return new DarwinX86_32AsmBackend(T);
67   default:
68     return new X86AsmBackend(T);
69   }
70 }
71
72 TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
73                                                const std::string &TT) {
74   switch (Triple(TT).getOS()) {
75   case Triple::Darwin:
76     return new DarwinX86_64AsmBackend(T);
77   default:
78     return new X86AsmBackend(T);
79   }
80 }