blob: d7a9e1a96535cfd83072161c85f277346c663e73 [file] [log] [blame]
Daniel Dunbar12783d12010-02-21 21:54:14 +00001//===-- 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"
Daniel Dunbard6e59082010-03-15 21:56:50 +000012#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000013#include "llvm/Target/TargetRegistry.h"
14#include "llvm/Target/TargetAsmBackend.h"
15using namespace llvm;
16
17namespace {
18
19class X86AsmBackend : public TargetAsmBackend {
20public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000021 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000022 : TargetAsmBackend(T) {}
23};
24
Daniel Dunbar23ac7c72010-03-11 01:34:21 +000025class DarwinX86AsmBackend : public X86AsmBackend {
26public:
27 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +000028 : X86AsmBackend(T) {
29 HasAbsolutizedSet = true;
30 HasScatteredSymbols = true;
31 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +000032};
33
Daniel Dunbard6e59082010-03-15 21:56:50 +000034class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
35public:
36 DarwinX86_32AsmBackend(const Target &T)
37 : DarwinX86AsmBackend(T) {}
38};
39
40class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
41public:
42 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +000043 : DarwinX86AsmBackend(T) {
44 HasReliableSymbolDifference = true;
45 }
Daniel Dunbard6e59082010-03-15 21:56:50 +000046
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
Daniel Dunbar12783d12010-02-21 21:54:14 +000061}
62
63TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000064 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +000065 switch (Triple(TT).getOS()) {
66 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +000067 return new DarwinX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +000068 default:
69 return new X86AsmBackend(T);
70 }
Daniel Dunbar12783d12010-02-21 21:54:14 +000071}
72
73TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000074 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +000075 switch (Triple(TT).getOS()) {
76 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +000077 return new DarwinX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +000078 default:
79 return new X86AsmBackend(T);
80 }
Daniel Dunbar12783d12010-02-21 21:54:14 +000081}