blob: e918cb0a9237f543ddfc2e7574a7f5ff73d3179c [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 Dunbar87190c42010-03-19 09:28:12 +000012#include "X86FixupKinds.h"
Daniel Dunbar82968002010-03-23 01:39:09 +000013#include "llvm/ADT/Twine.h"
Daniel Dunbar87190c42010-03-19 09:28:12 +000014#include "llvm/MC/MCAssembler.h"
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +000015#include "llvm/MC/MCSectionELF.h"
Daniel Dunbard6e59082010-03-15 21:56:50 +000016#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar1a9158c2010-03-19 10:43:26 +000017#include "llvm/MC/MachObjectWriter.h"
Daniel Dunbar82968002010-03-23 01:39:09 +000018#include "llvm/Support/ErrorHandling.h"
19#include "llvm/Support/raw_ostream.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000020#include "llvm/Target/TargetRegistry.h"
21#include "llvm/Target/TargetAsmBackend.h"
22using namespace llvm;
23
24namespace {
25
Daniel Dunbar87190c42010-03-19 09:28:12 +000026static unsigned getFixupKindLog2Size(unsigned Kind) {
27 switch (Kind) {
28 default: assert(0 && "invalid fixup kind!");
29 case X86::reloc_pcrel_1byte:
30 case FK_Data_1: return 0;
31 case FK_Data_2: return 1;
32 case X86::reloc_pcrel_4byte:
33 case X86::reloc_riprel_4byte:
34 case X86::reloc_riprel_4byte_movq_load:
35 case FK_Data_4: return 2;
36 case FK_Data_8: return 3;
37 }
38}
39
Daniel Dunbar12783d12010-02-21 21:54:14 +000040class X86AsmBackend : public TargetAsmBackend {
41public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000042 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000043 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000044
45 void ApplyFixup(const MCAsmFixup &Fixup, MCDataFragment &DF,
46 uint64_t Value) const {
47 unsigned Size = 1 << getFixupKindLog2Size(Fixup.Kind);
48
49 assert(Fixup.Offset + Size <= DF.getContents().size() &&
50 "Invalid fixup offset!");
51 for (unsigned i = 0; i != Size; ++i)
52 DF.getContents()[Fixup.Offset + i] = uint8_t(Value >> (i * 8));
53 }
Daniel Dunbar82968002010-03-23 01:39:09 +000054
55 void RelaxInstruction(const MCInstFragment *IF, MCInst &Res) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000056};
57
Daniel Dunbar82968002010-03-23 01:39:09 +000058static unsigned getRelaxedOpcode(unsigned Op) {
59 switch (Op) {
60 default:
61 return Op;
62
63 case X86::JAE_1: return X86::JAE_4;
64 case X86::JA_1: return X86::JA_4;
65 case X86::JBE_1: return X86::JBE_4;
66 case X86::JB_1: return X86::JB_4;
67 case X86::JE_1: return X86::JE_4;
68 case X86::JGE_1: return X86::JGE_4;
69 case X86::JG_1: return X86::JG_4;
70 case X86::JLE_1: return X86::JLE_4;
71 case X86::JL_1: return X86::JL_4;
72 case X86::JMP_1: return X86::JMP_4;
73 case X86::JNE_1: return X86::JNE_4;
74 case X86::JNO_1: return X86::JNO_4;
75 case X86::JNP_1: return X86::JNP_4;
76 case X86::JNS_1: return X86::JNS_4;
77 case X86::JO_1: return X86::JO_4;
78 case X86::JP_1: return X86::JP_4;
79 case X86::JS_1: return X86::JS_4;
80 }
81}
82
83// FIXME: Can tblgen help at all here to verify there aren't other instructions
84// we can relax?
85void X86AsmBackend::RelaxInstruction(const MCInstFragment *IF,
86 MCInst &Res) const {
87 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
88 unsigned RelaxedOp = getRelaxedOpcode(IF->getInst().getOpcode());
89
90 if (RelaxedOp == IF->getInst().getOpcode()) {
91 SmallString<256> Tmp;
92 raw_svector_ostream OS(Tmp);
93 IF->getInst().dump_pretty(OS);
94 llvm_report_error("unexpected instruction to relax: " + OS.str());
95 }
96
97 Res = IF->getInst();
98 Res.setOpcode(RelaxedOp);
99}
100
101/* *** */
102
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000103class ELFX86AsmBackend : public X86AsmBackend {
104public:
105 ELFX86AsmBackend(const Target &T)
106 : X86AsmBackend(T) {
107 HasAbsolutizedSet = true;
108 HasScatteredSymbols = true;
109 }
110
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000111 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
112 return 0;
113 }
114
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000115 bool isVirtualSection(const MCSection &Section) const {
116 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
117 return SE.getType() == MCSectionELF::SHT_NOBITS;;
118 }
119};
120
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000121class DarwinX86AsmBackend : public X86AsmBackend {
122public:
123 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000124 : X86AsmBackend(T) {
125 HasAbsolutizedSet = true;
126 HasScatteredSymbols = true;
127 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000128
129 bool isVirtualSection(const MCSection &Section) const {
130 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
131 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
132 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL);
133 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000134};
135
Daniel Dunbard6e59082010-03-15 21:56:50 +0000136class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
137public:
138 DarwinX86_32AsmBackend(const Target &T)
139 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000140
141 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
142 return new MachObjectWriter(OS, /*Is64Bit=*/false);
143 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000144};
145
146class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
147public:
148 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000149 : DarwinX86AsmBackend(T) {
150 HasReliableSymbolDifference = true;
151 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000152
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000153 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
154 return new MachObjectWriter(OS, /*Is64Bit=*/true);
155 }
156
Daniel Dunbard6e59082010-03-15 21:56:50 +0000157 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
158 // Temporary labels in the string literals sections require symbols. The
159 // issue is that the x86_64 relocation format does not allow symbol +
160 // offset, and so the linker does not have enough information to resolve the
161 // access to the appropriate atom unless an external relocation is used. For
162 // non-cstring sections, we expect the compiler to use a non-temporary label
163 // for anything that could have an addend pointing outside the symbol.
164 //
165 // See <rdar://problem/4765733>.
166 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
167 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
168 }
169};
170
Daniel Dunbar12783d12010-02-21 21:54:14 +0000171}
172
173TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000174 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000175 switch (Triple(TT).getOS()) {
176 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000177 return new DarwinX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000178 default:
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000179 return new ELFX86AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000180 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000181}
182
183TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000184 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000185 switch (Triple(TT).getOS()) {
186 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000187 return new DarwinX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000188 default:
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000189 return new ELFX86AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000190 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000191}