blob: d9c6daa2cc268597f3c8807fbf5c3befb217df40 [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
214 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
215 return new ELFObjectWriter(OS, /*Is64Bit=*/false,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000216 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000217 /*IsLittleEndian=*/true,
218 /*HasRelocationAddend=*/false);
219 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000220};
221
222class ELFX86_64AsmBackend : public ELFX86AsmBackend {
223public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000224 ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType)
225 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000226
227 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
228 return new ELFObjectWriter(OS, /*Is64Bit=*/true,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000229 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000230 /*IsLittleEndian=*/true,
231 /*HasRelocationAddend=*/true);
232 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000233};
234
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000235class WindowsX86AsmBackend : public X86AsmBackend {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000236 bool Is64Bit;
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000237public:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000238 WindowsX86AsmBackend(const Target &T, bool is64Bit)
239 : X86AsmBackend(T)
240 , Is64Bit(is64Bit) {
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000241 HasScatteredSymbols = true;
242 }
243
244 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000245 return createWinCOFFObjectWriter(OS, Is64Bit);
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000246 }
247
248 bool isVirtualSection(const MCSection &Section) const {
249 const MCSectionCOFF &SE = static_cast<const MCSectionCOFF&>(Section);
250 return SE.getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
251 }
252};
253
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000254class DarwinX86AsmBackend : public X86AsmBackend {
255public:
256 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000257 : X86AsmBackend(T) {
258 HasAbsolutizedSet = true;
259 HasScatteredSymbols = true;
260 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000261
262 bool isVirtualSection(const MCSection &Section) const {
263 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
264 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000265 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
266 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000267 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000268};
269
Daniel Dunbard6e59082010-03-15 21:56:50 +0000270class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
271public:
272 DarwinX86_32AsmBackend(const Target &T)
273 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000274
275 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
276 return new MachObjectWriter(OS, /*Is64Bit=*/false);
277 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000278};
279
280class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
281public:
282 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000283 : DarwinX86AsmBackend(T) {
284 HasReliableSymbolDifference = true;
285 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000286
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000287 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
288 return new MachObjectWriter(OS, /*Is64Bit=*/true);
289 }
290
Daniel Dunbard6e59082010-03-15 21:56:50 +0000291 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
292 // Temporary labels in the string literals sections require symbols. The
293 // issue is that the x86_64 relocation format does not allow symbol +
294 // offset, and so the linker does not have enough information to resolve the
295 // access to the appropriate atom unless an external relocation is used. For
296 // non-cstring sections, we expect the compiler to use a non-temporary label
297 // for anything that could have an addend pointing outside the symbol.
298 //
299 // See <rdar://problem/4765733>.
300 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
301 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
302 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000303
304 virtual bool isSectionAtomizable(const MCSection &Section) const {
305 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
306 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
307 switch (SMO.getType()) {
308 default:
309 return true;
310
311 case MCSectionMachO::S_4BYTE_LITERALS:
312 case MCSectionMachO::S_8BYTE_LITERALS:
313 case MCSectionMachO::S_16BYTE_LITERALS:
314 case MCSectionMachO::S_LITERAL_POINTERS:
315 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
316 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
317 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
318 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
319 case MCSectionMachO::S_INTERPOSING:
320 return false;
321 }
322 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000323};
324
Chris Lattner9fc05222010-07-07 22:27:31 +0000325} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +0000326
327TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000328 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000329 switch (Triple(TT).getOS()) {
330 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000331 return new DarwinX86_32AsmBackend(T);
Benjamin Kramer56d23942010-08-04 15:32:40 +0000332 case Triple::MinGW32:
333 case Triple::Cygwin:
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000334 case Triple::Win32:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000335 return new WindowsX86AsmBackend(T, false);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000336 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000337 return new ELFX86_32AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000338 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000339}
340
341TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000342 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000343 switch (Triple(TT).getOS()) {
344 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000345 return new DarwinX86_64AsmBackend(T);
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000346 case Triple::MinGW64:
347 case Triple::Cygwin:
348 case Triple::Win32:
349 return new WindowsX86AsmBackend(T, true);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000350 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000351 return new ELFX86_64AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000352 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000353}