blob: ba9c1d0588e3d512a646013a27a1a4d489908dda [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 Dunbar337055e2010-03-23 03:13:05 +000015#include "llvm/MC/MCObjectWriter.h"
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +000016#include "llvm/MC/MCSectionELF.h"
Daniel Dunbard6e59082010-03-15 21:56:50 +000017#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar1a9158c2010-03-19 10:43:26 +000018#include "llvm/MC/MachObjectWriter.h"
Daniel Dunbar82968002010-03-23 01:39:09 +000019#include "llvm/Support/ErrorHandling.h"
20#include "llvm/Support/raw_ostream.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000021#include "llvm/Target/TargetRegistry.h"
22#include "llvm/Target/TargetAsmBackend.h"
23using namespace llvm;
24
25namespace {
26
Daniel Dunbar87190c42010-03-19 09:28:12 +000027static unsigned getFixupKindLog2Size(unsigned Kind) {
28 switch (Kind) {
29 default: assert(0 && "invalid fixup kind!");
30 case X86::reloc_pcrel_1byte:
31 case FK_Data_1: return 0;
32 case FK_Data_2: return 1;
33 case X86::reloc_pcrel_4byte:
34 case X86::reloc_riprel_4byte:
35 case X86::reloc_riprel_4byte_movq_load:
36 case FK_Data_4: return 2;
37 case FK_Data_8: return 3;
38 }
39}
40
Daniel Dunbar12783d12010-02-21 21:54:14 +000041class X86AsmBackend : public TargetAsmBackend {
42public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000043 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000044 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000045
46 void ApplyFixup(const MCAsmFixup &Fixup, MCDataFragment &DF,
47 uint64_t Value) const {
48 unsigned Size = 1 << getFixupKindLog2Size(Fixup.Kind);
49
50 assert(Fixup.Offset + Size <= DF.getContents().size() &&
51 "Invalid fixup offset!");
52 for (unsigned i = 0; i != Size; ++i)
53 DF.getContents()[Fixup.Offset + i] = uint8_t(Value >> (i * 8));
54 }
Daniel Dunbar82968002010-03-23 01:39:09 +000055
Daniel Dunbar337055e2010-03-23 03:13:05 +000056 bool MayNeedRelaxation(const MCInst &Inst,
57 const SmallVectorImpl<MCAsmFixup> &Fixups) const;
58
Daniel Dunbar82968002010-03-23 01:39:09 +000059 void RelaxInstruction(const MCInstFragment *IF, 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;
78 case X86::JMP_1: return X86::JMP_4;
79 case X86::JNE_1: return X86::JNE_4;
80 case X86::JNO_1: return X86::JNO_4;
81 case X86::JNP_1: return X86::JNP_4;
82 case X86::JNS_1: return X86::JNS_4;
83 case X86::JO_1: return X86::JO_4;
84 case X86::JP_1: return X86::JP_4;
85 case X86::JS_1: return X86::JS_4;
86 }
87}
88
Daniel Dunbar337055e2010-03-23 03:13:05 +000089bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst,
90 const SmallVectorImpl<MCAsmFixup> &Fixups) const {
91 // Check for a 1byte pcrel fixup, and enforce that we would know how to relax
92 // this instruction.
93 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
94 if (unsigned(Fixups[i].Kind) == X86::reloc_pcrel_1byte) {
95 assert(getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode());
96 return true;
97 }
98 }
99
100 return false;
101}
102
Daniel Dunbar82968002010-03-23 01:39:09 +0000103// FIXME: Can tblgen help at all here to verify there aren't other instructions
104// we can relax?
105void X86AsmBackend::RelaxInstruction(const MCInstFragment *IF,
106 MCInst &Res) const {
107 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
108 unsigned RelaxedOp = getRelaxedOpcode(IF->getInst().getOpcode());
109
110 if (RelaxedOp == IF->getInst().getOpcode()) {
111 SmallString<256> Tmp;
112 raw_svector_ostream OS(Tmp);
113 IF->getInst().dump_pretty(OS);
Chris Lattner75361b62010-04-07 22:58:41 +0000114 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000115 }
116
117 Res = IF->getInst();
118 Res.setOpcode(RelaxedOp);
119}
120
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000121/// WriteNopData - Write optimal nops to the output file for the \arg Count
122/// bytes. This returns the number of bytes written. It may return 0 if
123/// the \arg Count is more than the maximum optimal nops.
124///
125/// FIXME this is X86 32-bit specific and should move to a better place.
126bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
127 static const uint8_t Nops[16][16] = {
128 // nop
129 {0x90},
130 // xchg %ax,%ax
131 {0x66, 0x90},
132 // nopl (%[re]ax)
133 {0x0f, 0x1f, 0x00},
134 // nopl 0(%[re]ax)
135 {0x0f, 0x1f, 0x40, 0x00},
136 // nopl 0(%[re]ax,%[re]ax,1)
137 {0x0f, 0x1f, 0x44, 0x00, 0x00},
138 // nopw 0(%[re]ax,%[re]ax,1)
139 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
140 // nopl 0L(%[re]ax)
141 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
142 // nopl 0L(%[re]ax,%[re]ax,1)
143 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
144 // nopw 0L(%[re]ax,%[re]ax,1)
145 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
146 // nopw %cs:0L(%[re]ax,%[re]ax,1)
147 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
148 // nopl 0(%[re]ax,%[re]ax,1)
149 // nopw 0(%[re]ax,%[re]ax,1)
150 {0x0f, 0x1f, 0x44, 0x00, 0x00,
151 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
152 // nopw 0(%[re]ax,%[re]ax,1)
153 // nopw 0(%[re]ax,%[re]ax,1)
154 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
155 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
156 // nopw 0(%[re]ax,%[re]ax,1)
157 // nopl 0L(%[re]ax) */
158 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
159 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
160 // nopl 0L(%[re]ax)
161 // nopl 0L(%[re]ax)
162 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
163 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
164 // nopl 0L(%[re]ax)
165 // nopl 0L(%[re]ax,%[re]ax,1)
166 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
167 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
168 };
169
170 // Write an optimal sequence for the first 15 bytes.
171 uint64_t OptimalCount = (Count < 16) ? Count : 15;
172 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
173 OW->Write8(Nops[OptimalCount - 1][i]);
174
175 // Finish with single byte nops.
176 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
177 OW->Write8(0x90);
178
179 return true;
180}
181
Daniel Dunbar82968002010-03-23 01:39:09 +0000182/* *** */
183
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000184class ELFX86AsmBackend : public X86AsmBackend {
185public:
186 ELFX86AsmBackend(const Target &T)
187 : X86AsmBackend(T) {
188 HasAbsolutizedSet = true;
189 HasScatteredSymbols = true;
190 }
191
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000192 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
193 return 0;
194 }
195
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000196 bool isVirtualSection(const MCSection &Section) const {
197 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
198 return SE.getType() == MCSectionELF::SHT_NOBITS;;
199 }
200};
201
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000202class DarwinX86AsmBackend : public X86AsmBackend {
203public:
204 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000205 : X86AsmBackend(T) {
206 HasAbsolutizedSet = true;
207 HasScatteredSymbols = true;
208 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000209
210 bool isVirtualSection(const MCSection &Section) const {
211 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
212 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
213 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL);
214 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000215};
216
Daniel Dunbard6e59082010-03-15 21:56:50 +0000217class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
218public:
219 DarwinX86_32AsmBackend(const Target &T)
220 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000221
222 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
223 return new MachObjectWriter(OS, /*Is64Bit=*/false);
224 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000225};
226
227class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
228public:
229 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000230 : DarwinX86AsmBackend(T) {
231 HasReliableSymbolDifference = true;
232 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000233
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000234 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
235 return new MachObjectWriter(OS, /*Is64Bit=*/true);
236 }
237
Daniel Dunbard6e59082010-03-15 21:56:50 +0000238 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
239 // Temporary labels in the string literals sections require symbols. The
240 // issue is that the x86_64 relocation format does not allow symbol +
241 // offset, and so the linker does not have enough information to resolve the
242 // access to the appropriate atom unless an external relocation is used. For
243 // non-cstring sections, we expect the compiler to use a non-temporary label
244 // for anything that could have an addend pointing outside the symbol.
245 //
246 // See <rdar://problem/4765733>.
247 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
248 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
249 }
250};
251
Daniel Dunbar12783d12010-02-21 21:54:14 +0000252}
253
254TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000255 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000256 switch (Triple(TT).getOS()) {
257 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000258 return new DarwinX86_32AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000259 default:
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000260 return new ELFX86AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000261 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000262}
263
264TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000265 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000266 switch (Triple(TT).getOS()) {
267 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000268 return new DarwinX86_64AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000269 default:
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000270 return new ELFX86AsmBackend(T);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000271 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000272}