blob: 4b51b69dc2d01b1559bd01224a249fcd9ec02141 [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:
39 case FK_Data_4: return 2;
40 case FK_Data_8: return 3;
41 }
42}
43
Chris Lattner9fc05222010-07-07 22:27:31 +000044namespace {
Daniel Dunbar12783d12010-02-21 21:54:14 +000045class X86AsmBackend : public TargetAsmBackend {
46public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000047 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000048 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000049
Daniel Dunbarc90e30a2010-05-26 15:18:56 +000050 void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
Daniel Dunbar87190c42010-03-19 09:28:12 +000051 uint64_t Value) const {
Daniel Dunbar482ad802010-05-26 15:18:31 +000052 unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar87190c42010-03-19 09:28:12 +000053
Daniel Dunbar482ad802010-05-26 15:18:31 +000054 assert(Fixup.getOffset() + Size <= DF.getContents().size() &&
Daniel Dunbar87190c42010-03-19 09:28:12 +000055 "Invalid fixup offset!");
56 for (unsigned i = 0; i != Size; ++i)
Daniel Dunbar482ad802010-05-26 15:18:31 +000057 DF.getContents()[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
Daniel Dunbar87190c42010-03-19 09:28:12 +000058 }
Daniel Dunbar82968002010-03-23 01:39:09 +000059
Daniel Dunbar84882522010-05-26 17:45:29 +000060 bool MayNeedRelaxation(const MCInst &Inst) const;
Daniel Dunbar337055e2010-03-23 03:13:05 +000061
Daniel Dunbar95506d42010-05-26 18:15:06 +000062 void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +000063
64 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000065};
Chris Lattner9fc05222010-07-07 22:27:31 +000066} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +000067
Daniel Dunbar82968002010-03-23 01:39:09 +000068static unsigned getRelaxedOpcode(unsigned Op) {
69 switch (Op) {
70 default:
71 return Op;
72
73 case X86::JAE_1: return X86::JAE_4;
74 case X86::JA_1: return X86::JA_4;
75 case X86::JBE_1: return X86::JBE_4;
76 case X86::JB_1: return X86::JB_4;
77 case X86::JE_1: return X86::JE_4;
78 case X86::JGE_1: return X86::JGE_4;
79 case X86::JG_1: return X86::JG_4;
80 case X86::JLE_1: return X86::JLE_4;
81 case X86::JL_1: return X86::JL_4;
82 case X86::JMP_1: return X86::JMP_4;
83 case X86::JNE_1: return X86::JNE_4;
84 case X86::JNO_1: return X86::JNO_4;
85 case X86::JNP_1: return X86::JNP_4;
86 case X86::JNS_1: return X86::JNS_4;
87 case X86::JO_1: return X86::JO_4;
88 case X86::JP_1: return X86::JP_4;
89 case X86::JS_1: return X86::JS_4;
90 }
91}
92
Daniel Dunbar84882522010-05-26 17:45:29 +000093bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
94 // Check if this instruction is ever relaxable.
95 if (getRelaxedOpcode(Inst.getOpcode()) == Inst.getOpcode())
96 return false;
Daniel Dunbar482ad802010-05-26 15:18:31 +000097
Daniel Dunbar84882522010-05-26 17:45:29 +000098 // If so, just assume it can be relaxed. Once we support relaxing more complex
99 // instructions we should check that the instruction actually has symbolic
100 // operands before doing this, but we need to be careful about things like
101 // PCrel.
102 return true;
Daniel Dunbar337055e2010-03-23 03:13:05 +0000103}
104
Daniel Dunbar82968002010-03-23 01:39:09 +0000105// FIXME: Can tblgen help at all here to verify there aren't other instructions
106// we can relax?
Daniel Dunbar95506d42010-05-26 18:15:06 +0000107void X86AsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
Daniel Dunbar82968002010-03-23 01:39:09 +0000108 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
Daniel Dunbar95506d42010-05-26 18:15:06 +0000109 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
Daniel Dunbar82968002010-03-23 01:39:09 +0000110
Daniel Dunbar95506d42010-05-26 18:15:06 +0000111 if (RelaxedOp == Inst.getOpcode()) {
Daniel Dunbar82968002010-03-23 01:39:09 +0000112 SmallString<256> Tmp;
113 raw_svector_ostream OS(Tmp);
Daniel Dunbar95506d42010-05-26 18:15:06 +0000114 Inst.dump_pretty(OS);
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000115 OS << "\n";
Chris Lattner75361b62010-04-07 22:58:41 +0000116 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000117 }
118
Daniel Dunbar95506d42010-05-26 18:15:06 +0000119 Res = Inst;
Daniel Dunbar82968002010-03-23 01:39:09 +0000120 Res.setOpcode(RelaxedOp);
121}
122
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000123/// WriteNopData - Write optimal nops to the output file for the \arg Count
124/// bytes. This returns the number of bytes written. It may return 0 if
125/// the \arg Count is more than the maximum optimal nops.
126///
127/// FIXME this is X86 32-bit specific and should move to a better place.
128bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
129 static const uint8_t Nops[16][16] = {
130 // nop
131 {0x90},
132 // xchg %ax,%ax
133 {0x66, 0x90},
134 // nopl (%[re]ax)
135 {0x0f, 0x1f, 0x00},
136 // nopl 0(%[re]ax)
137 {0x0f, 0x1f, 0x40, 0x00},
138 // nopl 0(%[re]ax,%[re]ax,1)
139 {0x0f, 0x1f, 0x44, 0x00, 0x00},
140 // nopw 0(%[re]ax,%[re]ax,1)
141 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
142 // nopl 0L(%[re]ax)
143 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
144 // nopl 0L(%[re]ax,%[re]ax,1)
145 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
146 // nopw 0L(%[re]ax,%[re]ax,1)
147 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
148 // nopw %cs:0L(%[re]ax,%[re]ax,1)
149 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
150 // nopl 0(%[re]ax,%[re]ax,1)
151 // nopw 0(%[re]ax,%[re]ax,1)
152 {0x0f, 0x1f, 0x44, 0x00, 0x00,
153 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
154 // nopw 0(%[re]ax,%[re]ax,1)
155 // nopw 0(%[re]ax,%[re]ax,1)
156 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
157 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
158 // nopw 0(%[re]ax,%[re]ax,1)
159 // nopl 0L(%[re]ax) */
160 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
161 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
162 // nopl 0L(%[re]ax)
163 // nopl 0L(%[re]ax)
164 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
165 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
166 // nopl 0L(%[re]ax)
167 // nopl 0L(%[re]ax,%[re]ax,1)
168 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
169 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
170 };
171
172 // Write an optimal sequence for the first 15 bytes.
173 uint64_t OptimalCount = (Count < 16) ? Count : 15;
174 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
175 OW->Write8(Nops[OptimalCount - 1][i]);
176
177 // Finish with single byte nops.
178 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
179 OW->Write8(0x90);
180
181 return true;
182}
183
Daniel Dunbar82968002010-03-23 01:39:09 +0000184/* *** */
185
Chris Lattner9fc05222010-07-07 22:27:31 +0000186namespace {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000187class ELFX86AsmBackend : public X86AsmBackend {
188public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000189 Triple::OSType OSType;
190 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
191 : X86AsmBackend(T), OSType(_OSType) {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000192 HasAbsolutizedSet = true;
193 HasScatteredSymbols = true;
194 }
195
196 bool isVirtualSection(const MCSection &Section) const {
197 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
Roman Divacky5baf79e2010-09-09 17:57:50 +0000198 return SE.getType() == MCSectionELF::SHT_NOBITS;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000199 }
200};
201
Matt Fleming7efaef62010-05-21 11:39:07 +0000202class ELFX86_32AsmBackend : public ELFX86AsmBackend {
203public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000204 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
205 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000206
207 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
208 return new ELFObjectWriter(OS, /*Is64Bit=*/false,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000209 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000210 /*IsLittleEndian=*/true,
211 /*HasRelocationAddend=*/false);
212 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000213};
214
215class ELFX86_64AsmBackend : public ELFX86AsmBackend {
216public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000217 ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType)
218 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000219
220 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
221 return new ELFObjectWriter(OS, /*Is64Bit=*/true,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000222 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000223 /*IsLittleEndian=*/true,
224 /*HasRelocationAddend=*/true);
225 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000226};
227
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000228class WindowsX86AsmBackend : public X86AsmBackend {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000229 bool Is64Bit;
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000230public:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000231 WindowsX86AsmBackend(const Target &T, bool is64Bit)
232 : X86AsmBackend(T)
233 , Is64Bit(is64Bit) {
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000234 HasScatteredSymbols = true;
235 }
236
237 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000238 return createWinCOFFObjectWriter(OS, Is64Bit);
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000239 }
240
241 bool isVirtualSection(const MCSection &Section) const {
242 const MCSectionCOFF &SE = static_cast<const MCSectionCOFF&>(Section);
243 return SE.getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
244 }
245};
246
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000247class DarwinX86AsmBackend : public X86AsmBackend {
248public:
249 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000250 : X86AsmBackend(T) {
251 HasAbsolutizedSet = true;
252 HasScatteredSymbols = true;
253 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000254
255 bool isVirtualSection(const MCSection &Section) const {
256 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
257 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000258 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
259 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000260 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000261};
262
Daniel Dunbard6e59082010-03-15 21:56:50 +0000263class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
264public:
265 DarwinX86_32AsmBackend(const Target &T)
266 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000267
268 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
269 return new MachObjectWriter(OS, /*Is64Bit=*/false);
270 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000271};
272
273class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
274public:
275 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000276 : DarwinX86AsmBackend(T) {
277 HasReliableSymbolDifference = true;
278 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000279
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000280 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
281 return new MachObjectWriter(OS, /*Is64Bit=*/true);
282 }
283
Daniel Dunbard6e59082010-03-15 21:56:50 +0000284 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
285 // Temporary labels in the string literals sections require symbols. The
286 // issue is that the x86_64 relocation format does not allow symbol +
287 // offset, and so the linker does not have enough information to resolve the
288 // access to the appropriate atom unless an external relocation is used. For
289 // non-cstring sections, we expect the compiler to use a non-temporary label
290 // for anything that could have an addend pointing outside the symbol.
291 //
292 // See <rdar://problem/4765733>.
293 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
294 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
295 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000296
297 virtual bool isSectionAtomizable(const MCSection &Section) const {
298 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
299 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
300 switch (SMO.getType()) {
301 default:
302 return true;
303
304 case MCSectionMachO::S_4BYTE_LITERALS:
305 case MCSectionMachO::S_8BYTE_LITERALS:
306 case MCSectionMachO::S_16BYTE_LITERALS:
307 case MCSectionMachO::S_LITERAL_POINTERS:
308 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
309 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
310 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
311 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
312 case MCSectionMachO::S_INTERPOSING:
313 return false;
314 }
315 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000316};
317
Chris Lattner9fc05222010-07-07 22:27:31 +0000318} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +0000319
320TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000321 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000322 switch (Triple(TT).getOS()) {
323 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000324 return new DarwinX86_32AsmBackend(T);
Benjamin Kramer56d23942010-08-04 15:32:40 +0000325 case Triple::MinGW32:
326 case Triple::Cygwin:
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000327 case Triple::Win32:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000328 return new WindowsX86AsmBackend(T, false);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000329 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000330 return new ELFX86_32AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000331 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000332}
333
334TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000335 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000336 switch (Triple(TT).getOS()) {
337 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000338 return new DarwinX86_64AsmBackend(T);
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000339 case Triple::MinGW64:
340 case Triple::Cygwin:
341 case Triple::Win32:
342 return new WindowsX86AsmBackend(T, true);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000343 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000344 return new ELFX86_64AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000345 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000346}