MC/Darwin: Add a new target hook for whether the target uses "reliable" symbol differ...
[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     HasAbsolutizedSet = true;
30     HasScatteredSymbols = true;
31   }
32 };
33
34 class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
35 public:
36   DarwinX86_32AsmBackend(const Target &T)
37     : DarwinX86AsmBackend(T) {}
38 };
39
40 class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
41 public:
42   DarwinX86_64AsmBackend(const Target &T)
43     : DarwinX86AsmBackend(T) {
44     HasReliableSymbolDifference = true;
45   }
46
47   virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
48     // Temporary labels in the string literals sections require symbols. The
49     // issue is that the x86_64 relocation format does not allow symbol +
50     // offset, and so the linker does not have enough information to resolve the
51     // access to the appropriate atom unless an external relocation is used. For
52     // non-cstring sections, we expect the compiler to use a non-temporary label
53     // for anything that could have an addend pointing outside the symbol.
54     //
55     // See <rdar://problem/4765733>.
56     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
57     return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
58   }
59 };
60
61 }
62
63 TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
64                                                const std::string &TT) {
65   switch (Triple(TT).getOS()) {
66   case Triple::Darwin:
67     return new DarwinX86_32AsmBackend(T);
68   default:
69     return new X86AsmBackend(T);
70   }
71 }
72
73 TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
74                                                const std::string &TT) {
75   switch (Triple(TT).getOS()) {
76   case Triple::Darwin:
77     return new DarwinX86_64AsmBackend(T);
78   default:
79     return new X86AsmBackend(T);
80   }
81 }