blob: ac6ce642dfa929fbe905075d102d7cbdd0d5fabb [file] [log] [blame]
Jason W Kimd4d4f4f2010-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 Grosbachd0d3f7e2011-08-16 17:06:20 +000010#include "MCTargetDesc/ARMMCTargetDesc.h"
Evan Chengbe740292011-07-23 00:00:19 +000011#include "MCTargetDesc/ARMBaseInfo.h"
12#include "MCTargetDesc/ARMFixupKinds.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000013#include "MCTargetDesc/ARMAddressingModes.h"
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000014#include "llvm/MC/MCAssembler.h"
Jim Grosbach7a3afa92012-04-30 22:30:43 +000015#include "llvm/MC/MCContext.h"
Jim Grosbach5be6d2a2010-12-08 01:16:55 +000016#include "llvm/MC/MCDirectives.h"
Rafael Espindola285b3e52010-12-17 16:59:53 +000017#include "llvm/MC/MCELFObjectWriter.h"
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000018#include "llvm/MC/MCExpr.h"
Craig Topperf1d0f772012-03-26 06:58:25 +000019#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbaraa4b7dd2010-12-16 16:08:33 +000020#include "llvm/MC/MCMachObjectWriter.h"
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000021#include "llvm/MC/MCObjectWriter.h"
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000022#include "llvm/MC/MCSectionELF.h"
23#include "llvm/MC/MCSectionMachO.h"
Evan Cheng78c10ee2011-07-25 23:24:55 +000024#include "llvm/MC/MCAsmBackend.h"
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +000025#include "llvm/MC/MCSubtargetInfo.h"
Jim Grosbach9b5b1252012-01-18 00:23:57 +000026#include "llvm/MC/MCValue.h"
Daniel Dunbar36d76a82010-11-27 04:38:36 +000027#include "llvm/Object/MachOFormat.h"
Wesley Peckeecb8582010-10-22 15:52:49 +000028#include "llvm/Support/ELF.h"
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000029#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/raw_ostream.h"
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000031using namespace llvm;
32
33namespace {
Rafael Espindola6024c972010-12-17 17:45:22 +000034class ARMELFObjectWriter : public MCELFObjectTargetWriter {
35public:
Rafael Espindoladc9a8a32011-12-21 17:00:36 +000036 ARMELFObjectWriter(uint8_t OSABI)
37 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSABI, ELF::EM_ARM,
Rafael Espindolabff66a82010-12-18 03:27:34 +000038 /*HasRelocationAddend*/ false) {}
Rafael Espindola6024c972010-12-17 17:45:22 +000039};
40
Evan Cheng78c10ee2011-07-25 23:24:55 +000041class ARMAsmBackend : public MCAsmBackend {
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +000042 const MCSubtargetInfo* STI;
Jim Grosbach5be6d2a2010-12-08 01:16:55 +000043 bool isThumbMode; // Currently emitting Thumb code.
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000044public:
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +000045 ARMAsmBackend(const Target &T, const StringRef TT)
46 : MCAsmBackend(), STI(ARM_MC::createARMMCSubtargetInfo(TT, "", "")),
Jim Grosbachb9d3ff82011-08-24 22:27:35 +000047 isThumbMode(TT.startswith("thumb")) {}
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +000048
49 ~ARMAsmBackend() {
50 delete STI;
51 }
Jason W Kimd4d4f4f2010-09-30 02:17:26 +000052
Daniel Dunbar2761fc42010-12-16 03:20:06 +000053 unsigned getNumFixupKinds() const { return ARM::NumTargetFixupKinds; }
54
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +000055 bool hasNOP() const {
56 return (STI->getFeatureBits() & ARM::HasV6T2Ops) != 0;
57 }
58
Daniel Dunbar2761fc42010-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 Grosbach2abba842011-11-16 22:48:37 +000065{ "fixup_arm_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar2761fc42010-12-16 03:20:06 +000066{ "fixup_t2_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
67 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jim Grosbach2f196742011-12-19 23:06:24 +000068{ "fixup_arm_pcrel_10_unscaled", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach681460f2011-11-01 01:24:45 +000069{ "fixup_arm_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar2761fc42010-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 Grosbach2abba842011-11-16 22:48:37 +000074{ "fixup_arm_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar2761fc42010-12-16 03:20:06 +000075{ "fixup_t2_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
76 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jason W Kim685c3502011-02-04 19:47:15 +000077{ "fixup_arm_condbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
78{ "fixup_arm_uncondbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar2761fc42010-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 Molloycb0809b2012-03-30 09:15:32 +000082{ "fixup_arm_uncondbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
83{ "fixup_arm_condbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach7b25ecf2012-02-27 21:36:23 +000084{ "fixup_arm_blx", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar2761fc42010-12-16 03:20:06 +000085{ "fixup_arm_thumb_bl", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach90b5a082011-08-18 16:57:50 +000086{ "fixup_arm_thumb_blx", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar2761fc42010-12-16 03:20:06 +000087{ "fixup_arm_thumb_cb", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach9da78922012-04-26 20:48:12 +000088{ "fixup_arm_thumb_cp", 0, 8, MCFixupKindInfo::FKF_IsPCRel |
89 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Eric Christopherfea51fc2011-05-28 03:16:22 +000090{ "fixup_arm_thumb_bcc", 0, 8, MCFixupKindInfo::FKF_IsPCRel },
Evan Chengf3eb3bb2011-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 Dunbar2761fc42010-12-16 03:20:06 +0000100 };
101
102 if (Kind < FirstTargetFixupKind)
Evan Cheng78c10ee2011-07-25 23:24:55 +0000103 return MCAsmBackend::getFixupKindInfo(Kind);
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000104
105 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
106 "Invalid kind!");
107 return Infos[Kind - FirstTargetFixupKind];
108 }
109
Jim Grosbach9b5b1252012-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 Grosbach7b25ecf2012-02-27 21:36:23 +0000114 MCValue &Target, uint64_t &Value,
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000115 bool &IsResolved);
Jim Grosbach9b5b1252012-01-18 00:23:57 +0000116
Jim Grosbachec343382012-01-18 18:52:16 +0000117 bool mayNeedRelaxation(const MCInst &Inst) const;
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000118
Jim Grosbach370b78d2011-12-06 00:47:03 +0000119 bool fixupNeedsRelaxation(const MCFixup &Fixup,
120 uint64_t Value,
121 const MCInstFragment *DF,
122 const MCAsmLayout &Layout) const;
123
Jim Grosbachec343382012-01-18 18:52:16 +0000124 void relaxInstruction(const MCInst &Inst, MCInst &Res) const;
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000125
Jim Grosbachec343382012-01-18 18:52:16 +0000126 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
Jim Grosbach3787a402010-09-30 17:45:51 +0000127
Jim Grosbachec343382012-01-18 18:52:16 +0000128 void handleAssemblerFlag(MCAssemblerFlag Flag) {
Jim Grosbach5be6d2a2010-12-08 01:16:55 +0000129 switch (Flag) {
130 default: break;
131 case MCAF_Code16:
132 setIsThumb(true);
133 break;
134 case MCAF_Code32:
135 setIsThumb(false);
136 break;
137 }
Jim Grosbach3787a402010-09-30 17:45:51 +0000138 }
Jim Grosbach5be6d2a2010-12-08 01:16:55 +0000139
140 unsigned getPointerSize() const { return 4; }
141 bool isThumb() const { return isThumbMode; }
142 void setIsThumb(bool it) { isThumbMode = it; }
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000143};
Chris Lattnerb75c6512010-11-17 05:41:32 +0000144} // end anonymous namespace
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000145
Jim Grosbachf503ef62011-12-05 23:45:46 +0000146static unsigned getRelaxedOpcode(unsigned Op) {
147 switch (Op) {
148 default: return Op;
Jim Grosbach256ba4f2012-01-18 21:54:16 +0000149 case ARM::tBcc: return ARM::t2Bcc;
150 case ARM::tLDRpciASM: return ARM::t2LDRpci;
Jim Grosbach9363c582012-01-19 02:09:38 +0000151 case ARM::tADR: return ARM::t2ADR;
Jim Grosbachfa1f7442012-03-19 21:32:32 +0000152 case ARM::tB: return ARM::t2B;
Jim Grosbachf503ef62011-12-05 23:45:46 +0000153 }
154}
155
Jim Grosbachec343382012-01-18 18:52:16 +0000156bool ARMAsmBackend::mayNeedRelaxation(const MCInst &Inst) const {
Jim Grosbachf503ef62011-12-05 23:45:46 +0000157 if (getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode())
158 return true;
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000159 return false;
160}
161
Jim Grosbach370b78d2011-12-06 00:47:03 +0000162bool ARMAsmBackend::fixupNeedsRelaxation(const MCFixup &Fixup,
163 uint64_t Value,
164 const MCInstFragment *DF,
165 const MCAsmLayout &Layout) const {
Benjamin Kramere545ee22012-01-19 21:11:13 +0000166 switch ((unsigned)Fixup.getKind()) {
Jim Grosbachfa1f7442012-03-19 21:32:32 +0000167 case ARM::fixup_arm_thumb_br: {
168 // Relaxing tB to t2B. tB has a signed 12-bit displacement with the
169 // low bit being an implied zero. There's an implied +4 offset for the
170 // branch, so we adjust the other way here to determine what's
171 // encodable.
172 //
173 // Relax if the value is too big for a (signed) i8.
174 int64_t Offset = int64_t(Value) - 4;
175 return Offset > 2046 || Offset < -2048;
176 }
Jim Grosbach256ba4f2012-01-18 21:54:16 +0000177 case ARM::fixup_arm_thumb_bcc: {
178 // Relaxing tBcc to t2Bcc. tBcc has a signed 9-bit displacement with the
179 // low bit being an implied zero. There's an implied +4 offset for the
180 // branch, so we adjust the other way here to determine what's
181 // encodable.
182 //
183 // Relax if the value is too big for a (signed) i8.
184 int64_t Offset = int64_t(Value) - 4;
185 return Offset > 254 || Offset < -256;
186 }
Jim Grosbach9363c582012-01-19 02:09:38 +0000187 case ARM::fixup_thumb_adr_pcrel_10:
Jim Grosbach256ba4f2012-01-18 21:54:16 +0000188 case ARM::fixup_arm_thumb_cp: {
Jim Grosbachd26bad02012-01-19 01:50:30 +0000189 // If the immediate is negative, greater than 1020, or not a multiple
190 // of four, the wide version of the instruction must be used.
Jim Grosbach256ba4f2012-01-18 21:54:16 +0000191 int64_t Offset = int64_t(Value) - 4;
Jim Grosbachd26bad02012-01-19 01:50:30 +0000192 return Offset > 1020 || Offset < 0 || Offset & 3;
Jim Grosbach256ba4f2012-01-18 21:54:16 +0000193 }
194 }
Benjamin Kramere545ee22012-01-19 21:11:13 +0000195 llvm_unreachable("Unexpected fixup kind in fixupNeedsRelaxation()!");
Jim Grosbach370b78d2011-12-06 00:47:03 +0000196}
197
Jim Grosbachec343382012-01-18 18:52:16 +0000198void ARMAsmBackend::relaxInstruction(const MCInst &Inst, MCInst &Res) const {
Jim Grosbachf503ef62011-12-05 23:45:46 +0000199 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
200
201 // Sanity check w/ diagnostic if we get here w/ a bogus instruction.
202 if (RelaxedOp == Inst.getOpcode()) {
203 SmallString<256> Tmp;
204 raw_svector_ostream OS(Tmp);
205 Inst.dump_pretty(OS);
206 OS << "\n";
207 report_fatal_error("unexpected instruction to relax: " + OS.str());
208 }
209
210 // The instructions we're relaxing have (so far) the same operands.
211 // We just need to update to the proper opcode.
212 Res = Inst;
213 Res.setOpcode(RelaxedOp);
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000214}
215
Jim Grosbachec343382012-01-18 18:52:16 +0000216bool ARMAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000217 const uint16_t Thumb1_16bitNopEncoding = 0x46c0; // using MOV r8,r8
218 const uint16_t Thumb2_16bitNopEncoding = 0xbf00; // NOP
219 const uint32_t ARMv4_NopEncoding = 0xe1a0000; // using MOV r0,r0
Jim Grosbachb84acd22011-11-16 22:40:25 +0000220 const uint32_t ARMv6T2_NopEncoding = 0xe320f000; // NOP
Jim Grosbach5be6d2a2010-12-08 01:16:55 +0000221 if (isThumb()) {
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000222 const uint16_t nopEncoding = hasNOP() ? Thumb2_16bitNopEncoding
223 : Thumb1_16bitNopEncoding;
Jim Grosbacha3dbd3a2010-12-17 19:03:02 +0000224 uint64_t NumNops = Count / 2;
225 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000226 OW->Write16(nopEncoding);
Jim Grosbacha3dbd3a2010-12-17 19:03:02 +0000227 if (Count & 1)
228 OW->Write8(0);
Jim Grosbach5be6d2a2010-12-08 01:16:55 +0000229 return true;
230 }
231 // ARM mode
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000232 const uint32_t nopEncoding = hasNOP() ? ARMv6T2_NopEncoding
233 : ARMv4_NopEncoding;
Jim Grosbacha3dbd3a2010-12-17 19:03:02 +0000234 uint64_t NumNops = Count / 4;
235 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000236 OW->Write32(nopEncoding);
237 // FIXME: should this function return false when unable to write exactly
238 // 'Count' bytes with NOP encodings?
Jim Grosbacha3dbd3a2010-12-17 19:03:02 +0000239 switch (Count % 4) {
240 default: break; // No leftover bytes to write
241 case 1: OW->Write8(0); break;
242 case 2: OW->Write16(0); break;
243 case 3: OW->Write16(0); OW->Write8(0xa0); break;
244 }
245
Rafael Espindolacecbc3d2010-10-25 17:50:35 +0000246 return true;
Jim Grosbach87dc3aa2010-09-30 03:20:34 +0000247}
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000248
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000249static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
250 MCContext *Ctx = NULL) {
251 unsigned Kind = Fixup.getKind();
Jason W Kim0c628c22010-12-01 22:46:50 +0000252 switch (Kind) {
253 default:
254 llvm_unreachable("Unknown fixup kind!");
Jim Grosbach6ec6eeb2010-12-17 18:39:10 +0000255 case FK_Data_1:
256 case FK_Data_2:
Jason W Kim0c628c22010-12-01 22:46:50 +0000257 case FK_Data_4:
Jason W Kim0c628c22010-12-01 22:46:50 +0000258 return Value;
Jason W Kim2ccf1482010-12-03 19:40:23 +0000259 case ARM::fixup_arm_movt_hi16:
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000260 Value >>= 16;
261 // Fallthrough
262 case ARM::fixup_arm_movw_lo16:
Jason W Kim861b9c62011-05-19 20:55:25 +0000263 case ARM::fixup_arm_movt_hi16_pcrel:
Jason W Kim86a97f22011-01-12 00:19:25 +0000264 case ARM::fixup_arm_movw_lo16_pcrel: {
Jason W Kim2ccf1482010-12-03 19:40:23 +0000265 unsigned Hi4 = (Value & 0xF000) >> 12;
266 unsigned Lo12 = Value & 0x0FFF;
267 // inst{19-16} = Hi4;
268 // inst{11-0} = Lo12;
269 Value = (Hi4 << 16) | (Lo12);
270 return Value;
271 }
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000272 case ARM::fixup_t2_movt_hi16:
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000273 Value >>= 16;
274 // Fallthrough
275 case ARM::fixup_t2_movw_lo16:
Jim Grosbach8b454562011-06-24 20:06:59 +0000276 case ARM::fixup_t2_movt_hi16_pcrel: //FIXME: Shouldn't this be shifted like
277 // the other hi16 fixup?
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000278 case ARM::fixup_t2_movw_lo16_pcrel: {
279 unsigned Hi4 = (Value & 0xF000) >> 12;
280 unsigned i = (Value & 0x800) >> 11;
281 unsigned Mid3 = (Value & 0x700) >> 8;
282 unsigned Lo8 = Value & 0x0FF;
283 // inst{19-16} = Hi4;
284 // inst{26} = i;
285 // inst{14-12} = Mid3;
286 // inst{7-0} = Lo8;
Jim Grosbachf391e9f2011-09-30 22:02:45 +0000287 Value = (Hi4 << 16) | (i << 26) | (Mid3 << 12) | (Lo8);
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000288 uint64_t swapped = (Value & 0xFFFF0000) >> 16;
289 swapped |= (Value & 0x0000FFFF) << 16;
290 return swapped;
291 }
Owen Andersond7b3f582010-12-09 01:51:07 +0000292 case ARM::fixup_arm_ldst_pcrel_12:
Jason W Kim0c628c22010-12-01 22:46:50 +0000293 // ARM PC-relative values are offset by 8.
Owen Anderson05018c22010-12-09 20:27:52 +0000294 Value -= 4;
Owen Andersonfe7fac72010-12-09 21:34:47 +0000295 // FALLTHROUGH
Owen Andersond7b3f582010-12-09 01:51:07 +0000296 case ARM::fixup_t2_ldst_pcrel_12: {
297 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson05018c22010-12-09 20:27:52 +0000298 Value -= 4;
Owen Andersond7b3f582010-12-09 01:51:07 +0000299 bool isAdd = true;
Jason W Kim0c628c22010-12-01 22:46:50 +0000300 if ((int64_t)Value < 0) {
301 Value = -Value;
302 isAdd = false;
303 }
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000304 if (Ctx && Value >= 4096)
305 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jason W Kim0c628c22010-12-01 22:46:50 +0000306 Value |= isAdd << 23;
Jim Grosbach7e294cf2010-12-13 19:18:13 +0000307
Owen Andersond7b3f582010-12-09 01:51:07 +0000308 // Same addressing mode as fixup_arm_pcrel_10,
309 // but with 16-bit halfwords swapped.
310 if (Kind == ARM::fixup_t2_ldst_pcrel_12) {
311 uint64_t swapped = (Value & 0xFFFF0000) >> 16;
312 swapped |= (Value & 0x0000FFFF) << 16;
313 return swapped;
314 }
Jim Grosbach7e294cf2010-12-13 19:18:13 +0000315
Jason W Kim0c628c22010-12-01 22:46:50 +0000316 return Value;
317 }
Jim Grosbachd40963c2010-12-14 22:28:03 +0000318 case ARM::fixup_thumb_adr_pcrel_10:
319 return ((Value - 4) >> 2) & 0xff;
Jim Grosbachdff84b02010-12-02 00:28:45 +0000320 case ARM::fixup_arm_adr_pcrel_12: {
321 // ARM PC-relative values are offset by 8.
322 Value -= 8;
323 unsigned opc = 4; // bits {24-21}. Default to add: 0b0100
324 if ((int64_t)Value < 0) {
325 Value = -Value;
326 opc = 2; // 0b0010
327 }
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000328 if (Ctx && ARM_AM::getSOImmVal(Value) == -1)
329 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jim Grosbachdff84b02010-12-02 00:28:45 +0000330 // Encode the immediate and shift the opcode into place.
331 return ARM_AM::getSOImmVal(Value) | (opc << 21);
332 }
Jim Grosbache8eb1ea2010-12-14 16:25:15 +0000333
Owen Andersona838a252010-12-14 00:36:49 +0000334 case ARM::fixup_t2_adr_pcrel_12: {
335 Value -= 4;
336 unsigned opc = 0;
337 if ((int64_t)Value < 0) {
338 Value = -Value;
339 opc = 5;
340 }
341
342 uint32_t out = (opc << 21);
Owen Anderson741ad152011-03-23 22:03:44 +0000343 out |= (Value & 0x800) << 15;
Owen Andersona838a252010-12-14 00:36:49 +0000344 out |= (Value & 0x700) << 4;
345 out |= (Value & 0x0FF);
Jim Grosbache8eb1ea2010-12-14 16:25:15 +0000346
Owen Andersona838a252010-12-14 00:36:49 +0000347 uint64_t swapped = (out & 0xFFFF0000) >> 16;
348 swapped |= (out & 0x0000FFFF) << 16;
349 return swapped;
350 }
Jim Grosbache8eb1ea2010-12-14 16:25:15 +0000351
Jason W Kim685c3502011-02-04 19:47:15 +0000352 case ARM::fixup_arm_condbranch:
353 case ARM::fixup_arm_uncondbranch:
James Molloycb0809b2012-03-30 09:15:32 +0000354 case ARM::fixup_arm_uncondbl:
355 case ARM::fixup_arm_condbl:
Jim Grosbach7b25ecf2012-02-27 21:36:23 +0000356 case ARM::fixup_arm_blx:
Jason W Kim0c628c22010-12-01 22:46:50 +0000357 // These values don't encode the low two bits since they're always zero.
358 // Offset by 8 just as above.
Jim Grosbach662a8162010-12-06 23:57:07 +0000359 return 0xffffff & ((Value - 8) >> 2);
Owen Andersonc2666002010-12-13 19:31:11 +0000360 case ARM::fixup_t2_uncondbranch: {
Owen Anderson63ee2202010-12-10 23:02:28 +0000361 Value = Value - 4;
Owen Andersonfb20d892010-12-09 00:27:41 +0000362 Value >>= 1; // Low bit is not encoded.
Jim Grosbach7e294cf2010-12-13 19:18:13 +0000363
Jim Grosbach56a25352010-12-13 19:25:46 +0000364 uint32_t out = 0;
Owen Andersonc2666002010-12-13 19:31:11 +0000365 bool I = Value & 0x800000;
366 bool J1 = Value & 0x400000;
367 bool J2 = Value & 0x200000;
368 J1 ^= I;
369 J2 ^= I;
Jim Grosbache8eb1ea2010-12-14 16:25:15 +0000370
Owen Andersonc2666002010-12-13 19:31:11 +0000371 out |= I << 26; // S bit
372 out |= !J1 << 13; // J1 bit
373 out |= !J2 << 11; // J2 bit
374 out |= (Value & 0x1FF800) << 5; // imm6 field
375 out |= (Value & 0x0007FF); // imm11 field
Jim Grosbache8eb1ea2010-12-14 16:25:15 +0000376
Owen Andersonc2666002010-12-13 19:31:11 +0000377 uint64_t swapped = (out & 0xFFFF0000) >> 16;
378 swapped |= (out & 0x0000FFFF) << 16;
379 return swapped;
380 }
381 case ARM::fixup_t2_condbranch: {
382 Value = Value - 4;
383 Value >>= 1; // Low bit is not encoded.
Jim Grosbache8eb1ea2010-12-14 16:25:15 +0000384
Owen Andersonc2666002010-12-13 19:31:11 +0000385 uint64_t out = 0;
Owen Anderson8f079432010-12-09 01:02:09 +0000386 out |= (Value & 0x80000) << 7; // S bit
387 out |= (Value & 0x40000) >> 7; // J2 bit
388 out |= (Value & 0x20000) >> 4; // J1 bit
389 out |= (Value & 0x1F800) << 5; // imm6 field
390 out |= (Value & 0x007FF); // imm11 field
Jim Grosbach7e294cf2010-12-13 19:18:13 +0000391
Jim Grosbach56a25352010-12-13 19:25:46 +0000392 uint32_t swapped = (out & 0xFFFF0000) >> 16;
Owen Andersonfb20d892010-12-09 00:27:41 +0000393 swapped |= (out & 0x0000FFFF) << 16;
394 return swapped;
395 }
Jim Grosbach662a8162010-12-06 23:57:07 +0000396 case ARM::fixup_arm_thumb_bl: {
Kevin Enderby2d524b02012-05-03 22:41:56 +0000397 // The value doesn't encode the low bit (always zero) and is offset by
398 // four. The 32-bit immediate value is encoded as
399 // imm32 = SignExtend(S:I1:I2:imm10:imm11:0)
400 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
401 // The value is encoded into disjoint bit positions in the destination
402 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
403 // J = either J1 or J2 bit
404 //
405 // BL: xxxxxSIIIIIIIIII xxJxJIIIIIIIIIII
406 //
407 // Note that the halfwords are stored high first, low second; so we need
408 // to transpose the fixup value here to map properly.
409 uint32_t offset = (Value - 4) >> 1;
410 uint32_t signBit = (offset & 0x800000) >> 23;
411 uint32_t I1Bit = (offset & 0x400000) >> 22;
412 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
413 uint32_t I2Bit = (offset & 0x200000) >> 21;
414 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
415 uint32_t imm10Bits = (offset & 0x1FF800) >> 11;
416 uint32_t imm11Bits = (offset & 0x000007FF);
417
418 uint32_t Binary = 0;
419 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
420 uint32_t secondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
421 (uint16_t)imm11Bits);
422 Binary |= secondHalf << 16;
423 Binary |= firstHalf;
424 return Binary;
425
Bill Wendling09aa3f02010-12-09 00:39:08 +0000426 }
427 case ARM::fixup_arm_thumb_blx: {
Kevin Enderby2d524b02012-05-03 22:41:56 +0000428 // The value doesn't encode the low two bits (always zero) and is offset by
429 // four (see fixup_arm_thumb_cp). The 32-bit immediate value is encoded as
430 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:00)
431 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
432 // The value is encoded into disjoint bit positions in the destination
433 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
434 // J = either J1 or J2 bit, 0 = zero.
435 //
436 // BLX: xxxxxSIIIIIIIIII xxJxJIIIIIIIIII0
437 //
438 // Note that the halfwords are stored high first, low second; so we need
439 // to transpose the fixup value here to map properly.
440 uint32_t offset = (Value - 2) >> 2;
441 uint32_t signBit = (offset & 0x400000) >> 22;
442 uint32_t I1Bit = (offset & 0x200000) >> 21;
443 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
444 uint32_t I2Bit = (offset & 0x100000) >> 20;
445 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
446 uint32_t imm10HBits = (offset & 0xFFC00) >> 10;
447 uint32_t imm10LBits = (offset & 0x3FF);
448
449 uint32_t Binary = 0;
450 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
451 uint32_t secondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
452 ((uint16_t)imm10LBits) << 1);
453 Binary |= secondHalf << 16;
454 Binary |= firstHalf;
455 return Binary;
Jim Grosbach662a8162010-12-06 23:57:07 +0000456 }
Bill Wendlingb8958b02010-12-08 01:57:09 +0000457 case ARM::fixup_arm_thumb_cp:
Jim Grosbach0c2c2172010-12-08 20:32:07 +0000458 // Offset by 4, and don't encode the low two bits. Two bytes of that
459 // 'off by 4' is implicitly handled by the half-word ordering of the
460 // Thumb encoding, so we only need to adjust by 2 here.
461 return ((Value - 2) >> 2) & 0xff;
Jim Grosbachb492a7c2010-12-09 19:50:12 +0000462 case ARM::fixup_arm_thumb_cb: {
Bill Wendlingdff2f712010-12-08 23:01:43 +0000463 // Offset by 4 and don't encode the lower bit, which is always 0.
464 uint32_t Binary = (Value - 4) >> 1;
Owen Anderson86abd482010-12-14 19:42:53 +0000465 return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3);
Bill Wendlingdff2f712010-12-08 23:01:43 +0000466 }
Jim Grosbache2467172010-12-10 18:21:33 +0000467 case ARM::fixup_arm_thumb_br:
468 // Offset by 4 and don't encode the lower bit, which is always 0.
469 return ((Value - 4) >> 1) & 0x7ff;
Jim Grosbach01086452010-12-10 17:13:40 +0000470 case ARM::fixup_arm_thumb_bcc:
471 // Offset by 4 and don't encode the lower bit, which is always 0.
472 return ((Value - 4) >> 1) & 0xff;
Jim Grosbach2f196742011-12-19 23:06:24 +0000473 case ARM::fixup_arm_pcrel_10_unscaled: {
474 Value = Value - 8; // ARM fixups offset by an additional word and don't
475 // need to adjust for the half-word ordering.
476 bool isAdd = true;
477 if ((int64_t)Value < 0) {
478 Value = -Value;
479 isAdd = false;
480 }
Jim Grosbachbf3c3222012-03-30 21:54:22 +0000481 // The value has the low 4 bits encoded in [3:0] and the high 4 in [11:8].
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000482 if (Ctx && Value >= 256)
483 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jim Grosbachbf3c3222012-03-30 21:54:22 +0000484 Value = (Value & 0xf) | ((Value & 0xf0) << 4);
Jim Grosbach2f196742011-12-19 23:06:24 +0000485 return Value | (isAdd << 23);
486 }
Jim Grosbach0c2c2172010-12-08 20:32:07 +0000487 case ARM::fixup_arm_pcrel_10:
Owen Andersone2e0f582010-12-10 22:46:47 +0000488 Value = Value - 4; // ARM fixups offset by an additional word and don't
Jim Grosbach0c2c2172010-12-08 20:32:07 +0000489 // need to adjust for the half-word ordering.
490 // Fall through.
491 case ARM::fixup_t2_pcrel_10: {
492 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Andersone2e0f582010-12-10 22:46:47 +0000493 Value = Value - 4;
Jason W Kim0c628c22010-12-01 22:46:50 +0000494 bool isAdd = true;
495 if ((int64_t)Value < 0) {
496 Value = -Value;
497 isAdd = false;
498 }
499 // These values don't encode the low two bits since they're always zero.
500 Value >>= 2;
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000501 if (Ctx && Value >= 256)
502 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jason W Kim0c628c22010-12-01 22:46:50 +0000503 Value |= isAdd << 23;
Jim Grosbach0c2c2172010-12-08 20:32:07 +0000504
Jim Grosbach2f196742011-12-19 23:06:24 +0000505 // Same addressing mode as fixup_arm_pcrel_10, but with 16-bit halfwords
506 // swapped.
Owen Andersond8e351b2010-12-08 00:18:36 +0000507 if (Kind == ARM::fixup_t2_pcrel_10) {
Jim Grosbach56a25352010-12-13 19:25:46 +0000508 uint32_t swapped = (Value & 0xFFFF0000) >> 16;
Owen Anderson255eafb2010-12-08 00:21:33 +0000509 swapped |= (Value & 0x0000FFFF) << 16;
Owen Andersond8e351b2010-12-08 00:18:36 +0000510 return swapped;
511 }
Jim Grosbach0c2c2172010-12-08 20:32:07 +0000512
Jason W Kim0c628c22010-12-01 22:46:50 +0000513 return Value;
514 }
515 }
516}
517
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000518void ARMAsmBackend::processFixupValue(const MCAssembler &Asm,
519 const MCAsmLayout &Layout,
520 const MCFixup &Fixup,
521 const MCFragment *DF,
522 MCValue &Target, uint64_t &Value,
523 bool &IsResolved) {
524 const MCSymbolRefExpr *A = Target.getSymA();
525 // Some fixups to thumb function symbols need the low bit (thumb bit)
526 // twiddled.
527 if ((unsigned)Fixup.getKind() != ARM::fixup_arm_ldst_pcrel_12 &&
528 (unsigned)Fixup.getKind() != ARM::fixup_t2_ldst_pcrel_12 &&
529 (unsigned)Fixup.getKind() != ARM::fixup_arm_adr_pcrel_12 &&
530 (unsigned)Fixup.getKind() != ARM::fixup_thumb_adr_pcrel_10 &&
531 (unsigned)Fixup.getKind() != ARM::fixup_t2_adr_pcrel_12 &&
532 (unsigned)Fixup.getKind() != ARM::fixup_arm_thumb_cp) {
533 if (A) {
534 const MCSymbol &Sym = A->getSymbol().AliasedSymbol();
535 if (Asm.isThumbFunc(&Sym))
536 Value |= 1;
537 }
538 }
539 // We must always generate a relocation for BL/BLX instructions if we have
540 // a symbol to reference, as the linker relies on knowing the destination
541 // symbol's thumb-ness to get interworking right.
542 if (A && ((unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_blx ||
543 (unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_bl ||
544 (unsigned)Fixup.getKind() == ARM::fixup_arm_blx ||
545 (unsigned)Fixup.getKind() == ARM::fixup_arm_uncondbl ||
546 (unsigned)Fixup.getKind() == ARM::fixup_arm_condbl))
547 IsResolved = false;
548
549 // Try to get the encoded value for the fixup as-if we're mapping it into
550 // the instruction. This allows adjustFixupValue() to issue a diagnostic
551 // if the value aren't invalid.
552 (void)adjustFixupValue(Fixup, Value, &Asm.getContext());
553}
554
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000555namespace {
Bill Wendling52e635e2010-12-07 23:05:20 +0000556
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000557// FIXME: This should be in a separate file.
558// ELF is an ELF of course...
559class ELFARMAsmBackend : public ARMAsmBackend {
560public:
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000561 uint8_t OSABI;
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000562 ELFARMAsmBackend(const Target &T, const StringRef TT,
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000563 uint8_t _OSABI)
564 : ARMAsmBackend(T, TT), OSABI(_OSABI) { }
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000565
Jim Grosbachec343382012-01-18 18:52:16 +0000566 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000567 uint64_t Value) const;
568
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000569 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Rafael Espindola69bbda02011-12-22 00:37:50 +0000570 return createARMELFObjectWriter(OS, OSABI);
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000571 }
572};
573
Bill Wendling52e635e2010-12-07 23:05:20 +0000574// FIXME: Raise this to share code between Darwin and ELF.
Jim Grosbachec343382012-01-18 18:52:16 +0000575void ELFARMAsmBackend::applyFixup(const MCFixup &Fixup, char *Data,
Rafael Espindola179821a2010-12-06 19:08:48 +0000576 unsigned DataSize, uint64_t Value) const {
Bill Wendling52e635e2010-12-07 23:05:20 +0000577 unsigned NumBytes = 4; // FIXME: 2 for Thumb
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000578 Value = adjustFixupValue(Fixup, Value);
Bill Wendlingd832fa02010-12-07 23:11:00 +0000579 if (!Value) return; // Doesn't change encoding.
Bill Wendling52e635e2010-12-07 23:05:20 +0000580
581 unsigned Offset = Fixup.getOffset();
Bill Wendling52e635e2010-12-07 23:05:20 +0000582
583 // For each byte of the fragment that the fixup touches, mask in the bits from
584 // the fixup value. The Value has been "split up" into the appropriate
585 // bitfields above.
586 for (unsigned i = 0; i != NumBytes; ++i)
587 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000588}
589
590// FIXME: This should be in a separate file.
591class DarwinARMAsmBackend : public ARMAsmBackend {
592public:
Owen Anderson17213242011-04-01 21:07:39 +0000593 const object::mach::CPUSubtypeARM Subtype;
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000594 DarwinARMAsmBackend(const Target &T, const StringRef TT,
595 object::mach::CPUSubtypeARM st)
596 : ARMAsmBackend(T, TT), Subtype(st) { }
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000597
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000598 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
Jim Grosbach2fc68982011-06-22 20:14:52 +0000599 return createARMMachObjectWriter(OS, /*Is64Bit=*/false,
600 object::mach::CTM_ARM,
601 Subtype);
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000602 }
603
Jim Grosbachec343382012-01-18 18:52:16 +0000604 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
Owen Anderson17213242011-04-01 21:07:39 +0000605 uint64_t Value) const;
606
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000607 virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
608 return false;
609 }
610};
611
Bill Wendlingd832fa02010-12-07 23:11:00 +0000612/// getFixupKindNumBytes - The number of bytes the fixup may change.
Jim Grosbachc466b932010-11-11 18:04:49 +0000613static unsigned getFixupKindNumBytes(unsigned Kind) {
Jim Grosbach679cbd32010-11-09 01:37:15 +0000614 switch (Kind) {
Jim Grosbach662a8162010-12-06 23:57:07 +0000615 default:
616 llvm_unreachable("Unknown fixup kind!");
Bill Wendlingb8958b02010-12-08 01:57:09 +0000617
Jim Grosbach6ec6eeb2010-12-17 18:39:10 +0000618 case FK_Data_1:
Jim Grosbach01086452010-12-10 17:13:40 +0000619 case ARM::fixup_arm_thumb_bcc:
Bill Wendlingb8958b02010-12-08 01:57:09 +0000620 case ARM::fixup_arm_thumb_cp:
Jim Grosbachd40963c2010-12-14 22:28:03 +0000621 case ARM::fixup_thumb_adr_pcrel_10:
Bill Wendlingb8958b02010-12-08 01:57:09 +0000622 return 1;
623
Jim Grosbach6ec6eeb2010-12-17 18:39:10 +0000624 case FK_Data_2:
Jim Grosbache2467172010-12-10 18:21:33 +0000625 case ARM::fixup_arm_thumb_br:
Jim Grosbachb492a7c2010-12-09 19:50:12 +0000626 case ARM::fixup_arm_thumb_cb:
Bill Wendlingdff2f712010-12-08 23:01:43 +0000627 return 2;
628
Jim Grosbach2f196742011-12-19 23:06:24 +0000629 case ARM::fixup_arm_pcrel_10_unscaled:
Jim Grosbach662a8162010-12-06 23:57:07 +0000630 case ARM::fixup_arm_ldst_pcrel_12:
631 case ARM::fixup_arm_pcrel_10:
632 case ARM::fixup_arm_adr_pcrel_12:
James Molloycb0809b2012-03-30 09:15:32 +0000633 case ARM::fixup_arm_uncondbl:
634 case ARM::fixup_arm_condbl:
Jim Grosbach7b25ecf2012-02-27 21:36:23 +0000635 case ARM::fixup_arm_blx:
Jason W Kim685c3502011-02-04 19:47:15 +0000636 case ARM::fixup_arm_condbranch:
637 case ARM::fixup_arm_uncondbranch:
Jim Grosbach662a8162010-12-06 23:57:07 +0000638 return 3;
Bill Wendlingb8958b02010-12-08 01:57:09 +0000639
640 case FK_Data_4:
Owen Andersond7b3f582010-12-09 01:51:07 +0000641 case ARM::fixup_t2_ldst_pcrel_12:
Owen Andersonc2666002010-12-13 19:31:11 +0000642 case ARM::fixup_t2_condbranch:
643 case ARM::fixup_t2_uncondbranch:
Owen Andersond8e351b2010-12-08 00:18:36 +0000644 case ARM::fixup_t2_pcrel_10:
Owen Andersona838a252010-12-14 00:36:49 +0000645 case ARM::fixup_t2_adr_pcrel_12:
Jim Grosbach662a8162010-12-06 23:57:07 +0000646 case ARM::fixup_arm_thumb_bl:
Bill Wendling09aa3f02010-12-09 00:39:08 +0000647 case ARM::fixup_arm_thumb_blx:
Evan Chengf3eb3bb2011-01-14 02:38:49 +0000648 case ARM::fixup_arm_movt_hi16:
649 case ARM::fixup_arm_movw_lo16:
650 case ARM::fixup_arm_movt_hi16_pcrel:
651 case ARM::fixup_arm_movw_lo16_pcrel:
652 case ARM::fixup_t2_movt_hi16:
653 case ARM::fixup_t2_movw_lo16:
654 case ARM::fixup_t2_movt_hi16_pcrel:
655 case ARM::fixup_t2_movw_lo16_pcrel:
Jim Grosbach662a8162010-12-06 23:57:07 +0000656 return 4;
Jim Grosbach679cbd32010-11-09 01:37:15 +0000657 }
658}
659
Jim Grosbachec343382012-01-18 18:52:16 +0000660void DarwinARMAsmBackend::applyFixup(const MCFixup &Fixup, char *Data,
Rafael Espindola179821a2010-12-06 19:08:48 +0000661 unsigned DataSize, uint64_t Value) const {
Jim Grosbachc466b932010-11-11 18:04:49 +0000662 unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind());
Jim Grosbach7a3afa92012-04-30 22:30:43 +0000663 Value = adjustFixupValue(Fixup, Value);
Bill Wendlingd832fa02010-12-07 23:11:00 +0000664 if (!Value) return; // Doesn't change encoding.
Jim Grosbach679cbd32010-11-09 01:37:15 +0000665
Bill Wendlingd832fa02010-12-07 23:11:00 +0000666 unsigned Offset = Fixup.getOffset();
667 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
668
Jim Grosbach679cbd32010-11-09 01:37:15 +0000669 // For each byte of the fragment that the fixup touches, mask in the
670 // bits from the fixup value.
671 for (unsigned i = 0; i != NumBytes; ++i)
Bill Wendlingd832fa02010-12-07 23:11:00 +0000672 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000673}
Bill Wendling52e635e2010-12-07 23:05:20 +0000674
Jim Grosbachf73fd722010-09-30 03:21:00 +0000675} // end anonymous namespace
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000676
Evan Cheng78c10ee2011-07-25 23:24:55 +0000677MCAsmBackend *llvm::createARMAsmBackend(const Target &T, StringRef TT) {
Owen Anderson17213242011-04-01 21:07:39 +0000678 Triple TheTriple(TT);
Daniel Dunbar912225e2011-04-19 21:14:45 +0000679
680 if (TheTriple.isOSDarwin()) {
Evan Chenga6eb2562011-06-14 18:08:33 +0000681 if (TheTriple.getArchName() == "armv4t" ||
682 TheTriple.getArchName() == "thumbv4t")
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000683 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V4T);
Evan Chenga6eb2562011-06-14 18:08:33 +0000684 else if (TheTriple.getArchName() == "armv5e" ||
685 TheTriple.getArchName() == "thumbv5e")
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000686 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V5TEJ);
Evan Chenga6eb2562011-06-14 18:08:33 +0000687 else if (TheTriple.getArchName() == "armv6" ||
Owen Anderson17213242011-04-01 21:07:39 +0000688 TheTriple.getArchName() == "thumbv6")
Jim Grosbachd0d3f7e2011-08-16 17:06:20 +0000689 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V6);
690 return new DarwinARMAsmBackend(T, TT, object::mach::CSARM_V7);
Owen Anderson17213242011-04-01 21:07:39 +0000691 }
Daniel Dunbar912225e2011-04-19 21:14:45 +0000692
693 if (TheTriple.isOSWindows())
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000694 assert(0 && "Windows not supported on ARM");
Daniel Dunbar912225e2011-04-19 21:14:45 +0000695
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000696 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
697 return new ELFARMAsmBackend(T, TT, OSABI);
Jason W Kimd4d4f4f2010-09-30 02:17:26 +0000698}