blob: 1f1b334ea4225f62b59e19ff09f7d1a21ebcebb5 [file] [log] [blame]
Jason W Kimb3212452010-09-30 02:17:26 +00001//===-- ARMAsmBackend.cpp - ARM 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
Jim Grosbach45e50d82011-08-16 17:06:20 +000010#include "MCTargetDesc/ARMMCTargetDesc.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000011#include "MCTargetDesc/ARMAddressingModes.h"
Evan Chengad5f4852011-07-23 00:00:19 +000012#include "MCTargetDesc/ARMBaseInfo.h"
13#include "MCTargetDesc/ARMFixupKinds.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/MC/MCAsmBackend.h"
Jason W Kimb3212452010-09-30 02:17:26 +000015#include "llvm/MC/MCAssembler.h"
Jim Grosbache78031a2012-04-30 22:30:43 +000016#include "llvm/MC/MCContext.h"
Jim Grosbach87055ed2010-12-08 01:16:55 +000017#include "llvm/MC/MCDirectives.h"
Rafael Espindolaf0e24d42010-12-17 16:59:53 +000018#include "llvm/MC/MCELFObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000019#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000020#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbar73b87132010-12-16 16:08:33 +000021#include "llvm/MC/MCMachObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000022#include "llvm/MC/MCObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000023#include "llvm/MC/MCSectionELF.h"
24#include "llvm/MC/MCSectionMachO.h"
Jim Grosbach45e50d82011-08-16 17:06:20 +000025#include "llvm/MC/MCSubtargetInfo.h"
Jim Grosbach3b50c9e2012-01-18 00:23:57 +000026#include "llvm/MC/MCValue.h"
Daniel Dunbara5f50c12010-11-27 04:38:36 +000027#include "llvm/Object/MachOFormat.h"
Wesley Peck18510902010-10-22 15:52:49 +000028#include "llvm/Support/ELF.h"
Jason W Kimb3212452010-09-30 02:17:26 +000029#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/raw_ostream.h"
Jason W Kimb3212452010-09-30 02:17:26 +000031using namespace llvm;
32
33namespace {
Rafael Espindola6b5e56c2010-12-17 17:45:22 +000034class ARMELFObjectWriter : public MCELFObjectTargetWriter {
35public:
Rafael Espindola1ad40952011-12-21 17:00:36 +000036 ARMELFObjectWriter(uint8_t OSABI)
37 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSABI, ELF::EM_ARM,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +000038 /*HasRelocationAddend*/ false) {}
Rafael Espindola6b5e56c2010-12-17 17:45:22 +000039};
40
Evan Cheng5928e692011-07-25 23:24:55 +000041class ARMAsmBackend : public MCAsmBackend {
Jim Grosbach45e50d82011-08-16 17:06:20 +000042 const MCSubtargetInfo* STI;
Jim Grosbach87055ed2010-12-08 01:16:55 +000043 bool isThumbMode; // Currently emitting Thumb code.
Jason W Kimb3212452010-09-30 02:17:26 +000044public:
Jim Grosbach45e50d82011-08-16 17:06:20 +000045 ARMAsmBackend(const Target &T, const StringRef TT)
46 : MCAsmBackend(), STI(ARM_MC::createARMMCSubtargetInfo(TT, "", "")),
Jim Grosbach21a60b62011-08-24 22:27:35 +000047 isThumbMode(TT.startswith("thumb")) {}
Jim Grosbach45e50d82011-08-16 17:06:20 +000048
49 ~ARMAsmBackend() {
50 delete STI;
51 }
Jason W Kimb3212452010-09-30 02:17:26 +000052
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000053 unsigned getNumFixupKinds() const { return ARM::NumTargetFixupKinds; }
54
Jim Grosbach45e50d82011-08-16 17:06:20 +000055 bool hasNOP() const {
56 return (STI->getFeatureBits() & ARM::HasV6T2Ops) != 0;
57 }
58
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000059 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
60 const static MCFixupKindInfo Infos[ARM::NumTargetFixupKinds] = {
61// This table *must* be in the order that the fixup_* kinds are defined in
62// ARMFixupKinds.h.
63//
64// Name Offset (bits) Size (bits) Flags
Jim Grosbachd3f02cb2011-11-16 22:48:37 +000065{ "fixup_arm_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000066{ "fixup_t2_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
67 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jim Grosbach8648c102011-12-19 23:06:24 +000068{ "fixup_arm_pcrel_10_unscaled", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbachfb2f1d62011-11-01 01:24:45 +000069{ "fixup_arm_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000070{ "fixup_t2_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
71 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
72{ "fixup_thumb_adr_pcrel_10",0, 8, MCFixupKindInfo::FKF_IsPCRel |
73 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jim Grosbachd3f02cb2011-11-16 22:48:37 +000074{ "fixup_arm_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000075{ "fixup_t2_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
76 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jason W Kimd2e2f562011-02-04 19:47:15 +000077{ "fixup_arm_condbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
78{ "fixup_arm_uncondbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000079{ "fixup_t2_condbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
80{ "fixup_t2_uncondbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
81{ "fixup_arm_thumb_br", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
James Molloyfb5cd602012-03-30 09:15:32 +000082{ "fixup_arm_uncondbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
83{ "fixup_arm_condbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach7b811d32012-02-27 21:36:23 +000084{ "fixup_arm_blx", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000085{ "fixup_arm_thumb_bl", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbachf00b9cc2011-08-18 16:57:50 +000086{ "fixup_arm_thumb_blx", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000087{ "fixup_arm_thumb_cb", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach3d6c6292012-04-26 20:48:12 +000088{ "fixup_arm_thumb_cp", 0, 8, MCFixupKindInfo::FKF_IsPCRel |
89 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Eric Christopher368976f2011-05-28 03:16:22 +000090{ "fixup_arm_thumb_bcc", 0, 8, MCFixupKindInfo::FKF_IsPCRel },
Evan Chengd4a5c052011-01-14 02:38:49 +000091// movw / movt: 16-bits immediate but scattered into two chunks 0 - 12, 16 - 19.
92{ "fixup_arm_movt_hi16", 0, 20, 0 },
93{ "fixup_arm_movw_lo16", 0, 20, 0 },
94{ "fixup_t2_movt_hi16", 0, 20, 0 },
95{ "fixup_t2_movw_lo16", 0, 20, 0 },
96{ "fixup_arm_movt_hi16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
97{ "fixup_arm_movw_lo16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
98{ "fixup_t2_movt_hi16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
99{ "fixup_t2_movw_lo16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +0000100 };
101
102 if (Kind < FirstTargetFixupKind)
Evan Cheng5928e692011-07-25 23:24:55 +0000103 return MCAsmBackend::getFixupKindInfo(Kind);
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +0000104
105 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
106 "Invalid kind!");
107 return Infos[Kind - FirstTargetFixupKind];
108 }
109
Jim Grosbach3b50c9e2012-01-18 00:23:57 +0000110 /// processFixupValue - Target hook to process the literal value of a fixup
111 /// if necessary.
112 void processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout,
113 const MCFixup &Fixup, const MCFragment *DF,
Jim Grosbach7b811d32012-02-27 21:36:23 +0000114 MCValue &Target, uint64_t &Value,
Jim Grosbache78031a2012-04-30 22:30:43 +0000115 bool &IsResolved);
Jim Grosbach3b50c9e2012-01-18 00:23:57 +0000116
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000117
118 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
119 uint64_t Value) const;
120
Jim Grosbachaba3de92012-01-18 18:52:16 +0000121 bool mayNeedRelaxation(const MCInst &Inst) const;
Jason W Kimb3212452010-09-30 02:17:26 +0000122
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000123 bool fixupNeedsRelaxation(const MCFixup &Fixup,
124 uint64_t Value,
Eli Bendersky4d9ada02013-01-08 00:22:56 +0000125 const MCRelaxableFragment *DF,
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000126 const MCAsmLayout &Layout) const;
127
Jim Grosbachaba3de92012-01-18 18:52:16 +0000128 void relaxInstruction(const MCInst &Inst, MCInst &Res) const;
Jason W Kimb3212452010-09-30 02:17:26 +0000129
Jim Grosbachaba3de92012-01-18 18:52:16 +0000130 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
Jim Grosbach7e872962010-09-30 17:45:51 +0000131
Jim Grosbachaba3de92012-01-18 18:52:16 +0000132 void handleAssemblerFlag(MCAssemblerFlag Flag) {
Jim Grosbach87055ed2010-12-08 01:16:55 +0000133 switch (Flag) {
134 default: break;
135 case MCAF_Code16:
136 setIsThumb(true);
137 break;
138 case MCAF_Code32:
139 setIsThumb(false);
140 break;
141 }
Jim Grosbach7e872962010-09-30 17:45:51 +0000142 }
Jim Grosbach87055ed2010-12-08 01:16:55 +0000143
144 unsigned getPointerSize() const { return 4; }
145 bool isThumb() const { return isThumbMode; }
146 void setIsThumb(bool it) { isThumbMode = it; }
Jason W Kimb3212452010-09-30 02:17:26 +0000147};
Chris Lattner9fdd10d2010-11-17 05:41:32 +0000148} // end anonymous namespace
Jason W Kimb3212452010-09-30 02:17:26 +0000149
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000150static unsigned getRelaxedOpcode(unsigned Op) {
151 switch (Op) {
152 default: return Op;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000153 case ARM::tBcc: return ARM::t2Bcc;
154 case ARM::tLDRpciASM: return ARM::t2LDRpci;
Jim Grosbach44e5c392012-01-19 02:09:38 +0000155 case ARM::tADR: return ARM::t2ADR;
Jim Grosbachc4aa60f2012-03-19 21:32:32 +0000156 case ARM::tB: return ARM::t2B;
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000157 }
158}
159
Jim Grosbachaba3de92012-01-18 18:52:16 +0000160bool ARMAsmBackend::mayNeedRelaxation(const MCInst &Inst) const {
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000161 if (getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode())
162 return true;
Jason W Kimb3212452010-09-30 02:17:26 +0000163 return false;
164}
165
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000166bool ARMAsmBackend::fixupNeedsRelaxation(const MCFixup &Fixup,
167 uint64_t Value,
Eli Bendersky4d9ada02013-01-08 00:22:56 +0000168 const MCRelaxableFragment *DF,
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000169 const MCAsmLayout &Layout) const {
Benjamin Kramer116e99a2012-01-19 21:11:13 +0000170 switch ((unsigned)Fixup.getKind()) {
Jim Grosbachc4aa60f2012-03-19 21:32:32 +0000171 case ARM::fixup_arm_thumb_br: {
172 // Relaxing tB to t2B. tB has a signed 12-bit displacement with the
173 // low bit being an implied zero. There's an implied +4 offset for the
174 // branch, so we adjust the other way here to determine what's
175 // encodable.
176 //
177 // Relax if the value is too big for a (signed) i8.
178 int64_t Offset = int64_t(Value) - 4;
179 return Offset > 2046 || Offset < -2048;
180 }
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000181 case ARM::fixup_arm_thumb_bcc: {
182 // Relaxing tBcc to t2Bcc. tBcc has a signed 9-bit displacement with the
183 // low bit being an implied zero. There's an implied +4 offset for the
184 // branch, so we adjust the other way here to determine what's
185 // encodable.
186 //
187 // Relax if the value is too big for a (signed) i8.
188 int64_t Offset = int64_t(Value) - 4;
189 return Offset > 254 || Offset < -256;
190 }
Jim Grosbach44e5c392012-01-19 02:09:38 +0000191 case ARM::fixup_thumb_adr_pcrel_10:
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000192 case ARM::fixup_arm_thumb_cp: {
Jim Grosbachb008df42012-01-19 01:50:30 +0000193 // If the immediate is negative, greater than 1020, or not a multiple
194 // of four, the wide version of the instruction must be used.
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000195 int64_t Offset = int64_t(Value) - 4;
Jim Grosbachb008df42012-01-19 01:50:30 +0000196 return Offset > 1020 || Offset < 0 || Offset & 3;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000197 }
198 }
Benjamin Kramer116e99a2012-01-19 21:11:13 +0000199 llvm_unreachable("Unexpected fixup kind in fixupNeedsRelaxation()!");
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000200}
201
Jim Grosbachaba3de92012-01-18 18:52:16 +0000202void ARMAsmBackend::relaxInstruction(const MCInst &Inst, MCInst &Res) const {
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000203 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
204
205 // Sanity check w/ diagnostic if we get here w/ a bogus instruction.
206 if (RelaxedOp == Inst.getOpcode()) {
207 SmallString<256> Tmp;
208 raw_svector_ostream OS(Tmp);
209 Inst.dump_pretty(OS);
210 OS << "\n";
211 report_fatal_error("unexpected instruction to relax: " + OS.str());
212 }
213
214 // The instructions we're relaxing have (so far) the same operands.
215 // We just need to update to the proper opcode.
216 Res = Inst;
217 Res.setOpcode(RelaxedOp);
Jason W Kimb3212452010-09-30 02:17:26 +0000218}
219
Jim Grosbachaba3de92012-01-18 18:52:16 +0000220bool ARMAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
Jim Grosbach45e50d82011-08-16 17:06:20 +0000221 const uint16_t Thumb1_16bitNopEncoding = 0x46c0; // using MOV r8,r8
222 const uint16_t Thumb2_16bitNopEncoding = 0xbf00; // NOP
David Sehr05176ca2012-12-05 21:01:27 +0000223 const uint32_t ARMv4_NopEncoding = 0xe1a00000; // using MOV r0,r0
Jim Grosbach7ccdb7c2011-11-16 22:40:25 +0000224 const uint32_t ARMv6T2_NopEncoding = 0xe320f000; // NOP
Jim Grosbach87055ed2010-12-08 01:16:55 +0000225 if (isThumb()) {
Jim Grosbach45e50d82011-08-16 17:06:20 +0000226 const uint16_t nopEncoding = hasNOP() ? Thumb2_16bitNopEncoding
227 : Thumb1_16bitNopEncoding;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000228 uint64_t NumNops = Count / 2;
229 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbach45e50d82011-08-16 17:06:20 +0000230 OW->Write16(nopEncoding);
Jim Grosbach97f1de72010-12-17 19:03:02 +0000231 if (Count & 1)
232 OW->Write8(0);
Jim Grosbach87055ed2010-12-08 01:16:55 +0000233 return true;
234 }
235 // ARM mode
Jim Grosbach45e50d82011-08-16 17:06:20 +0000236 const uint32_t nopEncoding = hasNOP() ? ARMv6T2_NopEncoding
237 : ARMv4_NopEncoding;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000238 uint64_t NumNops = Count / 4;
239 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbach45e50d82011-08-16 17:06:20 +0000240 OW->Write32(nopEncoding);
241 // FIXME: should this function return false when unable to write exactly
242 // 'Count' bytes with NOP encodings?
Jim Grosbach97f1de72010-12-17 19:03:02 +0000243 switch (Count % 4) {
244 default: break; // No leftover bytes to write
245 case 1: OW->Write8(0); break;
246 case 2: OW->Write16(0); break;
247 case 3: OW->Write16(0); OW->Write8(0xa0); break;
248 }
249
Rafael Espindola0ed15432010-10-25 17:50:35 +0000250 return true;
Jim Grosbach58bce992010-09-30 03:20:34 +0000251}
Jason W Kimb3212452010-09-30 02:17:26 +0000252
Jim Grosbache78031a2012-04-30 22:30:43 +0000253static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
254 MCContext *Ctx = NULL) {
255 unsigned Kind = Fixup.getKind();
Jason W Kimfc5c5222010-12-01 22:46:50 +0000256 switch (Kind) {
257 default:
258 llvm_unreachable("Unknown fixup kind!");
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000259 case FK_Data_1:
260 case FK_Data_2:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000261 case FK_Data_4:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000262 return Value;
Jason W Kimd5e6e542010-12-03 19:40:23 +0000263 case ARM::fixup_arm_movt_hi16:
Evan Chengd4a5c052011-01-14 02:38:49 +0000264 Value >>= 16;
265 // Fallthrough
266 case ARM::fixup_arm_movw_lo16:
Jason W Kimd0c937d2011-05-19 20:55:25 +0000267 case ARM::fixup_arm_movt_hi16_pcrel:
Jason W Kim9c5b65d2011-01-12 00:19:25 +0000268 case ARM::fixup_arm_movw_lo16_pcrel: {
Jason W Kimd5e6e542010-12-03 19:40:23 +0000269 unsigned Hi4 = (Value & 0xF000) >> 12;
270 unsigned Lo12 = Value & 0x0FFF;
271 // inst{19-16} = Hi4;
272 // inst{11-0} = Lo12;
273 Value = (Hi4 << 16) | (Lo12);
274 return Value;
275 }
Evan Chengd4a5c052011-01-14 02:38:49 +0000276 case ARM::fixup_t2_movt_hi16:
Evan Chengd4a5c052011-01-14 02:38:49 +0000277 Value >>= 16;
278 // Fallthrough
279 case ARM::fixup_t2_movw_lo16:
Jim Grosbach6629b572011-06-24 20:06:59 +0000280 case ARM::fixup_t2_movt_hi16_pcrel: //FIXME: Shouldn't this be shifted like
281 // the other hi16 fixup?
Evan Chengd4a5c052011-01-14 02:38:49 +0000282 case ARM::fixup_t2_movw_lo16_pcrel: {
283 unsigned Hi4 = (Value & 0xF000) >> 12;
284 unsigned i = (Value & 0x800) >> 11;
285 unsigned Mid3 = (Value & 0x700) >> 8;
286 unsigned Lo8 = Value & 0x0FF;
287 // inst{19-16} = Hi4;
288 // inst{26} = i;
289 // inst{14-12} = Mid3;
290 // inst{7-0} = Lo8;
Jim Grosbachd76f43e2011-09-30 22:02:45 +0000291 Value = (Hi4 << 16) | (i << 26) | (Mid3 << 12) | (Lo8);
Evan Chengd4a5c052011-01-14 02:38:49 +0000292 uint64_t swapped = (Value & 0xFFFF0000) >> 16;
293 swapped |= (Value & 0x0000FFFF) << 16;
294 return swapped;
295 }
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000296 case ARM::fixup_arm_ldst_pcrel_12:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000297 // ARM PC-relative values are offset by 8.
Owen Anderson3ef19d92010-12-09 20:27:52 +0000298 Value -= 4;
Owen Andersoncb4d8f22010-12-09 21:34:47 +0000299 // FALLTHROUGH
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000300 case ARM::fixup_t2_ldst_pcrel_12: {
301 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson3ef19d92010-12-09 20:27:52 +0000302 Value -= 4;
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000303 bool isAdd = true;
Jason W Kimfc5c5222010-12-01 22:46:50 +0000304 if ((int64_t)Value < 0) {
305 Value = -Value;
306 isAdd = false;
307 }
Jim Grosbache78031a2012-04-30 22:30:43 +0000308 if (Ctx && Value >= 4096)
309 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jason W Kimfc5c5222010-12-01 22:46:50 +0000310 Value |= isAdd << 23;
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000311
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000312 // Same addressing mode as fixup_arm_pcrel_10,
313 // but with 16-bit halfwords swapped.
314 if (Kind == ARM::fixup_t2_ldst_pcrel_12) {
315 uint64_t swapped = (Value & 0xFFFF0000) >> 16;
316 swapped |= (Value & 0x0000FFFF) << 16;
317 return swapped;
318 }
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000319
Jason W Kimfc5c5222010-12-01 22:46:50 +0000320 return Value;
321 }
Jim Grosbach509dc2a2010-12-14 22:28:03 +0000322 case ARM::fixup_thumb_adr_pcrel_10:
323 return ((Value - 4) >> 2) & 0xff;
Jim Grosbachce2bd8d2010-12-02 00:28:45 +0000324 case ARM::fixup_arm_adr_pcrel_12: {
325 // ARM PC-relative values are offset by 8.
326 Value -= 8;
327 unsigned opc = 4; // bits {24-21}. Default to add: 0b0100
328 if ((int64_t)Value < 0) {
329 Value = -Value;
330 opc = 2; // 0b0010
331 }
Jim Grosbache78031a2012-04-30 22:30:43 +0000332 if (Ctx && ARM_AM::getSOImmVal(Value) == -1)
333 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jim Grosbachce2bd8d2010-12-02 00:28:45 +0000334 // Encode the immediate and shift the opcode into place.
335 return ARM_AM::getSOImmVal(Value) | (opc << 21);
336 }
Jim Grosbache34793e2010-12-14 16:25:15 +0000337
Owen Anderson6d375e52010-12-14 00:36:49 +0000338 case ARM::fixup_t2_adr_pcrel_12: {
339 Value -= 4;
340 unsigned opc = 0;
341 if ((int64_t)Value < 0) {
342 Value = -Value;
343 opc = 5;
344 }
345
346 uint32_t out = (opc << 21);
Owen Anderson8543d4f2011-03-23 22:03:44 +0000347 out |= (Value & 0x800) << 15;
Owen Anderson6d375e52010-12-14 00:36:49 +0000348 out |= (Value & 0x700) << 4;
349 out |= (Value & 0x0FF);
Jim Grosbache34793e2010-12-14 16:25:15 +0000350
Owen Anderson6d375e52010-12-14 00:36:49 +0000351 uint64_t swapped = (out & 0xFFFF0000) >> 16;
352 swapped |= (out & 0x0000FFFF) << 16;
353 return swapped;
354 }
Jim Grosbache34793e2010-12-14 16:25:15 +0000355
Jason W Kimd2e2f562011-02-04 19:47:15 +0000356 case ARM::fixup_arm_condbranch:
357 case ARM::fixup_arm_uncondbranch:
James Molloyfb5cd602012-03-30 09:15:32 +0000358 case ARM::fixup_arm_uncondbl:
359 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +0000360 case ARM::fixup_arm_blx:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000361 // These values don't encode the low two bits since they're always zero.
362 // Offset by 8 just as above.
Jim Grosbach9e199462010-12-06 23:57:07 +0000363 return 0xffffff & ((Value - 8) >> 2);
Owen Anderson578074b2010-12-13 19:31:11 +0000364 case ARM::fixup_t2_uncondbranch: {
Owen Anderson235c2762010-12-10 23:02:28 +0000365 Value = Value - 4;
Owen Anderson302d5fd2010-12-09 00:27:41 +0000366 Value >>= 1; // Low bit is not encoded.
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000367
Jim Grosbachf588c512010-12-13 19:25:46 +0000368 uint32_t out = 0;
Owen Anderson578074b2010-12-13 19:31:11 +0000369 bool I = Value & 0x800000;
370 bool J1 = Value & 0x400000;
371 bool J2 = Value & 0x200000;
372 J1 ^= I;
373 J2 ^= I;
Jim Grosbache34793e2010-12-14 16:25:15 +0000374
Owen Anderson578074b2010-12-13 19:31:11 +0000375 out |= I << 26; // S bit
376 out |= !J1 << 13; // J1 bit
377 out |= !J2 << 11; // J2 bit
378 out |= (Value & 0x1FF800) << 5; // imm6 field
379 out |= (Value & 0x0007FF); // imm11 field
Jim Grosbache34793e2010-12-14 16:25:15 +0000380
Owen Anderson578074b2010-12-13 19:31:11 +0000381 uint64_t swapped = (out & 0xFFFF0000) >> 16;
382 swapped |= (out & 0x0000FFFF) << 16;
383 return swapped;
384 }
385 case ARM::fixup_t2_condbranch: {
386 Value = Value - 4;
387 Value >>= 1; // Low bit is not encoded.
Jim Grosbache34793e2010-12-14 16:25:15 +0000388
Owen Anderson578074b2010-12-13 19:31:11 +0000389 uint64_t out = 0;
Owen Anderson14e41272010-12-09 01:02:09 +0000390 out |= (Value & 0x80000) << 7; // S bit
391 out |= (Value & 0x40000) >> 7; // J2 bit
392 out |= (Value & 0x20000) >> 4; // J1 bit
393 out |= (Value & 0x1F800) << 5; // imm6 field
394 out |= (Value & 0x007FF); // imm11 field
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000395
Jim Grosbachf588c512010-12-13 19:25:46 +0000396 uint32_t swapped = (out & 0xFFFF0000) >> 16;
Owen Anderson302d5fd2010-12-09 00:27:41 +0000397 swapped |= (out & 0x0000FFFF) << 16;
398 return swapped;
399 }
Jim Grosbach9e199462010-12-06 23:57:07 +0000400 case ARM::fixup_arm_thumb_bl: {
Kevin Enderby91422302012-05-03 22:41:56 +0000401 // The value doesn't encode the low bit (always zero) and is offset by
402 // four. The 32-bit immediate value is encoded as
403 // imm32 = SignExtend(S:I1:I2:imm10:imm11:0)
404 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
405 // The value is encoded into disjoint bit positions in the destination
406 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
407 // J = either J1 or J2 bit
408 //
409 // BL: xxxxxSIIIIIIIIII xxJxJIIIIIIIIIII
410 //
411 // Note that the halfwords are stored high first, low second; so we need
412 // to transpose the fixup value here to map properly.
413 uint32_t offset = (Value - 4) >> 1;
414 uint32_t signBit = (offset & 0x800000) >> 23;
415 uint32_t I1Bit = (offset & 0x400000) >> 22;
416 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
417 uint32_t I2Bit = (offset & 0x200000) >> 21;
418 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
419 uint32_t imm10Bits = (offset & 0x1FF800) >> 11;
420 uint32_t imm11Bits = (offset & 0x000007FF);
421
422 uint32_t Binary = 0;
423 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
424 uint32_t secondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
425 (uint16_t)imm11Bits);
426 Binary |= secondHalf << 16;
427 Binary |= firstHalf;
428 return Binary;
429
Bill Wendling3392bfc2010-12-09 00:39:08 +0000430 }
431 case ARM::fixup_arm_thumb_blx: {
Kevin Enderby91422302012-05-03 22:41:56 +0000432 // The value doesn't encode the low two bits (always zero) and is offset by
433 // four (see fixup_arm_thumb_cp). The 32-bit immediate value is encoded as
434 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:00)
435 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
436 // The value is encoded into disjoint bit positions in the destination
437 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
438 // J = either J1 or J2 bit, 0 = zero.
439 //
440 // BLX: xxxxxSIIIIIIIIII xxJxJIIIIIIIIII0
441 //
442 // Note that the halfwords are stored high first, low second; so we need
443 // to transpose the fixup value here to map properly.
444 uint32_t offset = (Value - 2) >> 2;
445 uint32_t signBit = (offset & 0x400000) >> 22;
446 uint32_t I1Bit = (offset & 0x200000) >> 21;
447 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
448 uint32_t I2Bit = (offset & 0x100000) >> 20;
449 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
450 uint32_t imm10HBits = (offset & 0xFFC00) >> 10;
451 uint32_t imm10LBits = (offset & 0x3FF);
452
453 uint32_t Binary = 0;
454 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
455 uint32_t secondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
456 ((uint16_t)imm10LBits) << 1);
457 Binary |= secondHalf << 16;
458 Binary |= firstHalf;
459 return Binary;
Jim Grosbach9e199462010-12-06 23:57:07 +0000460 }
Bill Wendling8a6449c2010-12-08 01:57:09 +0000461 case ARM::fixup_arm_thumb_cp:
Jim Grosbach3c685612010-12-08 20:32:07 +0000462 // Offset by 4, and don't encode the low two bits. Two bytes of that
463 // 'off by 4' is implicitly handled by the half-word ordering of the
464 // Thumb encoding, so we only need to adjust by 2 here.
465 return ((Value - 2) >> 2) & 0xff;
Jim Grosbach68b27eb2010-12-09 19:50:12 +0000466 case ARM::fixup_arm_thumb_cb: {
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000467 // Offset by 4 and don't encode the lower bit, which is always 0.
468 uint32_t Binary = (Value - 4) >> 1;
Owen Andersonf636a642010-12-14 19:42:53 +0000469 return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3);
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000470 }
Jim Grosbache119da12010-12-10 18:21:33 +0000471 case ARM::fixup_arm_thumb_br:
472 // Offset by 4 and don't encode the lower bit, which is always 0.
473 return ((Value - 4) >> 1) & 0x7ff;
Jim Grosbach78485ad2010-12-10 17:13:40 +0000474 case ARM::fixup_arm_thumb_bcc:
475 // Offset by 4 and don't encode the lower bit, which is always 0.
476 return ((Value - 4) >> 1) & 0xff;
Jim Grosbach8648c102011-12-19 23:06:24 +0000477 case ARM::fixup_arm_pcrel_10_unscaled: {
478 Value = Value - 8; // ARM fixups offset by an additional word and don't
479 // need to adjust for the half-word ordering.
480 bool isAdd = true;
481 if ((int64_t)Value < 0) {
482 Value = -Value;
483 isAdd = false;
484 }
Jim Grosbach913cc302012-03-30 21:54:22 +0000485 // The value has the low 4 bits encoded in [3:0] and the high 4 in [11:8].
Jim Grosbache78031a2012-04-30 22:30:43 +0000486 if (Ctx && Value >= 256)
487 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jim Grosbach913cc302012-03-30 21:54:22 +0000488 Value = (Value & 0xf) | ((Value & 0xf0) << 4);
Jim Grosbach8648c102011-12-19 23:06:24 +0000489 return Value | (isAdd << 23);
490 }
Jim Grosbach3c685612010-12-08 20:32:07 +0000491 case ARM::fixup_arm_pcrel_10:
Owen Anderson4743d752010-12-10 22:46:47 +0000492 Value = Value - 4; // ARM fixups offset by an additional word and don't
Jim Grosbach3c685612010-12-08 20:32:07 +0000493 // need to adjust for the half-word ordering.
494 // Fall through.
495 case ARM::fixup_t2_pcrel_10: {
496 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson4743d752010-12-10 22:46:47 +0000497 Value = Value - 4;
Jason W Kimfc5c5222010-12-01 22:46:50 +0000498 bool isAdd = true;
499 if ((int64_t)Value < 0) {
500 Value = -Value;
501 isAdd = false;
502 }
503 // These values don't encode the low two bits since they're always zero.
504 Value >>= 2;
Jim Grosbache78031a2012-04-30 22:30:43 +0000505 if (Ctx && Value >= 256)
506 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jason W Kimfc5c5222010-12-01 22:46:50 +0000507 Value |= isAdd << 23;
Jim Grosbach3c685612010-12-08 20:32:07 +0000508
Jim Grosbach8648c102011-12-19 23:06:24 +0000509 // Same addressing mode as fixup_arm_pcrel_10, but with 16-bit halfwords
510 // swapped.
Owen Anderson0f7142d2010-12-08 00:18:36 +0000511 if (Kind == ARM::fixup_t2_pcrel_10) {
Jim Grosbachf588c512010-12-13 19:25:46 +0000512 uint32_t swapped = (Value & 0xFFFF0000) >> 16;
Owen Anderson72ce4532010-12-08 00:21:33 +0000513 swapped |= (Value & 0x0000FFFF) << 16;
Owen Anderson0f7142d2010-12-08 00:18:36 +0000514 return swapped;
515 }
Jim Grosbach3c685612010-12-08 20:32:07 +0000516
Jason W Kimfc5c5222010-12-01 22:46:50 +0000517 return Value;
518 }
519 }
520}
521
Jim Grosbache78031a2012-04-30 22:30:43 +0000522void ARMAsmBackend::processFixupValue(const MCAssembler &Asm,
523 const MCAsmLayout &Layout,
524 const MCFixup &Fixup,
525 const MCFragment *DF,
526 MCValue &Target, uint64_t &Value,
527 bool &IsResolved) {
528 const MCSymbolRefExpr *A = Target.getSymA();
529 // Some fixups to thumb function symbols need the low bit (thumb bit)
530 // twiddled.
531 if ((unsigned)Fixup.getKind() != ARM::fixup_arm_ldst_pcrel_12 &&
532 (unsigned)Fixup.getKind() != ARM::fixup_t2_ldst_pcrel_12 &&
533 (unsigned)Fixup.getKind() != ARM::fixup_arm_adr_pcrel_12 &&
534 (unsigned)Fixup.getKind() != ARM::fixup_thumb_adr_pcrel_10 &&
535 (unsigned)Fixup.getKind() != ARM::fixup_t2_adr_pcrel_12 &&
536 (unsigned)Fixup.getKind() != ARM::fixup_arm_thumb_cp) {
537 if (A) {
538 const MCSymbol &Sym = A->getSymbol().AliasedSymbol();
539 if (Asm.isThumbFunc(&Sym))
540 Value |= 1;
541 }
542 }
543 // We must always generate a relocation for BL/BLX instructions if we have
544 // a symbol to reference, as the linker relies on knowing the destination
545 // symbol's thumb-ness to get interworking right.
546 if (A && ((unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_blx ||
547 (unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_bl ||
548 (unsigned)Fixup.getKind() == ARM::fixup_arm_blx ||
549 (unsigned)Fixup.getKind() == ARM::fixup_arm_uncondbl ||
550 (unsigned)Fixup.getKind() == ARM::fixup_arm_condbl))
551 IsResolved = false;
552
553 // Try to get the encoded value for the fixup as-if we're mapping it into
554 // the instruction. This allows adjustFixupValue() to issue a diagnostic
555 // if the value aren't invalid.
556 (void)adjustFixupValue(Fixup, Value, &Asm.getContext());
557}
558
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000559/// getFixupKindNumBytes - The number of bytes the fixup may change.
Jim Grosbach9d6d77a2010-11-11 18:04:49 +0000560static unsigned getFixupKindNumBytes(unsigned Kind) {
Jim Grosbach90987142010-11-09 01:37:15 +0000561 switch (Kind) {
Jim Grosbach9e199462010-12-06 23:57:07 +0000562 default:
563 llvm_unreachable("Unknown fixup kind!");
Bill Wendling8a6449c2010-12-08 01:57:09 +0000564
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000565 case FK_Data_1:
Jim Grosbach78485ad2010-12-10 17:13:40 +0000566 case ARM::fixup_arm_thumb_bcc:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000567 case ARM::fixup_arm_thumb_cp:
Jim Grosbach509dc2a2010-12-14 22:28:03 +0000568 case ARM::fixup_thumb_adr_pcrel_10:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000569 return 1;
570
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000571 case FK_Data_2:
Jim Grosbache119da12010-12-10 18:21:33 +0000572 case ARM::fixup_arm_thumb_br:
Jim Grosbach68b27eb2010-12-09 19:50:12 +0000573 case ARM::fixup_arm_thumb_cb:
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000574 return 2;
575
Jim Grosbach8648c102011-12-19 23:06:24 +0000576 case ARM::fixup_arm_pcrel_10_unscaled:
Jim Grosbach9e199462010-12-06 23:57:07 +0000577 case ARM::fixup_arm_ldst_pcrel_12:
578 case ARM::fixup_arm_pcrel_10:
579 case ARM::fixup_arm_adr_pcrel_12:
James Molloyfb5cd602012-03-30 09:15:32 +0000580 case ARM::fixup_arm_uncondbl:
581 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +0000582 case ARM::fixup_arm_blx:
Jason W Kimd2e2f562011-02-04 19:47:15 +0000583 case ARM::fixup_arm_condbranch:
584 case ARM::fixup_arm_uncondbranch:
Jim Grosbach9e199462010-12-06 23:57:07 +0000585 return 3;
Bill Wendling8a6449c2010-12-08 01:57:09 +0000586
587 case FK_Data_4:
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000588 case ARM::fixup_t2_ldst_pcrel_12:
Owen Anderson578074b2010-12-13 19:31:11 +0000589 case ARM::fixup_t2_condbranch:
590 case ARM::fixup_t2_uncondbranch:
Owen Anderson0f7142d2010-12-08 00:18:36 +0000591 case ARM::fixup_t2_pcrel_10:
Owen Anderson6d375e52010-12-14 00:36:49 +0000592 case ARM::fixup_t2_adr_pcrel_12:
Jim Grosbach9e199462010-12-06 23:57:07 +0000593 case ARM::fixup_arm_thumb_bl:
Bill Wendling3392bfc2010-12-09 00:39:08 +0000594 case ARM::fixup_arm_thumb_blx:
Evan Chengd4a5c052011-01-14 02:38:49 +0000595 case ARM::fixup_arm_movt_hi16:
596 case ARM::fixup_arm_movw_lo16:
597 case ARM::fixup_arm_movt_hi16_pcrel:
598 case ARM::fixup_arm_movw_lo16_pcrel:
599 case ARM::fixup_t2_movt_hi16:
600 case ARM::fixup_t2_movw_lo16:
601 case ARM::fixup_t2_movt_hi16_pcrel:
602 case ARM::fixup_t2_movw_lo16_pcrel:
Jim Grosbach9e199462010-12-06 23:57:07 +0000603 return 4;
Jim Grosbach90987142010-11-09 01:37:15 +0000604 }
605}
606
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000607void ARMAsmBackend::applyFixup(const MCFixup &Fixup, char *Data,
608 unsigned DataSize, uint64_t Value) const {
Jim Grosbach9d6d77a2010-11-11 18:04:49 +0000609 unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind());
Jim Grosbache78031a2012-04-30 22:30:43 +0000610 Value = adjustFixupValue(Fixup, Value);
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000611 if (!Value) return; // Doesn't change encoding.
Jim Grosbach90987142010-11-09 01:37:15 +0000612
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000613 unsigned Offset = Fixup.getOffset();
614 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
615
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000616 // For each byte of the fragment that the fixup touches, mask in the bits from
617 // the fixup value. The Value has been "split up" into the appropriate
618 // bitfields above.
Jim Grosbach90987142010-11-09 01:37:15 +0000619 for (unsigned i = 0; i != NumBytes; ++i)
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000620 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
Jason W Kimb3212452010-09-30 02:17:26 +0000621}
Bill Wendling721724e2010-12-07 23:05:20 +0000622
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000623namespace {
624
625// FIXME: This should be in a separate file.
626// ELF is an ELF of course...
627class ELFARMAsmBackend : public ARMAsmBackend {
628public:
629 uint8_t OSABI;
630 ELFARMAsmBackend(const Target &T, const StringRef TT,
631 uint8_t _OSABI)
632 : ARMAsmBackend(T, TT), OSABI(_OSABI) { }
633
634 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
635 return createARMELFObjectWriter(OS, OSABI);
636 }
637};
638
639// FIXME: This should be in a separate file.
640class DarwinARMAsmBackend : public ARMAsmBackend {
641public:
642 const object::mach::CPUSubtypeARM Subtype;
643 DarwinARMAsmBackend(const Target &T, const StringRef TT,
644 object::mach::CPUSubtypeARM st)
645 : ARMAsmBackend(T, TT), Subtype(st) {
646 HasDataInCodeSupport = true;
647 }
648
649 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
650 return createARMMachObjectWriter(OS, /*Is64Bit=*/false,
651 object::mach::CTM_ARM,
652 Subtype);
653 }
654
655 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
656 return false;
657 }
658};
659
Jim Grosbach689651c2010-09-30 03:21:00 +0000660} // end anonymous namespace
Jason W Kimb3212452010-09-30 02:17:26 +0000661
Roman Divacky5dd4ccb2012-09-18 16:08:49 +0000662MCAsmBackend *llvm::createARMAsmBackend(const Target &T, StringRef TT, StringRef CPU) {
Owen Anderson975ddf82011-04-01 21:07:39 +0000663 Triple TheTriple(TT);
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000664
665 if (TheTriple.isOSDarwin()) {
Evan Cheng965ed2e2011-06-14 18:08:33 +0000666 if (TheTriple.getArchName() == "armv4t" ||
667 TheTriple.getArchName() == "thumbv4t")
Jim Grosbach45e50d82011-08-16 17:06:20 +0000668 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V4T);
Evan Cheng965ed2e2011-06-14 18:08:33 +0000669 else if (TheTriple.getArchName() == "armv5e" ||
670 TheTriple.getArchName() == "thumbv5e")
Jim Grosbach45e50d82011-08-16 17:06:20 +0000671 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V5TEJ);
Evan Cheng965ed2e2011-06-14 18:08:33 +0000672 else if (TheTriple.getArchName() == "armv6" ||
Owen Anderson975ddf82011-04-01 21:07:39 +0000673 TheTriple.getArchName() == "thumbv6")
Jim Grosbach45e50d82011-08-16 17:06:20 +0000674 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V6);
Bob Wilsone8a549c2012-09-29 21:43:49 +0000675 else if (TheTriple.getArchName() == "armv7f" ||
676 TheTriple.getArchName() == "thumbv7f")
677 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V7F);
678 else if (TheTriple.getArchName() == "armv7k" ||
679 TheTriple.getArchName() == "thumbv7k")
680 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V7K);
681 else if (TheTriple.getArchName() == "armv7s" ||
682 TheTriple.getArchName() == "thumbv7s")
683 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V7S);
Jim Grosbach45e50d82011-08-16 17:06:20 +0000684 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V7);
Owen Anderson975ddf82011-04-01 21:07:39 +0000685 }
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000686
687 if (TheTriple.isOSWindows())
Jason W Kimb3212452010-09-30 02:17:26 +0000688 assert(0 && "Windows not supported on ARM");
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000689
Rafael Espindola1ad40952011-12-21 17:00:36 +0000690 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
691 return new ELFARMAsmBackend(T, TT, OSABI);
Jason W Kimb3212452010-09-30 02:17:26 +0000692}