blob: 17db41a76bb7cf113eb49aab068537d9018f4599 [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"
Rafael Espindolaf230df92010-10-16 18:23:53 +000017#include "llvm/MC/MCObjectFormat.h"
Daniel Dunbar337055e2010-03-23 03:13:05 +000018#include "llvm/MC/MCObjectWriter.h"
Michael J. Spencerdfd30182010-07-27 06:46:15 +000019#include "llvm/MC/MCSectionCOFF.h"
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +000020#include "llvm/MC/MCSectionELF.h"
Daniel Dunbard6e59082010-03-15 21:56:50 +000021#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar1a9158c2010-03-19 10:43:26 +000022#include "llvm/MC/MachObjectWriter.h"
Wesley Peckeecb8582010-10-22 15:52:49 +000023#include "llvm/Support/ELF.h"
Daniel Dunbar82968002010-03-23 01:39:09 +000024#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/raw_ostream.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000026#include "llvm/Target/TargetRegistry.h"
27#include "llvm/Target/TargetAsmBackend.h"
28using namespace llvm;
29
Daniel Dunbar12783d12010-02-21 21:54:14 +000030
Daniel Dunbar87190c42010-03-19 09:28:12 +000031static unsigned getFixupKindLog2Size(unsigned Kind) {
32 switch (Kind) {
33 default: assert(0 && "invalid fixup kind!");
34 case X86::reloc_pcrel_1byte:
35 case FK_Data_1: return 0;
Chris Lattner9fc05222010-07-07 22:27:31 +000036 case X86::reloc_pcrel_2byte:
Daniel Dunbar87190c42010-03-19 09:28:12 +000037 case FK_Data_2: return 1;
38 case X86::reloc_pcrel_4byte:
39 case X86::reloc_riprel_4byte:
40 case X86::reloc_riprel_4byte_movq_load:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +000041 case X86::reloc_signed_4byte:
Daniel Dunbar87190c42010-03-19 09:28:12 +000042 case FK_Data_4: return 2;
43 case FK_Data_8: return 3;
44 }
45}
46
Chris Lattner9fc05222010-07-07 22:27:31 +000047namespace {
Daniel Dunbar12783d12010-02-21 21:54:14 +000048class X86AsmBackend : public TargetAsmBackend {
49public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000050 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000051 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000052
Daniel Dunbarc90e30a2010-05-26 15:18:56 +000053 void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
Daniel Dunbar87190c42010-03-19 09:28:12 +000054 uint64_t Value) const {
Daniel Dunbar482ad802010-05-26 15:18:31 +000055 unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar87190c42010-03-19 09:28:12 +000056
Daniel Dunbar482ad802010-05-26 15:18:31 +000057 assert(Fixup.getOffset() + Size <= DF.getContents().size() &&
Daniel Dunbar87190c42010-03-19 09:28:12 +000058 "Invalid fixup offset!");
59 for (unsigned i = 0; i != Size; ++i)
Daniel Dunbar482ad802010-05-26 15:18:31 +000060 DF.getContents()[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
Daniel Dunbar87190c42010-03-19 09:28:12 +000061 }
Daniel Dunbar82968002010-03-23 01:39:09 +000062
Daniel Dunbar84882522010-05-26 17:45:29 +000063 bool MayNeedRelaxation(const MCInst &Inst) const;
Daniel Dunbar337055e2010-03-23 03:13:05 +000064
Daniel Dunbar95506d42010-05-26 18:15:06 +000065 void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +000066
67 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000068};
Michael J. Spencerec38de22010-10-10 22:04:20 +000069} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +000070
Daniel Dunbar82968002010-03-23 01:39:09 +000071static unsigned getRelaxedOpcode(unsigned Op) {
72 switch (Op) {
73 default:
74 return Op;
75
Rafael Espindolaaa85c212010-10-18 18:36:12 +000076 // This is used on i386 with things like addl $foo, %ebx
77 // FIXME: Should the other *i8 instructions be here too? If not, it might
78 // be better to just select X86::ADD32ri instead of X86::ADD32ri8.
79 case X86::ADD32ri8: return X86::ADD32ri;
80
Daniel Dunbar82968002010-03-23 01:39:09 +000081 case X86::JAE_1: return X86::JAE_4;
82 case X86::JA_1: return X86::JA_4;
83 case X86::JBE_1: return X86::JBE_4;
84 case X86::JB_1: return X86::JB_4;
85 case X86::JE_1: return X86::JE_4;
86 case X86::JGE_1: return X86::JGE_4;
87 case X86::JG_1: return X86::JG_4;
88 case X86::JLE_1: return X86::JLE_4;
89 case X86::JL_1: return X86::JL_4;
90 case X86::JMP_1: return X86::JMP_4;
91 case X86::JNE_1: return X86::JNE_4;
92 case X86::JNO_1: return X86::JNO_4;
93 case X86::JNP_1: return X86::JNP_4;
94 case X86::JNS_1: return X86::JNS_4;
95 case X86::JO_1: return X86::JO_4;
96 case X86::JP_1: return X86::JP_4;
97 case X86::JS_1: return X86::JS_4;
98 }
99}
100
Daniel Dunbar84882522010-05-26 17:45:29 +0000101bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
102 // Check if this instruction is ever relaxable.
103 if (getRelaxedOpcode(Inst.getOpcode()) == Inst.getOpcode())
104 return false;
Daniel Dunbar482ad802010-05-26 15:18:31 +0000105
Daniel Dunbar84882522010-05-26 17:45:29 +0000106 // If so, just assume it can be relaxed. Once we support relaxing more complex
107 // instructions we should check that the instruction actually has symbolic
108 // operands before doing this, but we need to be careful about things like
109 // PCrel.
110 return true;
Daniel Dunbar337055e2010-03-23 03:13:05 +0000111}
112
Daniel Dunbar82968002010-03-23 01:39:09 +0000113// FIXME: Can tblgen help at all here to verify there aren't other instructions
114// we can relax?
Daniel Dunbar95506d42010-05-26 18:15:06 +0000115void X86AsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
Daniel Dunbar82968002010-03-23 01:39:09 +0000116 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
Daniel Dunbar95506d42010-05-26 18:15:06 +0000117 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
Daniel Dunbar82968002010-03-23 01:39:09 +0000118
Daniel Dunbar95506d42010-05-26 18:15:06 +0000119 if (RelaxedOp == Inst.getOpcode()) {
Daniel Dunbar82968002010-03-23 01:39:09 +0000120 SmallString<256> Tmp;
121 raw_svector_ostream OS(Tmp);
Daniel Dunbar95506d42010-05-26 18:15:06 +0000122 Inst.dump_pretty(OS);
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000123 OS << "\n";
Chris Lattner75361b62010-04-07 22:58:41 +0000124 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000125 }
126
Daniel Dunbar95506d42010-05-26 18:15:06 +0000127 Res = Inst;
Daniel Dunbar82968002010-03-23 01:39:09 +0000128 Res.setOpcode(RelaxedOp);
129}
130
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000131/// WriteNopData - Write optimal nops to the output file for the \arg Count
132/// bytes. This returns the number of bytes written. It may return 0 if
133/// the \arg Count is more than the maximum optimal nops.
134///
135/// FIXME this is X86 32-bit specific and should move to a better place.
136bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
137 static const uint8_t Nops[16][16] = {
138 // nop
139 {0x90},
140 // xchg %ax,%ax
141 {0x66, 0x90},
142 // nopl (%[re]ax)
143 {0x0f, 0x1f, 0x00},
144 // nopl 0(%[re]ax)
145 {0x0f, 0x1f, 0x40, 0x00},
146 // nopl 0(%[re]ax,%[re]ax,1)
147 {0x0f, 0x1f, 0x44, 0x00, 0x00},
148 // nopw 0(%[re]ax,%[re]ax,1)
149 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
150 // nopl 0L(%[re]ax)
151 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
152 // nopl 0L(%[re]ax,%[re]ax,1)
153 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
154 // nopw 0L(%[re]ax,%[re]ax,1)
155 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
156 // nopw %cs:0L(%[re]ax,%[re]ax,1)
157 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
158 // nopl 0(%[re]ax,%[re]ax,1)
159 // nopw 0(%[re]ax,%[re]ax,1)
160 {0x0f, 0x1f, 0x44, 0x00, 0x00,
161 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
162 // nopw 0(%[re]ax,%[re]ax,1)
163 // nopw 0(%[re]ax,%[re]ax,1)
164 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
165 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
166 // nopw 0(%[re]ax,%[re]ax,1)
167 // nopl 0L(%[re]ax) */
168 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
169 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
170 // nopl 0L(%[re]ax)
171 // nopl 0L(%[re]ax)
172 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
173 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
174 // nopl 0L(%[re]ax)
175 // nopl 0L(%[re]ax,%[re]ax,1)
176 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
177 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
178 };
179
180 // Write an optimal sequence for the first 15 bytes.
181 uint64_t OptimalCount = (Count < 16) ? Count : 15;
182 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
183 OW->Write8(Nops[OptimalCount - 1][i]);
184
185 // Finish with single byte nops.
186 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
187 OW->Write8(0x90);
188
189 return true;
190}
191
Daniel Dunbar82968002010-03-23 01:39:09 +0000192/* *** */
193
Chris Lattner9fc05222010-07-07 22:27:31 +0000194namespace {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000195class ELFX86AsmBackend : public X86AsmBackend {
Rafael Espindolaf230df92010-10-16 18:23:53 +0000196 MCELFObjectFormat Format;
197
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000198public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000199 Triple::OSType OSType;
200 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
201 : X86AsmBackend(T), OSType(_OSType) {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000202 HasScatteredSymbols = true;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000203 HasReliableSymbolDifference = true;
204 }
205
Rafael Espindolaf230df92010-10-16 18:23:53 +0000206 virtual const MCObjectFormat &getObjectFormat() const {
207 return Format;
208 }
209
Rafael Espindola73ffea42010-09-25 05:42:19 +0000210 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
211 const MCSectionELF &ES = static_cast<const MCSectionELF&>(Section);
212 return ES.getFlags() & MCSectionELF::SHF_MERGE;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000213 }
214
215 bool isVirtualSection(const MCSection &Section) const {
216 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
Roman Divacky5baf79e2010-09-09 17:57:50 +0000217 return SE.getType() == MCSectionELF::SHT_NOBITS;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000218 }
219};
220
Matt Fleming7efaef62010-05-21 11:39:07 +0000221class ELFX86_32AsmBackend : public ELFX86AsmBackend {
222public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000223 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
224 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000225
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000226 unsigned getPointerSize() const {
227 return 4;
228 }
229
Matt Fleming453db502010-08-16 18:36:14 +0000230 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
231 return new ELFObjectWriter(OS, /*Is64Bit=*/false,
Wesley Peckeecb8582010-10-22 15:52:49 +0000232 OSType, ELF::EM_386,
Matt Fleming453db502010-08-16 18:36:14 +0000233 /*IsLittleEndian=*/true,
234 /*HasRelocationAddend=*/false);
235 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000236};
237
238class ELFX86_64AsmBackend : public ELFX86AsmBackend {
239public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000240 ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType)
241 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000242
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000243 unsigned getPointerSize() const {
244 return 8;
245 }
246
Matt Fleming453db502010-08-16 18:36:14 +0000247 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
248 return new ELFObjectWriter(OS, /*Is64Bit=*/true,
Wesley Peckeecb8582010-10-22 15:52:49 +0000249 OSType, ELF::EM_X86_64,
Matt Fleming453db502010-08-16 18:36:14 +0000250 /*IsLittleEndian=*/true,
251 /*HasRelocationAddend=*/true);
252 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000253};
254
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000255class WindowsX86AsmBackend : public X86AsmBackend {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000256 bool Is64Bit;
Rafael Espindolaf230df92010-10-16 18:23:53 +0000257 MCCOFFObjectFormat Format;
258
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000259public:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000260 WindowsX86AsmBackend(const Target &T, bool is64Bit)
261 : X86AsmBackend(T)
262 , Is64Bit(is64Bit) {
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000263 HasScatteredSymbols = true;
264 }
265
Rafael Espindolaf230df92010-10-16 18:23:53 +0000266 virtual const MCObjectFormat &getObjectFormat() const {
267 return Format;
268 }
269
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000270 unsigned getPointerSize() const {
271 if (Is64Bit)
272 return 8;
273 else
274 return 4;
275 }
276
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000277 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000278 return createWinCOFFObjectWriter(OS, Is64Bit);
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000279 }
280
281 bool isVirtualSection(const MCSection &Section) const {
282 const MCSectionCOFF &SE = static_cast<const MCSectionCOFF&>(Section);
283 return SE.getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
284 }
285};
286
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000287class DarwinX86AsmBackend : public X86AsmBackend {
Rafael Espindolaf230df92010-10-16 18:23:53 +0000288 MCMachOObjectFormat Format;
289
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000290public:
291 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000292 : X86AsmBackend(T) {
Daniel Dunbar06829512010-03-18 00:58:53 +0000293 HasScatteredSymbols = true;
294 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000295
Rafael Espindolaf230df92010-10-16 18:23:53 +0000296 virtual const MCObjectFormat &getObjectFormat() const {
297 return Format;
298 }
299
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000300 bool isVirtualSection(const MCSection &Section) const {
301 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
302 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000303 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
304 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000305 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000306};
307
Daniel Dunbard6e59082010-03-15 21:56:50 +0000308class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
309public:
310 DarwinX86_32AsmBackend(const Target &T)
311 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000312
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000313 unsigned getPointerSize() const {
314 return 4;
315 }
316
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000317 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
318 return new MachObjectWriter(OS, /*Is64Bit=*/false);
319 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000320};
321
322class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
323public:
324 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000325 : DarwinX86AsmBackend(T) {
326 HasReliableSymbolDifference = true;
327 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000328
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000329 unsigned getPointerSize() const {
330 return 8;
331 }
332
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000333 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
334 return new MachObjectWriter(OS, /*Is64Bit=*/true);
335 }
336
Daniel Dunbard6e59082010-03-15 21:56:50 +0000337 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
338 // Temporary labels in the string literals sections require symbols. The
339 // issue is that the x86_64 relocation format does not allow symbol +
340 // offset, and so the linker does not have enough information to resolve the
341 // access to the appropriate atom unless an external relocation is used. For
342 // non-cstring sections, we expect the compiler to use a non-temporary label
343 // for anything that could have an addend pointing outside the symbol.
344 //
345 // See <rdar://problem/4765733>.
346 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
347 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
348 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000349
350 virtual bool isSectionAtomizable(const MCSection &Section) const {
351 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
352 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
353 switch (SMO.getType()) {
354 default:
355 return true;
356
357 case MCSectionMachO::S_4BYTE_LITERALS:
358 case MCSectionMachO::S_8BYTE_LITERALS:
359 case MCSectionMachO::S_16BYTE_LITERALS:
360 case MCSectionMachO::S_LITERAL_POINTERS:
361 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
362 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
363 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
364 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
365 case MCSectionMachO::S_INTERPOSING:
366 return false;
367 }
368 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000369};
370
Michael J. Spencerec38de22010-10-10 22:04:20 +0000371} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +0000372
373TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000374 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000375 switch (Triple(TT).getOS()) {
376 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000377 return new DarwinX86_32AsmBackend(T);
Benjamin Kramer56d23942010-08-04 15:32:40 +0000378 case Triple::MinGW32:
379 case Triple::Cygwin:
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000380 case Triple::Win32:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000381 return new WindowsX86AsmBackend(T, false);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000382 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000383 return new ELFX86_32AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000384 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000385}
386
387TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000388 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000389 switch (Triple(TT).getOS()) {
390 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000391 return new DarwinX86_64AsmBackend(T);
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000392 case Triple::MinGW64:
393 case Triple::Cygwin:
394 case Triple::Win32:
395 return new WindowsX86AsmBackend(T, true);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000396 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000397 return new ELFX86_64AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000398 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000399}