blob: a7189f7def288b2532f97f1d3e15765acf236a70 [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"
Quentin Colombet77ca8b82013-01-14 21:34:09 +000014#include "llvm/ADT/StringSwitch.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/MC/MCAsmBackend.h"
Jason W Kimb3212452010-09-30 02:17:26 +000016#include "llvm/MC/MCAssembler.h"
Jim Grosbache78031a2012-04-30 22:30:43 +000017#include "llvm/MC/MCContext.h"
Jim Grosbach87055ed2010-12-08 01:16:55 +000018#include "llvm/MC/MCDirectives.h"
Rafael Espindolaf0e24d42010-12-17 16:59:53 +000019#include "llvm/MC/MCELFObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000020#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000021#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbar73b87132010-12-16 16:08:33 +000022#include "llvm/MC/MCMachObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000023#include "llvm/MC/MCObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000024#include "llvm/MC/MCSectionELF.h"
25#include "llvm/MC/MCSectionMachO.h"
Jim Grosbach45e50d82011-08-16 17:06:20 +000026#include "llvm/MC/MCSubtargetInfo.h"
Jim Grosbach3b50c9e2012-01-18 00:23:57 +000027#include "llvm/MC/MCValue.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"
Charles Davis8bdfafd2013-09-01 04:28:48 +000030#include "llvm/Support/MachO.h"
Jason W Kimb3212452010-09-30 02:17:26 +000031#include "llvm/Support/raw_ostream.h"
Jason W Kimb3212452010-09-30 02:17:26 +000032using namespace llvm;
33
34namespace {
Rafael Espindola6b5e56c2010-12-17 17:45:22 +000035class ARMELFObjectWriter : public MCELFObjectTargetWriter {
36public:
Rafael Espindola1ad40952011-12-21 17:00:36 +000037 ARMELFObjectWriter(uint8_t OSABI)
38 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSABI, ELF::EM_ARM,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +000039 /*HasRelocationAddend*/ false) {}
Rafael Espindola6b5e56c2010-12-17 17:45:22 +000040};
41
Evan Cheng5928e692011-07-25 23:24:55 +000042class ARMAsmBackend : public MCAsmBackend {
Jim Grosbach45e50d82011-08-16 17:06:20 +000043 const MCSubtargetInfo* STI;
Jim Grosbach87055ed2010-12-08 01:16:55 +000044 bool isThumbMode; // Currently emitting Thumb code.
Jason W Kimb3212452010-09-30 02:17:26 +000045public:
Jim Grosbach45e50d82011-08-16 17:06:20 +000046 ARMAsmBackend(const Target &T, const StringRef TT)
47 : MCAsmBackend(), STI(ARM_MC::createARMMCSubtargetInfo(TT, "", "")),
Jim Grosbach21a60b62011-08-24 22:27:35 +000048 isThumbMode(TT.startswith("thumb")) {}
Jim Grosbach45e50d82011-08-16 17:06:20 +000049
50 ~ARMAsmBackend() {
51 delete STI;
52 }
Jason W Kimb3212452010-09-30 02:17:26 +000053
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000054 unsigned getNumFixupKinds() const { return ARM::NumTargetFixupKinds; }
55
Jim Grosbach45e50d82011-08-16 17:06:20 +000056 bool hasNOP() const {
57 return (STI->getFeatureBits() & ARM::HasV6T2Ops) != 0;
58 }
59
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000060 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
61 const static MCFixupKindInfo Infos[ARM::NumTargetFixupKinds] = {
62// This table *must* be in the order that the fixup_* kinds are defined in
63// ARMFixupKinds.h.
64//
65// Name Offset (bits) Size (bits) Flags
Jim Grosbachd3f02cb2011-11-16 22:48:37 +000066{ "fixup_arm_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000067{ "fixup_t2_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
68 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jim Grosbach8648c102011-12-19 23:06:24 +000069{ "fixup_arm_pcrel_10_unscaled", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbachfb2f1d62011-11-01 01:24:45 +000070{ "fixup_arm_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000071{ "fixup_t2_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
72 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
73{ "fixup_thumb_adr_pcrel_10",0, 8, MCFixupKindInfo::FKF_IsPCRel |
74 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jim Grosbachd3f02cb2011-11-16 22:48:37 +000075{ "fixup_arm_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000076{ "fixup_t2_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel |
77 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Jason W Kimd2e2f562011-02-04 19:47:15 +000078{ "fixup_arm_condbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
79{ "fixup_arm_uncondbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000080{ "fixup_t2_condbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
81{ "fixup_t2_uncondbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
82{ "fixup_arm_thumb_br", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
James Molloyfb5cd602012-03-30 09:15:32 +000083{ "fixup_arm_uncondbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
84{ "fixup_arm_condbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach7b811d32012-02-27 21:36:23 +000085{ "fixup_arm_blx", 0, 24, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000086{ "fixup_arm_thumb_bl", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbachf00b9cc2011-08-18 16:57:50 +000087{ "fixup_arm_thumb_blx", 0, 32, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000088{ "fixup_arm_thumb_cb", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
Jim Grosbach3d6c6292012-04-26 20:48:12 +000089{ "fixup_arm_thumb_cp", 0, 8, MCFixupKindInfo::FKF_IsPCRel |
90 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
Eric Christopher368976f2011-05-28 03:16:22 +000091{ "fixup_arm_thumb_bcc", 0, 8, MCFixupKindInfo::FKF_IsPCRel },
Evan Chengd4a5c052011-01-14 02:38:49 +000092// movw / movt: 16-bits immediate but scattered into two chunks 0 - 12, 16 - 19.
93{ "fixup_arm_movt_hi16", 0, 20, 0 },
94{ "fixup_arm_movw_lo16", 0, 20, 0 },
95{ "fixup_t2_movt_hi16", 0, 20, 0 },
96{ "fixup_t2_movw_lo16", 0, 20, 0 },
97{ "fixup_arm_movt_hi16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
98{ "fixup_arm_movw_lo16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
99{ "fixup_t2_movt_hi16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
100{ "fixup_t2_movw_lo16_pcrel", 0, 20, MCFixupKindInfo::FKF_IsPCRel },
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +0000101 };
102
103 if (Kind < FirstTargetFixupKind)
Evan Cheng5928e692011-07-25 23:24:55 +0000104 return MCAsmBackend::getFixupKindInfo(Kind);
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +0000105
106 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
107 "Invalid kind!");
108 return Infos[Kind - FirstTargetFixupKind];
109 }
110
Jim Grosbach3b50c9e2012-01-18 00:23:57 +0000111 /// processFixupValue - Target hook to process the literal value of a fixup
112 /// if necessary.
113 void processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout,
114 const MCFixup &Fixup, const MCFragment *DF,
Jim Grosbach7b811d32012-02-27 21:36:23 +0000115 MCValue &Target, uint64_t &Value,
Jim Grosbache78031a2012-04-30 22:30:43 +0000116 bool &IsResolved);
Jim Grosbach3b50c9e2012-01-18 00:23:57 +0000117
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000118
119 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
120 uint64_t Value) const;
121
Jim Grosbachaba3de92012-01-18 18:52:16 +0000122 bool mayNeedRelaxation(const MCInst &Inst) const;
Jason W Kimb3212452010-09-30 02:17:26 +0000123
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000124 bool fixupNeedsRelaxation(const MCFixup &Fixup,
125 uint64_t Value,
Eli Bendersky4d9ada02013-01-08 00:22:56 +0000126 const MCRelaxableFragment *DF,
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000127 const MCAsmLayout &Layout) const;
128
Jim Grosbachaba3de92012-01-18 18:52:16 +0000129 void relaxInstruction(const MCInst &Inst, MCInst &Res) const;
Jason W Kimb3212452010-09-30 02:17:26 +0000130
Jim Grosbachaba3de92012-01-18 18:52:16 +0000131 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const;
Jim Grosbach7e872962010-09-30 17:45:51 +0000132
Jim Grosbachaba3de92012-01-18 18:52:16 +0000133 void handleAssemblerFlag(MCAssemblerFlag Flag) {
Jim Grosbach87055ed2010-12-08 01:16:55 +0000134 switch (Flag) {
135 default: break;
136 case MCAF_Code16:
137 setIsThumb(true);
138 break;
139 case MCAF_Code32:
140 setIsThumb(false);
141 break;
142 }
Jim Grosbach7e872962010-09-30 17:45:51 +0000143 }
Jim Grosbach87055ed2010-12-08 01:16:55 +0000144
145 unsigned getPointerSize() const { return 4; }
146 bool isThumb() const { return isThumbMode; }
147 void setIsThumb(bool it) { isThumbMode = it; }
Jason W Kimb3212452010-09-30 02:17:26 +0000148};
Chris Lattner9fdd10d2010-11-17 05:41:32 +0000149} // end anonymous namespace
Jason W Kimb3212452010-09-30 02:17:26 +0000150
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000151static unsigned getRelaxedOpcode(unsigned Op) {
152 switch (Op) {
153 default: return Op;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000154 case ARM::tBcc: return ARM::t2Bcc;
Mihai Popa8a9da5b2013-07-22 15:49:36 +0000155 case ARM::tLDRpci: return ARM::t2LDRpci;
Jim Grosbach44e5c392012-01-19 02:09:38 +0000156 case ARM::tADR: return ARM::t2ADR;
Jim Grosbachc4aa60f2012-03-19 21:32:32 +0000157 case ARM::tB: return ARM::t2B;
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000158 case ARM::tCBZ: return ARM::tHINT;
159 case ARM::tCBNZ: return ARM::tHINT;
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000160 }
161}
162
Jim Grosbachaba3de92012-01-18 18:52:16 +0000163bool ARMAsmBackend::mayNeedRelaxation(const MCInst &Inst) const {
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000164 if (getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode())
165 return true;
Jason W Kimb3212452010-09-30 02:17:26 +0000166 return false;
167}
168
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000169bool ARMAsmBackend::fixupNeedsRelaxation(const MCFixup &Fixup,
170 uint64_t Value,
Eli Bendersky4d9ada02013-01-08 00:22:56 +0000171 const MCRelaxableFragment *DF,
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000172 const MCAsmLayout &Layout) const {
Benjamin Kramer116e99a2012-01-19 21:11:13 +0000173 switch ((unsigned)Fixup.getKind()) {
Jim Grosbachc4aa60f2012-03-19 21:32:32 +0000174 case ARM::fixup_arm_thumb_br: {
175 // Relaxing tB to t2B. tB has a signed 12-bit displacement with the
176 // low bit being an implied zero. There's an implied +4 offset for the
177 // branch, so we adjust the other way here to determine what's
178 // encodable.
179 //
180 // Relax if the value is too big for a (signed) i8.
181 int64_t Offset = int64_t(Value) - 4;
182 return Offset > 2046 || Offset < -2048;
183 }
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000184 case ARM::fixup_arm_thumb_bcc: {
185 // Relaxing tBcc to t2Bcc. tBcc has a signed 9-bit displacement with the
186 // low bit being an implied zero. There's an implied +4 offset for the
187 // branch, so we adjust the other way here to determine what's
188 // encodable.
189 //
190 // Relax if the value is too big for a (signed) i8.
191 int64_t Offset = int64_t(Value) - 4;
192 return Offset > 254 || Offset < -256;
193 }
Jim Grosbach44e5c392012-01-19 02:09:38 +0000194 case ARM::fixup_thumb_adr_pcrel_10:
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000195 case ARM::fixup_arm_thumb_cp: {
Jim Grosbachb008df42012-01-19 01:50:30 +0000196 // If the immediate is negative, greater than 1020, or not a multiple
197 // of four, the wide version of the instruction must be used.
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000198 int64_t Offset = int64_t(Value) - 4;
Jim Grosbachb008df42012-01-19 01:50:30 +0000199 return Offset > 1020 || Offset < 0 || Offset & 3;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000200 }
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000201 case ARM::fixup_arm_thumb_cb:
202 // If we have a Thumb CBZ or CBNZ instruction and its target is the next
203 // instruction it is is actually out of range for the instruction.
204 // It will be changed to a NOP.
205 int64_t Offset = (Value & ~1);
206 return Offset == 2;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000207 }
Benjamin Kramer116e99a2012-01-19 21:11:13 +0000208 llvm_unreachable("Unexpected fixup kind in fixupNeedsRelaxation()!");
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000209}
210
Jim Grosbachaba3de92012-01-18 18:52:16 +0000211void ARMAsmBackend::relaxInstruction(const MCInst &Inst, MCInst &Res) const {
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000212 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
213
214 // Sanity check w/ diagnostic if we get here w/ a bogus instruction.
215 if (RelaxedOp == Inst.getOpcode()) {
216 SmallString<256> Tmp;
217 raw_svector_ostream OS(Tmp);
218 Inst.dump_pretty(OS);
219 OS << "\n";
220 report_fatal_error("unexpected instruction to relax: " + OS.str());
221 }
222
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000223 // If we are changing Thumb CBZ or CBNZ instruction to a NOP, aka tHINT, we
224 // have to change the operands too.
225 if ((Inst.getOpcode() == ARM::tCBZ || Inst.getOpcode() == ARM::tCBNZ) &&
226 RelaxedOp == ARM::tHINT) {
227 Res.setOpcode(RelaxedOp);
228 Res.addOperand(MCOperand::CreateImm(0));
229 Res.addOperand(MCOperand::CreateImm(14));
230 Res.addOperand(MCOperand::CreateReg(0));
231 return;
232 }
233
234 // The rest of instructions we're relaxing have the same operands.
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000235 // We just need to update to the proper opcode.
236 Res = Inst;
237 Res.setOpcode(RelaxedOp);
Jason W Kimb3212452010-09-30 02:17:26 +0000238}
239
Jim Grosbachaba3de92012-01-18 18:52:16 +0000240bool ARMAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
Jim Grosbach45e50d82011-08-16 17:06:20 +0000241 const uint16_t Thumb1_16bitNopEncoding = 0x46c0; // using MOV r8,r8
242 const uint16_t Thumb2_16bitNopEncoding = 0xbf00; // NOP
David Sehr05176ca2012-12-05 21:01:27 +0000243 const uint32_t ARMv4_NopEncoding = 0xe1a00000; // using MOV r0,r0
Jim Grosbach7ccdb7c2011-11-16 22:40:25 +0000244 const uint32_t ARMv6T2_NopEncoding = 0xe320f000; // NOP
Jim Grosbach87055ed2010-12-08 01:16:55 +0000245 if (isThumb()) {
Jim Grosbach45e50d82011-08-16 17:06:20 +0000246 const uint16_t nopEncoding = hasNOP() ? Thumb2_16bitNopEncoding
247 : Thumb1_16bitNopEncoding;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000248 uint64_t NumNops = Count / 2;
249 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbach45e50d82011-08-16 17:06:20 +0000250 OW->Write16(nopEncoding);
Jim Grosbach97f1de72010-12-17 19:03:02 +0000251 if (Count & 1)
252 OW->Write8(0);
Jim Grosbach87055ed2010-12-08 01:16:55 +0000253 return true;
254 }
255 // ARM mode
Jim Grosbach45e50d82011-08-16 17:06:20 +0000256 const uint32_t nopEncoding = hasNOP() ? ARMv6T2_NopEncoding
257 : ARMv4_NopEncoding;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000258 uint64_t NumNops = Count / 4;
259 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbach45e50d82011-08-16 17:06:20 +0000260 OW->Write32(nopEncoding);
261 // FIXME: should this function return false when unable to write exactly
262 // 'Count' bytes with NOP encodings?
Jim Grosbach97f1de72010-12-17 19:03:02 +0000263 switch (Count % 4) {
264 default: break; // No leftover bytes to write
265 case 1: OW->Write8(0); break;
266 case 2: OW->Write16(0); break;
267 case 3: OW->Write16(0); OW->Write8(0xa0); break;
268 }
269
Rafael Espindola0ed15432010-10-25 17:50:35 +0000270 return true;
Jim Grosbach58bce992010-09-30 03:20:34 +0000271}
Jason W Kimb3212452010-09-30 02:17:26 +0000272
Jim Grosbache78031a2012-04-30 22:30:43 +0000273static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
274 MCContext *Ctx = NULL) {
275 unsigned Kind = Fixup.getKind();
Jason W Kimfc5c5222010-12-01 22:46:50 +0000276 switch (Kind) {
277 default:
278 llvm_unreachable("Unknown fixup kind!");
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000279 case FK_Data_1:
280 case FK_Data_2:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000281 case FK_Data_4:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000282 return Value;
Jason W Kimd5e6e542010-12-03 19:40:23 +0000283 case ARM::fixup_arm_movt_hi16:
Evan Chengd4a5c052011-01-14 02:38:49 +0000284 Value >>= 16;
285 // Fallthrough
286 case ARM::fixup_arm_movw_lo16:
Jason W Kimd0c937d2011-05-19 20:55:25 +0000287 case ARM::fixup_arm_movt_hi16_pcrel:
Jason W Kim9c5b65d2011-01-12 00:19:25 +0000288 case ARM::fixup_arm_movw_lo16_pcrel: {
Jason W Kimd5e6e542010-12-03 19:40:23 +0000289 unsigned Hi4 = (Value & 0xF000) >> 12;
290 unsigned Lo12 = Value & 0x0FFF;
291 // inst{19-16} = Hi4;
292 // inst{11-0} = Lo12;
293 Value = (Hi4 << 16) | (Lo12);
294 return Value;
295 }
Evan Chengd4a5c052011-01-14 02:38:49 +0000296 case ARM::fixup_t2_movt_hi16:
Evan Chengd4a5c052011-01-14 02:38:49 +0000297 Value >>= 16;
298 // Fallthrough
299 case ARM::fixup_t2_movw_lo16:
Jim Grosbach6629b572011-06-24 20:06:59 +0000300 case ARM::fixup_t2_movt_hi16_pcrel: //FIXME: Shouldn't this be shifted like
301 // the other hi16 fixup?
Evan Chengd4a5c052011-01-14 02:38:49 +0000302 case ARM::fixup_t2_movw_lo16_pcrel: {
303 unsigned Hi4 = (Value & 0xF000) >> 12;
304 unsigned i = (Value & 0x800) >> 11;
305 unsigned Mid3 = (Value & 0x700) >> 8;
306 unsigned Lo8 = Value & 0x0FF;
307 // inst{19-16} = Hi4;
308 // inst{26} = i;
309 // inst{14-12} = Mid3;
310 // inst{7-0} = Lo8;
Jim Grosbachd76f43e2011-09-30 22:02:45 +0000311 Value = (Hi4 << 16) | (i << 26) | (Mid3 << 12) | (Lo8);
Evan Chengd4a5c052011-01-14 02:38:49 +0000312 uint64_t swapped = (Value & 0xFFFF0000) >> 16;
313 swapped |= (Value & 0x0000FFFF) << 16;
314 return swapped;
315 }
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000316 case ARM::fixup_arm_ldst_pcrel_12:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000317 // ARM PC-relative values are offset by 8.
Owen Anderson3ef19d92010-12-09 20:27:52 +0000318 Value -= 4;
Owen Andersoncb4d8f22010-12-09 21:34:47 +0000319 // FALLTHROUGH
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000320 case ARM::fixup_t2_ldst_pcrel_12: {
321 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson3ef19d92010-12-09 20:27:52 +0000322 Value -= 4;
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000323 bool isAdd = true;
Jason W Kimfc5c5222010-12-01 22:46:50 +0000324 if ((int64_t)Value < 0) {
325 Value = -Value;
326 isAdd = false;
327 }
Jim Grosbache78031a2012-04-30 22:30:43 +0000328 if (Ctx && Value >= 4096)
329 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jason W Kimfc5c5222010-12-01 22:46:50 +0000330 Value |= isAdd << 23;
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000331
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000332 // Same addressing mode as fixup_arm_pcrel_10,
333 // but with 16-bit halfwords swapped.
334 if (Kind == ARM::fixup_t2_ldst_pcrel_12) {
335 uint64_t swapped = (Value & 0xFFFF0000) >> 16;
336 swapped |= (Value & 0x0000FFFF) << 16;
337 return swapped;
338 }
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000339
Jason W Kimfc5c5222010-12-01 22:46:50 +0000340 return Value;
341 }
Jim Grosbach509dc2a2010-12-14 22:28:03 +0000342 case ARM::fixup_thumb_adr_pcrel_10:
343 return ((Value - 4) >> 2) & 0xff;
Jim Grosbachce2bd8d2010-12-02 00:28:45 +0000344 case ARM::fixup_arm_adr_pcrel_12: {
345 // ARM PC-relative values are offset by 8.
346 Value -= 8;
347 unsigned opc = 4; // bits {24-21}. Default to add: 0b0100
348 if ((int64_t)Value < 0) {
349 Value = -Value;
350 opc = 2; // 0b0010
351 }
Jim Grosbache78031a2012-04-30 22:30:43 +0000352 if (Ctx && ARM_AM::getSOImmVal(Value) == -1)
353 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jim Grosbachce2bd8d2010-12-02 00:28:45 +0000354 // Encode the immediate and shift the opcode into place.
355 return ARM_AM::getSOImmVal(Value) | (opc << 21);
356 }
Jim Grosbache34793e2010-12-14 16:25:15 +0000357
Owen Anderson6d375e52010-12-14 00:36:49 +0000358 case ARM::fixup_t2_adr_pcrel_12: {
359 Value -= 4;
360 unsigned opc = 0;
361 if ((int64_t)Value < 0) {
362 Value = -Value;
363 opc = 5;
364 }
365
366 uint32_t out = (opc << 21);
Owen Anderson8543d4f2011-03-23 22:03:44 +0000367 out |= (Value & 0x800) << 15;
Owen Anderson6d375e52010-12-14 00:36:49 +0000368 out |= (Value & 0x700) << 4;
369 out |= (Value & 0x0FF);
Jim Grosbache34793e2010-12-14 16:25:15 +0000370
Owen Anderson6d375e52010-12-14 00:36:49 +0000371 uint64_t swapped = (out & 0xFFFF0000) >> 16;
372 swapped |= (out & 0x0000FFFF) << 16;
373 return swapped;
374 }
Jim Grosbache34793e2010-12-14 16:25:15 +0000375
Jason W Kimd2e2f562011-02-04 19:47:15 +0000376 case ARM::fixup_arm_condbranch:
377 case ARM::fixup_arm_uncondbranch:
James Molloyfb5cd602012-03-30 09:15:32 +0000378 case ARM::fixup_arm_uncondbl:
379 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +0000380 case ARM::fixup_arm_blx:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000381 // These values don't encode the low two bits since they're always zero.
382 // Offset by 8 just as above.
Saleem Abdulrasool6e00ca82014-01-30 04:02:31 +0000383 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Fixup.getValue()))
384 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_TLSCALL)
385 return 0;
Jim Grosbach9e199462010-12-06 23:57:07 +0000386 return 0xffffff & ((Value - 8) >> 2);
Owen Anderson578074b2010-12-13 19:31:11 +0000387 case ARM::fixup_t2_uncondbranch: {
Owen Anderson235c2762010-12-10 23:02:28 +0000388 Value = Value - 4;
Owen Anderson302d5fd2010-12-09 00:27:41 +0000389 Value >>= 1; // Low bit is not encoded.
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000390
Jim Grosbachf588c512010-12-13 19:25:46 +0000391 uint32_t out = 0;
Owen Anderson578074b2010-12-13 19:31:11 +0000392 bool I = Value & 0x800000;
393 bool J1 = Value & 0x400000;
394 bool J2 = Value & 0x200000;
395 J1 ^= I;
396 J2 ^= I;
Jim Grosbache34793e2010-12-14 16:25:15 +0000397
Owen Anderson578074b2010-12-13 19:31:11 +0000398 out |= I << 26; // S bit
399 out |= !J1 << 13; // J1 bit
400 out |= !J2 << 11; // J2 bit
401 out |= (Value & 0x1FF800) << 5; // imm6 field
402 out |= (Value & 0x0007FF); // imm11 field
Jim Grosbache34793e2010-12-14 16:25:15 +0000403
Owen Anderson578074b2010-12-13 19:31:11 +0000404 uint64_t swapped = (out & 0xFFFF0000) >> 16;
405 swapped |= (out & 0x0000FFFF) << 16;
406 return swapped;
407 }
408 case ARM::fixup_t2_condbranch: {
409 Value = Value - 4;
410 Value >>= 1; // Low bit is not encoded.
Jim Grosbache34793e2010-12-14 16:25:15 +0000411
Owen Anderson578074b2010-12-13 19:31:11 +0000412 uint64_t out = 0;
Owen Anderson14e41272010-12-09 01:02:09 +0000413 out |= (Value & 0x80000) << 7; // S bit
414 out |= (Value & 0x40000) >> 7; // J2 bit
415 out |= (Value & 0x20000) >> 4; // J1 bit
416 out |= (Value & 0x1F800) << 5; // imm6 field
417 out |= (Value & 0x007FF); // imm11 field
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000418
Jim Grosbachf588c512010-12-13 19:25:46 +0000419 uint32_t swapped = (out & 0xFFFF0000) >> 16;
Owen Anderson302d5fd2010-12-09 00:27:41 +0000420 swapped |= (out & 0x0000FFFF) << 16;
421 return swapped;
422 }
Jim Grosbach9e199462010-12-06 23:57:07 +0000423 case ARM::fixup_arm_thumb_bl: {
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000424 // The value doesn't encode the low bit (always zero) and is offset by
425 // four. The 32-bit immediate value is encoded as
426 // imm32 = SignExtend(S:I1:I2:imm10:imm11:0)
427 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
428 // The value is encoded into disjoint bit positions in the destination
429 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
430 // J = either J1 or J2 bit
431 //
432 // BL: xxxxxSIIIIIIIIII xxJxJIIIIIIIIIII
433 //
434 // Note that the halfwords are stored high first, low second; so we need
435 // to transpose the fixup value here to map properly.
436 uint32_t offset = (Value - 4) >> 1;
437 uint32_t signBit = (offset & 0x800000) >> 23;
438 uint32_t I1Bit = (offset & 0x400000) >> 22;
439 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
440 uint32_t I2Bit = (offset & 0x200000) >> 21;
441 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
442 uint32_t imm10Bits = (offset & 0x1FF800) >> 11;
443 uint32_t imm11Bits = (offset & 0x000007FF);
NAKAMURA Takumi8018a292013-06-11 06:52:36 +0000444
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000445 uint32_t Binary = 0;
446 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
447 uint32_t secondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
448 (uint16_t)imm11Bits);
449 Binary |= secondHalf << 16;
450 Binary |= firstHalf;
451 return Binary;
Bill Wendling3392bfc2010-12-09 00:39:08 +0000452 }
453 case ARM::fixup_arm_thumb_blx: {
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000454 // The value doesn't encode the low two bits (always zero) and is offset by
455 // four (see fixup_arm_thumb_cp). The 32-bit immediate value is encoded as
456 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:00)
457 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
458 // The value is encoded into disjoint bit positions in the destination
459 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
460 // J = either J1 or J2 bit, 0 = zero.
461 //
462 // BLX: xxxxxSIIIIIIIIII xxJxJIIIIIIIIII0
463 //
464 // Note that the halfwords are stored high first, low second; so we need
465 // to transpose the fixup value here to map properly.
466 uint32_t offset = (Value - 2) >> 2;
Saleem Abdulrasool6e00ca82014-01-30 04:02:31 +0000467 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Fixup.getValue()))
468 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_TLSCALL)
469 offset = 0;
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000470 uint32_t signBit = (offset & 0x400000) >> 22;
471 uint32_t I1Bit = (offset & 0x200000) >> 21;
472 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
473 uint32_t I2Bit = (offset & 0x100000) >> 20;
474 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
475 uint32_t imm10HBits = (offset & 0xFFC00) >> 10;
476 uint32_t imm10LBits = (offset & 0x3FF);
NAKAMURA Takumi8018a292013-06-11 06:52:36 +0000477
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000478 uint32_t Binary = 0;
479 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
480 uint32_t secondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
481 ((uint16_t)imm10LBits) << 1);
482 Binary |= secondHalf << 16;
483 Binary |= firstHalf;
484 return Binary;
Jim Grosbach9e199462010-12-06 23:57:07 +0000485 }
Bill Wendling8a6449c2010-12-08 01:57:09 +0000486 case ARM::fixup_arm_thumb_cp:
Jim Grosbach3c685612010-12-08 20:32:07 +0000487 // Offset by 4, and don't encode the low two bits. Two bytes of that
488 // 'off by 4' is implicitly handled by the half-word ordering of the
489 // Thumb encoding, so we only need to adjust by 2 here.
490 return ((Value - 2) >> 2) & 0xff;
Jim Grosbach68b27eb2010-12-09 19:50:12 +0000491 case ARM::fixup_arm_thumb_cb: {
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000492 // Offset by 4 and don't encode the lower bit, which is always 0.
493 uint32_t Binary = (Value - 4) >> 1;
Owen Andersonf636a642010-12-14 19:42:53 +0000494 return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3);
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000495 }
Jim Grosbache119da12010-12-10 18:21:33 +0000496 case ARM::fixup_arm_thumb_br:
497 // Offset by 4 and don't encode the lower bit, which is always 0.
498 return ((Value - 4) >> 1) & 0x7ff;
Jim Grosbach78485ad2010-12-10 17:13:40 +0000499 case ARM::fixup_arm_thumb_bcc:
500 // Offset by 4 and don't encode the lower bit, which is always 0.
501 return ((Value - 4) >> 1) & 0xff;
Jim Grosbach8648c102011-12-19 23:06:24 +0000502 case ARM::fixup_arm_pcrel_10_unscaled: {
503 Value = Value - 8; // ARM fixups offset by an additional word and don't
504 // need to adjust for the half-word ordering.
505 bool isAdd = true;
506 if ((int64_t)Value < 0) {
507 Value = -Value;
508 isAdd = false;
509 }
Jim Grosbach913cc302012-03-30 21:54:22 +0000510 // 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 +0000511 if (Ctx && Value >= 256)
512 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jim Grosbach913cc302012-03-30 21:54:22 +0000513 Value = (Value & 0xf) | ((Value & 0xf0) << 4);
Jim Grosbach8648c102011-12-19 23:06:24 +0000514 return Value | (isAdd << 23);
515 }
Jim Grosbach3c685612010-12-08 20:32:07 +0000516 case ARM::fixup_arm_pcrel_10:
Owen Anderson4743d752010-12-10 22:46:47 +0000517 Value = Value - 4; // ARM fixups offset by an additional word and don't
Jim Grosbach3c685612010-12-08 20:32:07 +0000518 // need to adjust for the half-word ordering.
519 // Fall through.
520 case ARM::fixup_t2_pcrel_10: {
521 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson4743d752010-12-10 22:46:47 +0000522 Value = Value - 4;
Jason W Kimfc5c5222010-12-01 22:46:50 +0000523 bool isAdd = true;
524 if ((int64_t)Value < 0) {
525 Value = -Value;
526 isAdd = false;
527 }
528 // These values don't encode the low two bits since they're always zero.
529 Value >>= 2;
Jim Grosbache78031a2012-04-30 22:30:43 +0000530 if (Ctx && Value >= 256)
531 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
Jason W Kimfc5c5222010-12-01 22:46:50 +0000532 Value |= isAdd << 23;
Jim Grosbach3c685612010-12-08 20:32:07 +0000533
Jim Grosbach8648c102011-12-19 23:06:24 +0000534 // Same addressing mode as fixup_arm_pcrel_10, but with 16-bit halfwords
535 // swapped.
Owen Anderson0f7142d2010-12-08 00:18:36 +0000536 if (Kind == ARM::fixup_t2_pcrel_10) {
Jim Grosbachf588c512010-12-13 19:25:46 +0000537 uint32_t swapped = (Value & 0xFFFF0000) >> 16;
Owen Anderson72ce4532010-12-08 00:21:33 +0000538 swapped |= (Value & 0x0000FFFF) << 16;
Owen Anderson0f7142d2010-12-08 00:18:36 +0000539 return swapped;
540 }
Jim Grosbach3c685612010-12-08 20:32:07 +0000541
Jason W Kimfc5c5222010-12-01 22:46:50 +0000542 return Value;
543 }
544 }
545}
546
Jim Grosbache78031a2012-04-30 22:30:43 +0000547void ARMAsmBackend::processFixupValue(const MCAssembler &Asm,
548 const MCAsmLayout &Layout,
549 const MCFixup &Fixup,
550 const MCFragment *DF,
551 MCValue &Target, uint64_t &Value,
552 bool &IsResolved) {
553 const MCSymbolRefExpr *A = Target.getSymA();
554 // Some fixups to thumb function symbols need the low bit (thumb bit)
555 // twiddled.
556 if ((unsigned)Fixup.getKind() != ARM::fixup_arm_ldst_pcrel_12 &&
557 (unsigned)Fixup.getKind() != ARM::fixup_t2_ldst_pcrel_12 &&
558 (unsigned)Fixup.getKind() != ARM::fixup_arm_adr_pcrel_12 &&
559 (unsigned)Fixup.getKind() != ARM::fixup_thumb_adr_pcrel_10 &&
560 (unsigned)Fixup.getKind() != ARM::fixup_t2_adr_pcrel_12 &&
561 (unsigned)Fixup.getKind() != ARM::fixup_arm_thumb_cp) {
562 if (A) {
563 const MCSymbol &Sym = A->getSymbol().AliasedSymbol();
564 if (Asm.isThumbFunc(&Sym))
565 Value |= 1;
566 }
567 }
Logan Chiend5c48aa2014-02-05 14:15:16 +0000568 // For Thumb1 BL instruction, it is possible to be a long jump between
569 // the basic blocks of the same function. Thus, we would like to resolve
570 // the offset when the destination has the same MCFragment.
571 if (A && (unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_bl) {
572 const MCSymbol &Sym = A->getSymbol().AliasedSymbol();
573 MCSymbolData &SymData = Asm.getSymbolData(Sym);
574 IsResolved = (SymData.getFragment() == DF);
575 }
Jim Grosbache78031a2012-04-30 22:30:43 +0000576 // We must always generate a relocation for BL/BLX instructions if we have
577 // a symbol to reference, as the linker relies on knowing the destination
578 // symbol's thumb-ness to get interworking right.
579 if (A && ((unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_blx ||
Jim Grosbache78031a2012-04-30 22:30:43 +0000580 (unsigned)Fixup.getKind() == ARM::fixup_arm_blx ||
581 (unsigned)Fixup.getKind() == ARM::fixup_arm_uncondbl ||
582 (unsigned)Fixup.getKind() == ARM::fixup_arm_condbl))
583 IsResolved = false;
584
585 // Try to get the encoded value for the fixup as-if we're mapping it into
586 // the instruction. This allows adjustFixupValue() to issue a diagnostic
587 // if the value aren't invalid.
588 (void)adjustFixupValue(Fixup, Value, &Asm.getContext());
589}
590
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000591/// getFixupKindNumBytes - The number of bytes the fixup may change.
Jim Grosbach9d6d77a2010-11-11 18:04:49 +0000592static unsigned getFixupKindNumBytes(unsigned Kind) {
Jim Grosbach90987142010-11-09 01:37:15 +0000593 switch (Kind) {
Jim Grosbach9e199462010-12-06 23:57:07 +0000594 default:
595 llvm_unreachable("Unknown fixup kind!");
Bill Wendling8a6449c2010-12-08 01:57:09 +0000596
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000597 case FK_Data_1:
Jim Grosbach78485ad2010-12-10 17:13:40 +0000598 case ARM::fixup_arm_thumb_bcc:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000599 case ARM::fixup_arm_thumb_cp:
Jim Grosbach509dc2a2010-12-14 22:28:03 +0000600 case ARM::fixup_thumb_adr_pcrel_10:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000601 return 1;
602
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000603 case FK_Data_2:
Jim Grosbache119da12010-12-10 18:21:33 +0000604 case ARM::fixup_arm_thumb_br:
Jim Grosbach68b27eb2010-12-09 19:50:12 +0000605 case ARM::fixup_arm_thumb_cb:
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000606 return 2;
607
Jim Grosbach8648c102011-12-19 23:06:24 +0000608 case ARM::fixup_arm_pcrel_10_unscaled:
Jim Grosbach9e199462010-12-06 23:57:07 +0000609 case ARM::fixup_arm_ldst_pcrel_12:
610 case ARM::fixup_arm_pcrel_10:
611 case ARM::fixup_arm_adr_pcrel_12:
James Molloyfb5cd602012-03-30 09:15:32 +0000612 case ARM::fixup_arm_uncondbl:
613 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +0000614 case ARM::fixup_arm_blx:
Jason W Kimd2e2f562011-02-04 19:47:15 +0000615 case ARM::fixup_arm_condbranch:
616 case ARM::fixup_arm_uncondbranch:
Jim Grosbach9e199462010-12-06 23:57:07 +0000617 return 3;
Bill Wendling8a6449c2010-12-08 01:57:09 +0000618
619 case FK_Data_4:
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000620 case ARM::fixup_t2_ldst_pcrel_12:
Owen Anderson578074b2010-12-13 19:31:11 +0000621 case ARM::fixup_t2_condbranch:
622 case ARM::fixup_t2_uncondbranch:
Owen Anderson0f7142d2010-12-08 00:18:36 +0000623 case ARM::fixup_t2_pcrel_10:
Owen Anderson6d375e52010-12-14 00:36:49 +0000624 case ARM::fixup_t2_adr_pcrel_12:
Jim Grosbach9e199462010-12-06 23:57:07 +0000625 case ARM::fixup_arm_thumb_bl:
Bill Wendling3392bfc2010-12-09 00:39:08 +0000626 case ARM::fixup_arm_thumb_blx:
Evan Chengd4a5c052011-01-14 02:38:49 +0000627 case ARM::fixup_arm_movt_hi16:
628 case ARM::fixup_arm_movw_lo16:
629 case ARM::fixup_arm_movt_hi16_pcrel:
630 case ARM::fixup_arm_movw_lo16_pcrel:
631 case ARM::fixup_t2_movt_hi16:
632 case ARM::fixup_t2_movw_lo16:
633 case ARM::fixup_t2_movt_hi16_pcrel:
634 case ARM::fixup_t2_movw_lo16_pcrel:
Jim Grosbach9e199462010-12-06 23:57:07 +0000635 return 4;
Jim Grosbach90987142010-11-09 01:37:15 +0000636 }
637}
638
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000639void ARMAsmBackend::applyFixup(const MCFixup &Fixup, char *Data,
640 unsigned DataSize, uint64_t Value) const {
Jim Grosbach9d6d77a2010-11-11 18:04:49 +0000641 unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind());
Jim Grosbache78031a2012-04-30 22:30:43 +0000642 Value = adjustFixupValue(Fixup, Value);
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000643 if (!Value) return; // Doesn't change encoding.
Jim Grosbach90987142010-11-09 01:37:15 +0000644
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000645 unsigned Offset = Fixup.getOffset();
646 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
647
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000648 // For each byte of the fragment that the fixup touches, mask in the bits from
649 // the fixup value. The Value has been "split up" into the appropriate
650 // bitfields above.
Jim Grosbach90987142010-11-09 01:37:15 +0000651 for (unsigned i = 0; i != NumBytes; ++i)
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000652 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
Jason W Kimb3212452010-09-30 02:17:26 +0000653}
Bill Wendling721724e2010-12-07 23:05:20 +0000654
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000655namespace {
656
657// FIXME: This should be in a separate file.
658// ELF is an ELF of course...
659class ELFARMAsmBackend : public ARMAsmBackend {
660public:
661 uint8_t OSABI;
662 ELFARMAsmBackend(const Target &T, const StringRef TT,
663 uint8_t _OSABI)
664 : ARMAsmBackend(T, TT), OSABI(_OSABI) { }
665
666 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
667 return createARMELFObjectWriter(OS, OSABI);
668 }
669};
670
671// FIXME: This should be in a separate file.
672class DarwinARMAsmBackend : public ARMAsmBackend {
673public:
Charles Davis8bdfafd2013-09-01 04:28:48 +0000674 const MachO::CPUSubTypeARM Subtype;
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000675 DarwinARMAsmBackend(const Target &T, const StringRef TT,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000676 MachO::CPUSubTypeARM st)
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000677 : ARMAsmBackend(T, TT), Subtype(st) {
678 HasDataInCodeSupport = true;
679 }
680
681 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
682 return createARMMachObjectWriter(OS, /*Is64Bit=*/false,
Charles Davis8bdfafd2013-09-01 04:28:48 +0000683 MachO::CPU_TYPE_ARM,
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000684 Subtype);
685 }
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000686};
687
Jim Grosbach689651c2010-09-30 03:21:00 +0000688} // end anonymous namespace
Jason W Kimb3212452010-09-30 02:17:26 +0000689
Bill Wendling58e2d3d2013-09-09 02:37:14 +0000690MCAsmBackend *llvm::createARMAsmBackend(const Target &T,
691 const MCRegisterInfo &MRI,
692 StringRef TT, StringRef CPU) {
Owen Anderson975ddf82011-04-01 21:07:39 +0000693 Triple TheTriple(TT);
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000694
Tim Northoverd6a729b2014-01-06 14:28:05 +0000695 if (TheTriple.isOSBinFormatMachO()) {
Charles Davis8bdfafd2013-09-01 04:28:48 +0000696 MachO::CPUSubTypeARM CS =
697 StringSwitch<MachO::CPUSubTypeARM>(TheTriple.getArchName())
698 .Cases("armv4t", "thumbv4t", MachO::CPU_SUBTYPE_ARM_V4T)
699 .Cases("armv5e", "thumbv5e", MachO::CPU_SUBTYPE_ARM_V5TEJ)
700 .Cases("armv6", "thumbv6", MachO::CPU_SUBTYPE_ARM_V6)
701 .Cases("armv6m", "thumbv6m", MachO::CPU_SUBTYPE_ARM_V6M)
702 .Cases("armv7em", "thumbv7em", MachO::CPU_SUBTYPE_ARM_V7EM)
Charles Davis8bdfafd2013-09-01 04:28:48 +0000703 .Cases("armv7k", "thumbv7k", MachO::CPU_SUBTYPE_ARM_V7K)
704 .Cases("armv7m", "thumbv7m", MachO::CPU_SUBTYPE_ARM_V7M)
705 .Cases("armv7s", "thumbv7s", MachO::CPU_SUBTYPE_ARM_V7S)
706 .Default(MachO::CPU_SUBTYPE_ARM_V7);
Quentin Colombet77ca8b82013-01-14 21:34:09 +0000707
708 return new DarwinARMAsmBackend(T, TT, CS);
Owen Anderson975ddf82011-04-01 21:07:39 +0000709 }
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000710
NAKAMURA Takumi4d5ee8042013-06-11 10:01:42 +0000711#if 0
712 // FIXME: Introduce yet another checker but assert(0).
NAKAMURA Takumi76380ab2013-06-11 06:52:43 +0000713 if (TheTriple.isOSBinFormatCOFF())
NAKAMURA Takumi4d5ee8042013-06-11 10:01:42 +0000714 assert(0 && "Windows not supported on ARM");
715#endif
Daniel Dunbar2b9b0e32011-04-19 21:14:45 +0000716
Rafael Espindola1ad40952011-12-21 17:00:36 +0000717 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
718 return new ELFARMAsmBackend(T, TT, OSABI);
Jason W Kimb3212452010-09-30 02:17:26 +0000719}