blob: 83fca5141e19ee0c3c9c7d3779cd34a7edbe318f [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"
Daniel Dunbar82968002010-03-23 01:39:09 +000023#include "llvm/Support/ErrorHandling.h"
24#include "llvm/Support/raw_ostream.h"
Daniel Dunbar12783d12010-02-21 21:54:14 +000025#include "llvm/Target/TargetRegistry.h"
26#include "llvm/Target/TargetAsmBackend.h"
27using namespace llvm;
28
Daniel Dunbar12783d12010-02-21 21:54:14 +000029
Daniel Dunbar87190c42010-03-19 09:28:12 +000030static unsigned getFixupKindLog2Size(unsigned Kind) {
31 switch (Kind) {
32 default: assert(0 && "invalid fixup kind!");
33 case X86::reloc_pcrel_1byte:
34 case FK_Data_1: return 0;
Chris Lattner9fc05222010-07-07 22:27:31 +000035 case X86::reloc_pcrel_2byte:
Daniel Dunbar87190c42010-03-19 09:28:12 +000036 case FK_Data_2: return 1;
37 case X86::reloc_pcrel_4byte:
38 case X86::reloc_riprel_4byte:
39 case X86::reloc_riprel_4byte_movq_load:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +000040 case X86::reloc_signed_4byte:
Daniel Dunbar87190c42010-03-19 09:28:12 +000041 case FK_Data_4: return 2;
42 case FK_Data_8: return 3;
43 }
44}
45
Chris Lattner9fc05222010-07-07 22:27:31 +000046namespace {
Daniel Dunbar12783d12010-02-21 21:54:14 +000047class X86AsmBackend : public TargetAsmBackend {
48public:
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +000049 X86AsmBackend(const Target &T)
Daniel Dunbar12783d12010-02-21 21:54:14 +000050 : TargetAsmBackend(T) {}
Daniel Dunbar87190c42010-03-19 09:28:12 +000051
Daniel Dunbarc90e30a2010-05-26 15:18:56 +000052 void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF,
Daniel Dunbar87190c42010-03-19 09:28:12 +000053 uint64_t Value) const {
Daniel Dunbar482ad802010-05-26 15:18:31 +000054 unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
Daniel Dunbar87190c42010-03-19 09:28:12 +000055
Daniel Dunbar482ad802010-05-26 15:18:31 +000056 assert(Fixup.getOffset() + Size <= DF.getContents().size() &&
Daniel Dunbar87190c42010-03-19 09:28:12 +000057 "Invalid fixup offset!");
58 for (unsigned i = 0; i != Size; ++i)
Daniel Dunbar482ad802010-05-26 15:18:31 +000059 DF.getContents()[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
Daniel Dunbar87190c42010-03-19 09:28:12 +000060 }
Daniel Dunbar82968002010-03-23 01:39:09 +000061
Daniel Dunbar84882522010-05-26 17:45:29 +000062 bool MayNeedRelaxation(const MCInst &Inst) const;
Daniel Dunbar337055e2010-03-23 03:13:05 +000063
Daniel Dunbar95506d42010-05-26 18:15:06 +000064 void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +000065
66 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
Daniel Dunbar12783d12010-02-21 21:54:14 +000067};
Michael J. Spencerec38de22010-10-10 22:04:20 +000068} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +000069
Daniel Dunbar82968002010-03-23 01:39:09 +000070static unsigned getRelaxedOpcode(unsigned Op) {
71 switch (Op) {
72 default:
73 return Op;
74
Rafael Espindolaaa85c212010-10-18 18:36:12 +000075 // This is used on i386 with things like addl $foo, %ebx
76 // FIXME: Should the other *i8 instructions be here too? If not, it might
77 // be better to just select X86::ADD32ri instead of X86::ADD32ri8.
78 case X86::ADD32ri8: return X86::ADD32ri;
79
Daniel Dunbar82968002010-03-23 01:39:09 +000080 case X86::JAE_1: return X86::JAE_4;
81 case X86::JA_1: return X86::JA_4;
82 case X86::JBE_1: return X86::JBE_4;
83 case X86::JB_1: return X86::JB_4;
84 case X86::JE_1: return X86::JE_4;
85 case X86::JGE_1: return X86::JGE_4;
86 case X86::JG_1: return X86::JG_4;
87 case X86::JLE_1: return X86::JLE_4;
88 case X86::JL_1: return X86::JL_4;
89 case X86::JMP_1: return X86::JMP_4;
90 case X86::JNE_1: return X86::JNE_4;
91 case X86::JNO_1: return X86::JNO_4;
92 case X86::JNP_1: return X86::JNP_4;
93 case X86::JNS_1: return X86::JNS_4;
94 case X86::JO_1: return X86::JO_4;
95 case X86::JP_1: return X86::JP_4;
96 case X86::JS_1: return X86::JS_4;
97 }
98}
99
Daniel Dunbar84882522010-05-26 17:45:29 +0000100bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
101 // Check if this instruction is ever relaxable.
102 if (getRelaxedOpcode(Inst.getOpcode()) == Inst.getOpcode())
103 return false;
Daniel Dunbar482ad802010-05-26 15:18:31 +0000104
Daniel Dunbar84882522010-05-26 17:45:29 +0000105 // If so, just assume it can be relaxed. Once we support relaxing more complex
106 // instructions we should check that the instruction actually has symbolic
107 // operands before doing this, but we need to be careful about things like
108 // PCrel.
109 return true;
Daniel Dunbar337055e2010-03-23 03:13:05 +0000110}
111
Daniel Dunbar82968002010-03-23 01:39:09 +0000112// FIXME: Can tblgen help at all here to verify there aren't other instructions
113// we can relax?
Daniel Dunbar95506d42010-05-26 18:15:06 +0000114void X86AsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
Daniel Dunbar82968002010-03-23 01:39:09 +0000115 // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
Daniel Dunbar95506d42010-05-26 18:15:06 +0000116 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
Daniel Dunbar82968002010-03-23 01:39:09 +0000117
Daniel Dunbar95506d42010-05-26 18:15:06 +0000118 if (RelaxedOp == Inst.getOpcode()) {
Daniel Dunbar82968002010-03-23 01:39:09 +0000119 SmallString<256> Tmp;
120 raw_svector_ostream OS(Tmp);
Daniel Dunbar95506d42010-05-26 18:15:06 +0000121 Inst.dump_pretty(OS);
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000122 OS << "\n";
Chris Lattner75361b62010-04-07 22:58:41 +0000123 report_fatal_error("unexpected instruction to relax: " + OS.str());
Daniel Dunbar82968002010-03-23 01:39:09 +0000124 }
125
Daniel Dunbar95506d42010-05-26 18:15:06 +0000126 Res = Inst;
Daniel Dunbar82968002010-03-23 01:39:09 +0000127 Res.setOpcode(RelaxedOp);
128}
129
Daniel Dunbar8f9b80e2010-03-23 02:36:58 +0000130/// WriteNopData - Write optimal nops to the output file for the \arg Count
131/// bytes. This returns the number of bytes written. It may return 0 if
132/// the \arg Count is more than the maximum optimal nops.
133///
134/// FIXME this is X86 32-bit specific and should move to a better place.
135bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
136 static const uint8_t Nops[16][16] = {
137 // nop
138 {0x90},
139 // xchg %ax,%ax
140 {0x66, 0x90},
141 // nopl (%[re]ax)
142 {0x0f, 0x1f, 0x00},
143 // nopl 0(%[re]ax)
144 {0x0f, 0x1f, 0x40, 0x00},
145 // nopl 0(%[re]ax,%[re]ax,1)
146 {0x0f, 0x1f, 0x44, 0x00, 0x00},
147 // nopw 0(%[re]ax,%[re]ax,1)
148 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
149 // nopl 0L(%[re]ax)
150 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
151 // nopl 0L(%[re]ax,%[re]ax,1)
152 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
153 // nopw 0L(%[re]ax,%[re]ax,1)
154 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
155 // nopw %cs:0L(%[re]ax,%[re]ax,1)
156 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
157 // nopl 0(%[re]ax,%[re]ax,1)
158 // nopw 0(%[re]ax,%[re]ax,1)
159 {0x0f, 0x1f, 0x44, 0x00, 0x00,
160 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
161 // nopw 0(%[re]ax,%[re]ax,1)
162 // nopw 0(%[re]ax,%[re]ax,1)
163 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
164 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
165 // nopw 0(%[re]ax,%[re]ax,1)
166 // nopl 0L(%[re]ax) */
167 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00,
168 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
169 // nopl 0L(%[re]ax)
170 // nopl 0L(%[re]ax)
171 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
172 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
173 // nopl 0L(%[re]ax)
174 // nopl 0L(%[re]ax,%[re]ax,1)
175 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00,
176 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}
177 };
178
179 // Write an optimal sequence for the first 15 bytes.
180 uint64_t OptimalCount = (Count < 16) ? Count : 15;
181 for (uint64_t i = 0, e = OptimalCount; i != e; i++)
182 OW->Write8(Nops[OptimalCount - 1][i]);
183
184 // Finish with single byte nops.
185 for (uint64_t i = OptimalCount, e = Count; i != e; ++i)
186 OW->Write8(0x90);
187
188 return true;
189}
190
Daniel Dunbar82968002010-03-23 01:39:09 +0000191/* *** */
192
Chris Lattner9fc05222010-07-07 22:27:31 +0000193namespace {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000194class ELFX86AsmBackend : public X86AsmBackend {
Rafael Espindolaf230df92010-10-16 18:23:53 +0000195 MCELFObjectFormat Format;
196
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000197public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000198 Triple::OSType OSType;
199 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
200 : X86AsmBackend(T), OSType(_OSType) {
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000201 HasScatteredSymbols = true;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000202 HasReliableSymbolDifference = true;
203 }
204
Rafael Espindolaf230df92010-10-16 18:23:53 +0000205 virtual const MCObjectFormat &getObjectFormat() const {
206 return Format;
207 }
208
Rafael Espindola73ffea42010-09-25 05:42:19 +0000209 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
210 const MCSectionELF &ES = static_cast<const MCSectionELF&>(Section);
211 return ES.getFlags() & MCSectionELF::SHF_MERGE;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000212 }
213
214 bool isVirtualSection(const MCSection &Section) const {
215 const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section);
Roman Divacky5baf79e2010-09-09 17:57:50 +0000216 return SE.getType() == MCSectionELF::SHT_NOBITS;
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000217 }
218};
219
Matt Fleming7efaef62010-05-21 11:39:07 +0000220class ELFX86_32AsmBackend : public ELFX86AsmBackend {
221public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000222 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
223 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000224
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000225 unsigned getPointerSize() const {
226 return 4;
227 }
228
Matt Fleming453db502010-08-16 18:36:14 +0000229 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
230 return new ELFObjectWriter(OS, /*Is64Bit=*/false,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000231 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000232 /*IsLittleEndian=*/true,
233 /*HasRelocationAddend=*/false);
234 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000235};
236
237class ELFX86_64AsmBackend : public ELFX86AsmBackend {
238public:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000239 ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType)
240 : ELFX86AsmBackend(T, OSType) {}
Matt Fleming453db502010-08-16 18:36:14 +0000241
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000242 unsigned getPointerSize() const {
243 return 8;
244 }
245
Matt Fleming453db502010-08-16 18:36:14 +0000246 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
247 return new ELFObjectWriter(OS, /*Is64Bit=*/true,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000248 OSType,
Matt Fleming453db502010-08-16 18:36:14 +0000249 /*IsLittleEndian=*/true,
250 /*HasRelocationAddend=*/true);
251 }
Matt Fleming7efaef62010-05-21 11:39:07 +0000252};
253
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000254class WindowsX86AsmBackend : public X86AsmBackend {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000255 bool Is64Bit;
Rafael Espindolaf230df92010-10-16 18:23:53 +0000256 MCCOFFObjectFormat Format;
257
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000258public:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000259 WindowsX86AsmBackend(const Target &T, bool is64Bit)
260 : X86AsmBackend(T)
261 , Is64Bit(is64Bit) {
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000262 HasScatteredSymbols = true;
263 }
264
Rafael Espindolaf230df92010-10-16 18:23:53 +0000265 virtual const MCObjectFormat &getObjectFormat() const {
266 return Format;
267 }
268
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000269 unsigned getPointerSize() const {
270 if (Is64Bit)
271 return 8;
272 else
273 return 4;
274 }
275
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000276 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000277 return createWinCOFFObjectWriter(OS, Is64Bit);
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000278 }
279
280 bool isVirtualSection(const MCSection &Section) const {
281 const MCSectionCOFF &SE = static_cast<const MCSectionCOFF&>(Section);
282 return SE.getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
283 }
284};
285
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000286class DarwinX86AsmBackend : public X86AsmBackend {
Rafael Espindolaf230df92010-10-16 18:23:53 +0000287 MCMachOObjectFormat Format;
288
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000289public:
290 DarwinX86AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000291 : X86AsmBackend(T) {
Daniel Dunbar06829512010-03-18 00:58:53 +0000292 HasScatteredSymbols = true;
293 }
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000294
Rafael Espindolaf230df92010-10-16 18:23:53 +0000295 virtual const MCObjectFormat &getObjectFormat() const {
296 return Format;
297 }
298
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000299 bool isVirtualSection(const MCSection &Section) const {
300 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
301 return (SMO.getType() == MCSectionMachO::S_ZEROFILL ||
Eric Christopher423c9e32010-05-17 21:02:07 +0000302 SMO.getType() == MCSectionMachO::S_GB_ZEROFILL ||
303 SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL);
Daniel Dunbarcc5b84c2010-03-19 09:29:03 +0000304 }
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000305};
306
Daniel Dunbard6e59082010-03-15 21:56:50 +0000307class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
308public:
309 DarwinX86_32AsmBackend(const Target &T)
310 : DarwinX86AsmBackend(T) {}
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000311
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000312 unsigned getPointerSize() const {
313 return 4;
314 }
315
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000316 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
317 return new MachObjectWriter(OS, /*Is64Bit=*/false);
318 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000319};
320
321class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
322public:
323 DarwinX86_64AsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +0000324 : DarwinX86AsmBackend(T) {
325 HasReliableSymbolDifference = true;
326 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000327
Kevin Enderby8ebf6622010-09-30 16:38:07 +0000328 unsigned getPointerSize() const {
329 return 8;
330 }
331
Daniel Dunbar1a9158c2010-03-19 10:43:26 +0000332 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
333 return new MachObjectWriter(OS, /*Is64Bit=*/true);
334 }
335
Daniel Dunbard6e59082010-03-15 21:56:50 +0000336 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
337 // Temporary labels in the string literals sections require symbols. The
338 // issue is that the x86_64 relocation format does not allow symbol +
339 // offset, and so the linker does not have enough information to resolve the
340 // access to the appropriate atom unless an external relocation is used. For
341 // non-cstring sections, we expect the compiler to use a non-temporary label
342 // for anything that could have an addend pointing outside the symbol.
343 //
344 // See <rdar://problem/4765733>.
345 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
346 return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS;
347 }
Daniel Dunbara5f1d572010-05-12 00:38:17 +0000348
349 virtual bool isSectionAtomizable(const MCSection &Section) const {
350 const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
351 // Fixed sized data sections are uniqued, they cannot be diced into atoms.
352 switch (SMO.getType()) {
353 default:
354 return true;
355
356 case MCSectionMachO::S_4BYTE_LITERALS:
357 case MCSectionMachO::S_8BYTE_LITERALS:
358 case MCSectionMachO::S_16BYTE_LITERALS:
359 case MCSectionMachO::S_LITERAL_POINTERS:
360 case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS:
361 case MCSectionMachO::S_LAZY_SYMBOL_POINTERS:
362 case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS:
363 case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS:
364 case MCSectionMachO::S_INTERPOSING:
365 return false;
366 }
367 }
Daniel Dunbard6e59082010-03-15 21:56:50 +0000368};
369
Michael J. Spencerec38de22010-10-10 22:04:20 +0000370} // end anonymous namespace
Daniel Dunbar12783d12010-02-21 21:54:14 +0000371
372TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000373 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000374 switch (Triple(TT).getOS()) {
375 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000376 return new DarwinX86_32AsmBackend(T);
Benjamin Kramer56d23942010-08-04 15:32:40 +0000377 case Triple::MinGW32:
378 case Triple::Cygwin:
Michael J. Spencerdfd30182010-07-27 06:46:15 +0000379 case Triple::Win32:
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000380 return new WindowsX86AsmBackend(T, false);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000381 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000382 return new ELFX86_32AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000383 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000384}
385
386TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
Daniel Dunbar6c27f5e2010-03-11 01:34:16 +0000387 const std::string &TT) {
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000388 switch (Triple(TT).getOS()) {
389 case Triple::Darwin:
Daniel Dunbard6e59082010-03-15 21:56:50 +0000390 return new DarwinX86_64AsmBackend(T);
Michael J. Spencerda0bfcd2010-08-21 05:58:13 +0000391 case Triple::MinGW64:
392 case Triple::Cygwin:
393 case Triple::Win32:
394 return new WindowsX86AsmBackend(T, true);
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000395 default:
Roman Divacky5baf79e2010-09-09 17:57:50 +0000396 return new ELFX86_64AsmBackend(T, Triple(TT).getOS());
Daniel Dunbar23ac7c72010-03-11 01:34:21 +0000397 }
Daniel Dunbar12783d12010-02-21 21:54:14 +0000398}