blob: e072392987c37517211f5ce598db94ee66f968ec [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 Dunbara5d0b542010-05-06 20:34:01 +000015#include "llvm/MC/MCExpr.h"
Daniel Dunbar337055e2010-03-23 03:13:05 +000016#include "llvm/MC/MCObjectWriter.h"
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +000017#include "llvm/MC/MCSectionELF.h"
Daniel Dunbard6e59082010-03-15 21:56:50 +000018#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar1a9158c2010-03-19 10:43:26 +000019#include "llvm/MC/MachObjectWriter.h"
Daniel Dunbar82968002010-03-23 01:39:09 +000020#include "llvm/Support/ErrorHandling.h"
21#include "llvm/Support/raw_ostream.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000022#include "llvm/Target/TargetRegistry.h"
23#include "llvm/Target/TargetAsmBackend.h"
24using namespace llvm;
25
26namespace {
27
Daniel Dunbar87190c42010-03-19 09:28:12 +000028static unsigned getFixupKindLog2Size(unsigned Kind) {
29 switch (Kind) {
30 default: assert(0 && "invalid fixup kind!");
31 case X86::reloc_pcrel_1byte:
32 case FK_Data_1: return 0;
33 case FK_Data_2: return 1;
34 case X86::reloc_pcrel_4byte:
35 case X86::reloc_riprel_4byte:
36 case X86::reloc_riprel_4byte_movq_load:
37 case FK_Data_4: return 2;
38 case FK_Data_8: return 3;
39 }
40}
41
Daniel Dunbar12783d12010-02-21 21:54:14 +000042class X86AsmBackend : public TargetAsmBackend {
43public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000044 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000045 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000046
47 void ApplyFixup(const MCAsmFixup &Fixup, MCDataFragment &DF,
48 uint64_t Value) const {
49 unsigned Size = 1 << getFixupKindLog2Size(Fixup.Kind);
50
51 assert(Fixup.Offset + Size <= DF.getContents().size() &&
52 "Invalid fixup offset!");
53 for (unsigned i = 0; i != Size; ++i)
54 DF.getContents()[Fixup.Offset + i] = uint8_t(Value >> (i * 8));
55 }
Daniel Dunbar82968002010-03-23 01:39:09 +000056
Daniel Dunbar337055e2010-03-23 03:13:05 +000057 bool MayNeedRelaxation(const MCInst &Inst,
58 const SmallVectorImpl<MCAsmFixup> &Fixups) const;
59
Daniel Dunbar82968002010-03-23 01:39:09 +000060 void RelaxInstruction(const MCInstFragment *IF, MCInst &Res) const;
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +000061
62 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000063};
64
Daniel Dunbar82968002010-03-23 01:39:09 +000065static unsigned getRelaxedOpcode(unsigned Op) {
66 switch (Op) {
67 default:
68 return Op;
69
70 case X86::JAE_1: return X86::JAE_4;
71 case X86::JA_1: return X86::JA_4;
72 case X86::JBE_1: return X86::JBE_4;
73 case X86::JB_1: return X86::JB_4;
74 case X86::JE_1: return X86::JE_4;
75 case X86::JGE_1: return X86::JGE_4;
76 case X86::JG_1: return X86::JG_4;
77 case X86::JLE_1: return X86::JLE_4;
78 case X86::JL_1: return X86::JL_4;
Daniel Dunbard94406a2010-05-19 17:20:58 +000079 case X86::TAILJMP_1:
Daniel Dunbar82968002010-03-23 01:39:09 +000080 case X86::JMP_1: return X86::JMP_4;
81 case X86::JNE_1: return X86::JNE_4;
82 case X86::JNO_1: return X86::JNO_4;
83 case X86::JNP_1: return X86::JNP_4;
84 case X86::JNS_1: return X86::JNS_4;
85 case X86::JO_1: return X86::JO_4;
86 case X86::JP_1: return X86::JP_4;
87 case X86::JS_1: return X86::JS_4;
88 }
89}
90
Daniel Dunbar337055e2010-03-23 03:13:05 +000091bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst,
92 const SmallVectorImpl<MCAsmFixup> &Fixups) const {
Daniel Dunbar337055e2010-03-23 03:13:05 +000093 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
Daniel Dunbara5d0b542010-05-06 20:34:01 +000094 // We don't support relaxing anything else currently. Make sure we error out
95 // if we see a non-constant 1 or 2 byte fixup.
96 //
97 // FIXME: We should need to check this here, this is better checked in the
98 // object writer which should be verifying that any final relocations match
99 // the expected fixup. However, that code is more complicated and hasn't
100 // been written yet. See the FIXMEs in MachObjectWriter.cpp.
101 if ((Fixups[i].Kind == FK_Data_1 || Fixups[i].Kind == FK_Data_2) &&
102 !isa<MCConstantExpr>(Fixups[i].Value))
103 report_fatal_error("unexpected small fixup with a non-constant operand!");
104
105 // Check for a 1byte pcrel fixup, and enforce that we would know how to
106 // relax this instruction.
Daniel Dunbar337055e2010-03-23 03:13:05 +0000107 if (unsigned(Fixups[i].Kind) == X86::reloc_pcrel_1byte) {
108 assert(getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode());
109 return true;
110 }
111 }
112
113 return false;
114}
115
Daniel Dunbar82968002010-03-23 01:39:09 +0000116// FIXME: Can tblgen help at all here to verify there aren't other instructions
117// we can relax?
118void X86AsmBackend::RelaxInstruction(const MCInstFragment *IF,
119 MCInst &Res) const {
120 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
121 unsigned RelaxedOp = getRelaxedOpcode(IF->getInst().getOpcode());
122
123 if (RelaxedOp == IF->getInst().getOpcode()) {
124 SmallString<256> Tmp;
125 raw_svector_ostream OS(Tmp);
126 IF->getInst().dump_pretty(OS);
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000127 OS << "\n";
Chris Lattner75361b62010-04-07 22:58:41 +0000128 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000129 }
130
131 Res = IF->getInst();
132 Res.setOpcode(RelaxedOp);
133}
134
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000135/// WriteNopData - Write optimal nops to the output file for the \arg Count
136/// bytes. This returns the number of bytes written. It may return 0 if
137/// the \arg Count is more than the maximum optimal nops.
138///
139/// FIXME this is X86 32-bit specific and should move to a better place.
140bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
141 static const uint8_t Nops[16][16] = {
142 // nop
143 {0x90},
144 // xchg %ax,%ax
145 {0x66, 0x90},
146 // nopl (%[re]ax)
147 {0x0f, 0x1f, 0x00},
148 // nopl 0(%[re]ax)
149 {0x0f, 0x1f, 0x40, 0x00},
150 // nopl 0(%[re]ax,%[re]ax,1)
151 {0x0f, 0x1f, 0x44, 0x00, 0x00},
152 // nopw 0(%[re]ax,%[re]ax,1)
153 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
154 // nopl 0L(%[re]ax)
155 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
156 // nopl 0L(%[re]ax,%[re]ax,1)
157 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
158 // nopw 0L(%[re]ax,%[re]ax,1)
159 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
160 // nopw %cs:0L(%[re]ax,%[re]ax,1)
161 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
162 // nopl 0(%[re]ax,%[re]ax,1)
163 // nopw 0(%[re]ax,%[re]ax,1)
164 {0x0f, 0x1f, 0x44, 0x00, 0x00,
165 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
166 // nopw 0(%[re]ax,%[re]ax,1)
167 // nopw 0(%[re]ax,%[re]ax,1)
168 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
169 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
170 // nopw 0(%[re]ax,%[re]ax,1)
171 // nopl 0L(%[re]ax) */
172 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
173 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
174 // nopl 0L(%[re]ax)
175 // nopl 0L(%[re]ax)
176 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
177 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
178 // nopl 0L(%[re]ax)
179 // nopl 0L(%[re]ax,%[re]ax,1)
180 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
181 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
182 };
183
184 // Write an optimal sequence for the first 15 bytes.
185 uint64_t OptimalCount = (Count < 16) ? Count : 15;
186 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
187 OW->Write8(Nops[OptimalCount - 1][i]);
188
189 // Finish with single byte nops.
190 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
191 OW->Write8(0x90);
192
193 return true;
194}
195
Daniel Dunbar82968002010-03-23 01:39:09 +0000196/* *** */
197
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000198class ELFX86AsmBackend : public X86AsmBackend {
199public:
200 ELFX86AsmBackend(const Target &T)
201 : X86AsmBackend(T) {
202 HasAbsolutizedSet = true;
203 HasScatteredSymbols = true;
204 }
205
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000206 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
207 return 0;
208 }
209
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000210 bool isVirtualSection(const MCSection &Section) const {
211 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
212 return SE.getType() == MCSectionELF::SHT_NOBITS;;
213 }
214};
215
Matt Fleming7efaef62010-05-21 11:39:07 +0000216class ELFX86_32AsmBackend : public ELFX86AsmBackend {
217public:
218 ELFX86_32AsmBackend(const Target &T)
219 : ELFX86AsmBackend(T) {}
220};
221
222class ELFX86_64AsmBackend : public ELFX86AsmBackend {
223public:
224 ELFX86_64AsmBackend(const Target &T)
225 : ELFX86AsmBackend(T) {}
226};
227
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000228class DarwinX86AsmBackend : public X86AsmBackend {
229public:
230 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000231 : X86AsmBackend(T) {
232 HasAbsolutizedSet = true;
233 HasScatteredSymbols = true;
234 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000235
236 bool isVirtualSection(const MCSection &Section) const {
237 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
238 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000239 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
240 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000241 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000242};
243
Daniel Dunbard6e59082010-03-15 21:56:50 +0000244class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
245public:
246 DarwinX86_32AsmBackend(const Target &T)
247 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000248
249 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
250 return new MachObjectWriter(OS, /*Is64Bit=*/false);
251 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000252};
253
254class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
255public:
256 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000257 : DarwinX86AsmBackend(T) {
258 HasReliableSymbolDifference = true;
259 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000260
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000261 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
262 return new MachObjectWriter(OS, /*Is64Bit=*/true);
263 }
264
Daniel Dunbard6e59082010-03-15 21:56:50 +0000265 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
266 // Temporary labels in the string literals sections require symbols. The
267 // issue is that the x86_64 relocation format does not allow symbol +
268 // offset, and so the linker does not have enough information to resolve the
269 // access to the appropriate atom unless an external relocation is used. For
270 // non-cstring sections, we expect the compiler to use a non-temporary label
271 // for anything that could have an addend pointing outside the symbol.
272 //
273 // See <rdar://problem/4765733>.
274 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
275 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
276 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000277
278 virtual bool isSectionAtomizable(const MCSection &Section) const {
279 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
280 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
281 switch (SMO.getType()) {
282 default:
283 return true;
284
285 case MCSectionMachO::S_4BYTE_LITERALS:
286 case MCSectionMachO::S_8BYTE_LITERALS:
287 case MCSectionMachO::S_16BYTE_LITERALS:
288 case MCSectionMachO::S_LITERAL_POINTERS:
289 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
290 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
291 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
292 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
293 case MCSectionMachO::S_INTERPOSING:
294 return false;
295 }
296 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000297};
298
Daniel Dunbar12783d12010-02-21 21:54:14 +0000299}
300
301TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000302 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000303 switch (Triple(TT).getOS()) {
304 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000305 return new DarwinX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000306 default:
Matt Fleming7efaef62010-05-21 11:39:07 +0000307 return new ELFX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000308 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000309}
310
311TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000312 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000313 switch (Triple(TT).getOS()) {
314 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000315 return new DarwinX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000316 default:
Matt Fleming7efaef62010-05-21 11:39:07 +0000317 return new ELFX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000318 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000319}