blob: 151087f58ed0cd4c6702ddd65b5a28832e892c8f [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
Daniel Dunbarc90e30a2010-05-26 15:18:56 +000047 void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
Daniel Dunbar87190c42010-03-19 09:28:12 +000048 uint64_t Value) const {
Daniel Dunbar482ad802010-05-26 15:18:31 +000049 unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar87190c42010-03-19 09:28:12 +000050
Daniel Dunbar482ad802010-05-26 15:18:31 +000051 assert(Fixup.getOffset() + Size <= DF.getContents().size() &&
Daniel Dunbar87190c42010-03-19 09:28:12 +000052 "Invalid fixup offset!");
53 for (unsigned i = 0; i != Size; ++i)
Daniel Dunbar482ad802010-05-26 15:18:31 +000054 DF.getContents()[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
Daniel Dunbar87190c42010-03-19 09:28:12 +000055 }
Daniel Dunbar82968002010-03-23 01:39:09 +000056
Daniel Dunbar84882522010-05-26 17:45:29 +000057 bool MayNeedRelaxation(const MCInst &Inst) const;
Daniel Dunbar337055e2010-03-23 03:13:05 +000058
Daniel Dunbar95506d42010-05-26 18:15:06 +000059 void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +000060
61 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000062};
63
Daniel Dunbar82968002010-03-23 01:39:09 +000064static unsigned getRelaxedOpcode(unsigned Op) {
65 switch (Op) {
66 default:
67 return Op;
68
69 case X86::JAE_1: return X86::JAE_4;
70 case X86::JA_1: return X86::JA_4;
71 case X86::JBE_1: return X86::JBE_4;
72 case X86::JB_1: return X86::JB_4;
73 case X86::JE_1: return X86::JE_4;
74 case X86::JGE_1: return X86::JGE_4;
75 case X86::JG_1: return X86::JG_4;
76 case X86::JLE_1: return X86::JLE_4;
77 case X86::JL_1: return X86::JL_4;
Daniel Dunbard94406a2010-05-19 17:20:58 +000078 case X86::TAILJMP_1:
Daniel Dunbar82968002010-03-23 01:39:09 +000079 case X86::JMP_1: return X86::JMP_4;
80 case X86::JNE_1: return X86::JNE_4;
81 case X86::JNO_1: return X86::JNO_4;
82 case X86::JNP_1: return X86::JNP_4;
83 case X86::JNS_1: return X86::JNS_4;
84 case X86::JO_1: return X86::JO_4;
85 case X86::JP_1: return X86::JP_4;
86 case X86::JS_1: return X86::JS_4;
87 }
88}
89
Daniel Dunbar84882522010-05-26 17:45:29 +000090bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
91 // Check if this instruction is ever relaxable.
92 if (getRelaxedOpcode(Inst.getOpcode()) == Inst.getOpcode())
93 return false;
Daniel Dunbar482ad802010-05-26 15:18:31 +000094
Daniel Dunbar84882522010-05-26 17:45:29 +000095 // If so, just assume it can be relaxed. Once we support relaxing more complex
96 // instructions we should check that the instruction actually has symbolic
97 // operands before doing this, but we need to be careful about things like
98 // PCrel.
99 return true;
Daniel Dunbar337055e2010-03-23 03:13:05 +0000100}
101
Daniel Dunbar82968002010-03-23 01:39:09 +0000102// FIXME: Can tblgen help at all here to verify there aren't other instructions
103// we can relax?
Daniel Dunbar95506d42010-05-26 18:15:06 +0000104void X86AsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
Daniel Dunbar82968002010-03-23 01:39:09 +0000105 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
Daniel Dunbar95506d42010-05-26 18:15:06 +0000106 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
Daniel Dunbar82968002010-03-23 01:39:09 +0000107
Daniel Dunbar95506d42010-05-26 18:15:06 +0000108 if (RelaxedOp == Inst.getOpcode()) {
Daniel Dunbar82968002010-03-23 01:39:09 +0000109 SmallString<256> Tmp;
110 raw_svector_ostream OS(Tmp);
Daniel Dunbar95506d42010-05-26 18:15:06 +0000111 Inst.dump_pretty(OS);
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000112 OS << "\n";
Chris Lattner75361b62010-04-07 22:58:41 +0000113 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000114 }
115
Daniel Dunbar95506d42010-05-26 18:15:06 +0000116 Res = Inst;
Daniel Dunbar82968002010-03-23 01:39:09 +0000117 Res.setOpcode(RelaxedOp);
118}
119
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000120/// WriteNopData - Write optimal nops to the output file for the \arg Count
121/// bytes. This returns the number of bytes written. It may return 0 if
122/// the \arg Count is more than the maximum optimal nops.
123///
124/// FIXME this is X86 32-bit specific and should move to a better place.
125bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
126 static const uint8_t Nops[16][16] = {
127 // nop
128 {0x90},
129 // xchg %ax,%ax
130 {0x66, 0x90},
131 // nopl (%[re]ax)
132 {0x0f, 0x1f, 0x00},
133 // nopl 0(%[re]ax)
134 {0x0f, 0x1f, 0x40, 0x00},
135 // nopl 0(%[re]ax,%[re]ax,1)
136 {0x0f, 0x1f, 0x44, 0x00, 0x00},
137 // nopw 0(%[re]ax,%[re]ax,1)
138 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
139 // nopl 0L(%[re]ax)
140 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
141 // nopl 0L(%[re]ax,%[re]ax,1)
142 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
143 // nopw 0L(%[re]ax,%[re]ax,1)
144 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
145 // nopw %cs:0L(%[re]ax,%[re]ax,1)
146 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
147 // nopl 0(%[re]ax,%[re]ax,1)
148 // nopw 0(%[re]ax,%[re]ax,1)
149 {0x0f, 0x1f, 0x44, 0x00, 0x00,
150 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
151 // nopw 0(%[re]ax,%[re]ax,1)
152 // nopw 0(%[re]ax,%[re]ax,1)
153 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
154 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
155 // nopw 0(%[re]ax,%[re]ax,1)
156 // nopl 0L(%[re]ax) */
157 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
158 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
159 // nopl 0L(%[re]ax)
160 // nopl 0L(%[re]ax)
161 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
162 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
163 // nopl 0L(%[re]ax)
164 // nopl 0L(%[re]ax,%[re]ax,1)
165 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
166 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
167 };
168
169 // Write an optimal sequence for the first 15 bytes.
170 uint64_t OptimalCount = (Count < 16) ? Count : 15;
171 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
172 OW->Write8(Nops[OptimalCount - 1][i]);
173
174 // Finish with single byte nops.
175 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
176 OW->Write8(0x90);
177
178 return true;
179}
180
Daniel Dunbar82968002010-03-23 01:39:09 +0000181/* *** */
182
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000183class ELFX86AsmBackend : public X86AsmBackend {
184public:
185 ELFX86AsmBackend(const Target &T)
186 : X86AsmBackend(T) {
187 HasAbsolutizedSet = true;
188 HasScatteredSymbols = true;
189 }
190
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000191 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
192 return 0;
193 }
194
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000195 bool isVirtualSection(const MCSection &Section) const {
196 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
197 return SE.getType() == MCSectionELF::SHT_NOBITS;;
198 }
199};
200
Matt Fleming7efaef62010-05-21 11:39:07 +0000201class ELFX86_32AsmBackend : public ELFX86AsmBackend {
202public:
203 ELFX86_32AsmBackend(const Target &T)
204 : ELFX86AsmBackend(T) {}
205};
206
207class ELFX86_64AsmBackend : public ELFX86AsmBackend {
208public:
209 ELFX86_64AsmBackend(const Target &T)
210 : ELFX86AsmBackend(T) {}
211};
212
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000213class DarwinX86AsmBackend : public X86AsmBackend {
214public:
215 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000216 : X86AsmBackend(T) {
217 HasAbsolutizedSet = true;
218 HasScatteredSymbols = true;
219 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000220
221 bool isVirtualSection(const MCSection &Section) const {
222 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
223 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000224 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
225 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000226 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000227};
228
Daniel Dunbard6e59082010-03-15 21:56:50 +0000229class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
230public:
231 DarwinX86_32AsmBackend(const Target &T)
232 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000233
234 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
235 return new MachObjectWriter(OS, /*Is64Bit=*/false);
236 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000237};
238
239class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
240public:
241 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000242 : DarwinX86AsmBackend(T) {
243 HasReliableSymbolDifference = true;
244 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000245
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000246 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
247 return new MachObjectWriter(OS, /*Is64Bit=*/true);
248 }
249
Daniel Dunbard6e59082010-03-15 21:56:50 +0000250 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
251 // Temporary labels in the string literals sections require symbols. The
252 // issue is that the x86_64 relocation format does not allow symbol +
253 // offset, and so the linker does not have enough information to resolve the
254 // access to the appropriate atom unless an external relocation is used. For
255 // non-cstring sections, we expect the compiler to use a non-temporary label
256 // for anything that could have an addend pointing outside the symbol.
257 //
258 // See <rdar://problem/4765733>.
259 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
260 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
261 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000262
263 virtual bool isSectionAtomizable(const MCSection &Section) const {
264 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
265 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
266 switch (SMO.getType()) {
267 default:
268 return true;
269
270 case MCSectionMachO::S_4BYTE_LITERALS:
271 case MCSectionMachO::S_8BYTE_LITERALS:
272 case MCSectionMachO::S_16BYTE_LITERALS:
273 case MCSectionMachO::S_LITERAL_POINTERS:
274 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
275 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
276 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
277 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
278 case MCSectionMachO::S_INTERPOSING:
279 return false;
280 }
281 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000282};
283
Daniel Dunbar12783d12010-02-21 21:54:14 +0000284}
285
286TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000287 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000288 switch (Triple(TT).getOS()) {
289 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000290 return new DarwinX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000291 default:
Matt Fleming7efaef62010-05-21 11:39:07 +0000292 return new ELFX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000293 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000294}
295
296TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000297 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000298 switch (Triple(TT).getOS()) {
299 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000300 return new DarwinX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000301 default:
Matt Fleming7efaef62010-05-21 11:39:07 +0000302 return new ELFX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000303 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000304}