blob: cabc6015aa6cc3b4d80e02aea1774db358843e94 [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"
Matt Fleming453db502010-08-16 18:36:14 +000014#include "llvm/MC/ELFObjectWriter.h"
Daniel Dunbar87190c42010-03-19 09:28:12 +000015#include "llvm/MC/MCAssembler.h"
Daniel Dunbara5d0b542010-05-06 20:34:01 +000016#include "llvm/MC/MCExpr.h"
Daniel Dunbar337055e2010-03-23 03:13:05 +000017#include "llvm/MC/MCObjectWriter.h"
Michael J. Spencerdfd30182010-07-27 06:46:15 +000018#include "llvm/MC/MCSectionCOFF.h"
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +000019#include "llvm/MC/MCSectionELF.h"
Daniel Dunbard6e59082010-03-15 21:56:50 +000020#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar1a9158c2010-03-19 10:43:26 +000021#include "llvm/MC/MachObjectWriter.h"
Daniel Dunbar82968002010-03-23 01:39:09 +000022#include "llvm/Support/ErrorHandling.h"
23#include "llvm/Support/raw_ostream.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000024#include "llvm/Target/TargetRegistry.h"
25#include "llvm/Target/TargetAsmBackend.h"
26using namespace llvm;
27
Daniel Dunbar12783d12010-02-21 21:54:14 +000028
Daniel Dunbar87190c42010-03-19 09:28:12 +000029static unsigned getFixupKindLog2Size(unsigned Kind) {
30 switch (Kind) {
31 default: assert(0 && "invalid fixup kind!");
32 case X86::reloc_pcrel_1byte:
33 case FK_Data_1: return 0;
Chris Lattner9fc05222010-07-07 22:27:31 +000034 case X86::reloc_pcrel_2byte:
Daniel Dunbar87190c42010-03-19 09:28:12 +000035 case FK_Data_2: return 1;
36 case X86::reloc_pcrel_4byte:
37 case X86::reloc_riprel_4byte:
38 case X86::reloc_riprel_4byte_movq_load:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +000039 case X86::reloc_signed_4byte:
Daniel Dunbar87190c42010-03-19 09:28:12 +000040 case FK_Data_4: return 2;
41 case FK_Data_8: return 3;
42 }
43}
44
Chris Lattner9fc05222010-07-07 22:27:31 +000045namespace {
Daniel Dunbar12783d12010-02-21 21:54:14 +000046class X86AsmBackend : public TargetAsmBackend {
47public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000048 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000049 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000050
Daniel Dunbarc90e30a2010-05-26 15:18:56 +000051 void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
Daniel Dunbar87190c42010-03-19 09:28:12 +000052 uint64_t Value) const {
Daniel Dunbar482ad802010-05-26 15:18:31 +000053 unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar87190c42010-03-19 09:28:12 +000054
Daniel Dunbar482ad802010-05-26 15:18:31 +000055 assert(Fixup.getOffset() + Size <= DF.getContents().size() &&
Daniel Dunbar87190c42010-03-19 09:28:12 +000056 "Invalid fixup offset!");
57 for (unsigned i = 0; i != Size; ++i)
Daniel Dunbar482ad802010-05-26 15:18:31 +000058 DF.getContents()[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
Daniel Dunbar87190c42010-03-19 09:28:12 +000059 }
Daniel Dunbar82968002010-03-23 01:39:09 +000060
Daniel Dunbar84882522010-05-26 17:45:29 +000061 bool MayNeedRelaxation(const MCInst &Inst) const;
Daniel Dunbar337055e2010-03-23 03:13:05 +000062
Daniel Dunbar95506d42010-05-26 18:15:06 +000063 void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +000064
65 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000066};
Chris Lattner9fc05222010-07-07 22:27:31 +000067} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +000068
Daniel Dunbar82968002010-03-23 01:39:09 +000069static unsigned getRelaxedOpcode(unsigned Op) {
70 switch (Op) {
71 default:
72 return Op;
73
74 case X86::JAE_1: return X86::JAE_4;
75 case X86::JA_1: return X86::JA_4;
76 case X86::JBE_1: return X86::JBE_4;
77 case X86::JB_1: return X86::JB_4;
78 case X86::JE_1: return X86::JE_4;
79 case X86::JGE_1: return X86::JGE_4;
80 case X86::JG_1: return X86::JG_4;
81 case X86::JLE_1: return X86::JLE_4;
82 case X86::JL_1: return X86::JL_4;
83 case X86::JMP_1: return X86::JMP_4;
84 case X86::JNE_1: return X86::JNE_4;
85 case X86::JNO_1: return X86::JNO_4;
86 case X86::JNP_1: return X86::JNP_4;
87 case X86::JNS_1: return X86::JNS_4;
88 case X86::JO_1: return X86::JO_4;
89 case X86::JP_1: return X86::JP_4;
90 case X86::JS_1: return X86::JS_4;
91 }
92}
93
Daniel Dunbar84882522010-05-26 17:45:29 +000094bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
95 // Check if this instruction is ever relaxable.
96 if (getRelaxedOpcode(Inst.getOpcode()) == Inst.getOpcode())
97 return false;
Daniel Dunbar482ad802010-05-26 15:18:31 +000098
Daniel Dunbar84882522010-05-26 17:45:29 +000099 // If so, just assume it can be relaxed. Once we support relaxing more complex
100 // instructions we should check that the instruction actually has symbolic
101 // operands before doing this, but we need to be careful about things like
102 // PCrel.
103 return true;
Daniel Dunbar337055e2010-03-23 03:13:05 +0000104}
105
Daniel Dunbar82968002010-03-23 01:39:09 +0000106// FIXME: Can tblgen help at all here to verify there aren't other instructions
107// we can relax?
Daniel Dunbar95506d42010-05-26 18:15:06 +0000108void X86AsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
Daniel Dunbar82968002010-03-23 01:39:09 +0000109 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
Daniel Dunbar95506d42010-05-26 18:15:06 +0000110 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
Daniel Dunbar82968002010-03-23 01:39:09 +0000111
Daniel Dunbar95506d42010-05-26 18:15:06 +0000112 if (RelaxedOp == Inst.getOpcode()) {
Daniel Dunbar82968002010-03-23 01:39:09 +0000113 SmallString<256> Tmp;
114 raw_svector_ostream OS(Tmp);
Daniel Dunbar95506d42010-05-26 18:15:06 +0000115 Inst.dump_pretty(OS);
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000116 OS << "\n";
Chris Lattner75361b62010-04-07 22:58:41 +0000117 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000118 }
119
Daniel Dunbar95506d42010-05-26 18:15:06 +0000120 Res = Inst;
Daniel Dunbar82968002010-03-23 01:39:09 +0000121 Res.setOpcode(RelaxedOp);
122}
123
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000124/// WriteNopData - Write optimal nops to the output file for the \arg Count
125/// bytes. This returns the number of bytes written. It may return 0 if
126/// the \arg Count is more than the maximum optimal nops.
127///
128/// FIXME this is X86 32-bit specific and should move to a better place.
129bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
130 static const uint8_t Nops[16][16] = {
131 // nop
132 {0x90},
133 // xchg %ax,%ax
134 {0x66, 0x90},
135 // nopl (%[re]ax)
136 {0x0f, 0x1f, 0x00},
137 // nopl 0(%[re]ax)
138 {0x0f, 0x1f, 0x40, 0x00},
139 // nopl 0(%[re]ax,%[re]ax,1)
140 {0x0f, 0x1f, 0x44, 0x00, 0x00},
141 // nopw 0(%[re]ax,%[re]ax,1)
142 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
143 // nopl 0L(%[re]ax)
144 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
145 // nopl 0L(%[re]ax,%[re]ax,1)
146 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
147 // nopw 0L(%[re]ax,%[re]ax,1)
148 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
149 // nopw %cs:0L(%[re]ax,%[re]ax,1)
150 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
151 // nopl 0(%[re]ax,%[re]ax,1)
152 // nopw 0(%[re]ax,%[re]ax,1)
153 {0x0f, 0x1f, 0x44, 0x00, 0x00,
154 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
155 // nopw 0(%[re]ax,%[re]ax,1)
156 // nopw 0(%[re]ax,%[re]ax,1)
157 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
158 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
159 // nopw 0(%[re]ax,%[re]ax,1)
160 // nopl 0L(%[re]ax) */
161 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
162 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
163 // nopl 0L(%[re]ax)
164 // nopl 0L(%[re]ax)
165 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
166 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
167 // nopl 0L(%[re]ax)
168 // nopl 0L(%[re]ax,%[re]ax,1)
169 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
170 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
171 };
172
173 // Write an optimal sequence for the first 15 bytes.
174 uint64_t OptimalCount = (Count < 16) ? Count : 15;
175 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
176 OW->Write8(Nops[OptimalCount - 1][i]);
177
178 // Finish with single byte nops.
179 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
180 OW->Write8(0x90);
181
182 return true;
183}
184
Daniel Dunbar82968002010-03-23 01:39:09 +0000185/* *** */
186
Chris Lattner9fc05222010-07-07 22:27:31 +0000187namespace {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000188class ELFX86AsmBackend : public X86AsmBackend {
189public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000190 Triple::OSType OSType;
191 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
192 : X86AsmBackend(T), OSType(_OSType) {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000193 HasAbsolutizedSet = true;
194 HasScatteredSymbols = true;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000195 HasReliableSymbolDifference = true;
196 }
197
198 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
199 const MCSectionELF &ES = static_cast<const MCSectionELF&>(Section);
200 return ES.getFlags() & MCSectionELF::SHF_MERGE;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000201 }
202
203 bool isVirtualSection(const MCSection &Section) const {
204 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
Roman Divacky5baf79e2010-09-09 17:57:50 +0000205 return SE.getType() == MCSectionELF::SHT_NOBITS;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000206 }
207};
208
Matt Fleming7efaef62010-05-21 11:39:07 +0000209class ELFX86_32AsmBackend : public ELFX86AsmBackend {
210public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000211 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
212 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000213
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000214 unsigned getPointerSize() const {
215 return 4;
216 }
217
Matt Fleming453db502010-08-16 18:36:14 +0000218 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
219 return new ELFObjectWriter(OS, /*Is64Bit=*/false,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000220 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000221 /*IsLittleEndian=*/true,
222 /*HasRelocationAddend=*/false);
223 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000224};
225
226class ELFX86_64AsmBackend : public ELFX86AsmBackend {
227public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000228 ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType)
229 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000230
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000231 unsigned getPointerSize() const {
232 return 8;
233 }
234
Matt Fleming453db502010-08-16 18:36:14 +0000235 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
236 return new ELFObjectWriter(OS, /*Is64Bit=*/true,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000237 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000238 /*IsLittleEndian=*/true,
239 /*HasRelocationAddend=*/true);
240 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000241};
242
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000243class WindowsX86AsmBackend : public X86AsmBackend {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000244 bool Is64Bit;
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000245public:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000246 WindowsX86AsmBackend(const Target &T, bool is64Bit)
247 : X86AsmBackend(T)
248 , Is64Bit(is64Bit) {
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000249 HasScatteredSymbols = true;
250 }
251
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000252 unsigned getPointerSize() const {
253 if (Is64Bit)
254 return 8;
255 else
256 return 4;
257 }
258
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000259 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000260 return createWinCOFFObjectWriter(OS, Is64Bit);
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000261 }
262
263 bool isVirtualSection(const MCSection &Section) const {
264 const MCSectionCOFF &SE = static_cast<const MCSectionCOFF&>(Section);
265 return SE.getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
266 }
267};
268
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000269class DarwinX86AsmBackend : public X86AsmBackend {
270public:
271 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000272 : X86AsmBackend(T) {
273 HasAbsolutizedSet = true;
274 HasScatteredSymbols = true;
275 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000276
277 bool isVirtualSection(const MCSection &Section) const {
278 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
279 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000280 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
281 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000282 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000283};
284
Daniel Dunbard6e59082010-03-15 21:56:50 +0000285class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
286public:
287 DarwinX86_32AsmBackend(const Target &T)
288 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000289
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000290 unsigned getPointerSize() const {
291 return 4;
292 }
293
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000294 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
295 return new MachObjectWriter(OS, /*Is64Bit=*/false);
296 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000297};
298
299class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
300public:
301 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000302 : DarwinX86AsmBackend(T) {
303 HasReliableSymbolDifference = true;
304 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000305
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000306 unsigned getPointerSize() const {
307 return 8;
308 }
309
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000310 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
311 return new MachObjectWriter(OS, /*Is64Bit=*/true);
312 }
313
Daniel Dunbard6e59082010-03-15 21:56:50 +0000314 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
315 // Temporary labels in the string literals sections require symbols. The
316 // issue is that the x86_64 relocation format does not allow symbol +
317 // offset, and so the linker does not have enough information to resolve the
318 // access to the appropriate atom unless an external relocation is used. For
319 // non-cstring sections, we expect the compiler to use a non-temporary label
320 // for anything that could have an addend pointing outside the symbol.
321 //
322 // See <rdar://problem/4765733>.
323 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
324 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
325 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000326
327 virtual bool isSectionAtomizable(const MCSection &Section) const {
328 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
329 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
330 switch (SMO.getType()) {
331 default:
332 return true;
333
334 case MCSectionMachO::S_4BYTE_LITERALS:
335 case MCSectionMachO::S_8BYTE_LITERALS:
336 case MCSectionMachO::S_16BYTE_LITERALS:
337 case MCSectionMachO::S_LITERAL_POINTERS:
338 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
339 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
340 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
341 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
342 case MCSectionMachO::S_INTERPOSING:
343 return false;
344 }
345 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000346};
347
Chris Lattner9fc05222010-07-07 22:27:31 +0000348} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +0000349
350TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000351 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000352 switch (Triple(TT).getOS()) {
353 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000354 return new DarwinX86_32AsmBackend(T);
Benjamin Kramer56d23942010-08-04 15:32:40 +0000355 case Triple::MinGW32:
356 case Triple::Cygwin:
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000357 case Triple::Win32:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000358 return new WindowsX86AsmBackend(T, false);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000359 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000360 return new ELFX86_32AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000361 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000362}
363
364TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000365 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000366 switch (Triple(TT).getOS()) {
367 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000368 return new DarwinX86_64AsmBackend(T);
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000369 case Triple::MinGW64:
370 case Triple::Cygwin:
371 case Triple::Win32:
372 return new WindowsX86AsmBackend(T, true);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000373 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000374 return new ELFX86_64AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000375 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000376}