blob: 6101495a45023c1e864e9d1b8715a2fa30787477 [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"
Joe Abbey8e72eb72014-09-16 09:18:23 +000012#include "MCTargetDesc/ARMAsmBackend.h"
13#include "MCTargetDesc/ARMAsmBackendDarwin.h"
14#include "MCTargetDesc/ARMAsmBackendELF.h"
15#include "MCTargetDesc/ARMAsmBackendWinCOFF.h"
Evan Chengad5f4852011-07-23 00:00:19 +000016#include "MCTargetDesc/ARMBaseInfo.h"
17#include "MCTargetDesc/ARMFixupKinds.h"
Quentin Colombet77ca8b82013-01-14 21:34:09 +000018#include "llvm/ADT/StringSwitch.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/MC/MCAsmBackend.h"
Jason W Kimb3212452010-09-30 02:17:26 +000020#include "llvm/MC/MCAssembler.h"
Jim Grosbache78031a2012-04-30 22:30:43 +000021#include "llvm/MC/MCContext.h"
Jim Grosbach87055ed2010-12-08 01:16:55 +000022#include "llvm/MC/MCDirectives.h"
Rafael Espindolaf0e24d42010-12-17 16:59:53 +000023#include "llvm/MC/MCELFObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000024#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000025#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbar73b87132010-12-16 16:08:33 +000026#include "llvm/MC/MCMachObjectWriter.h"
Jason W Kimb3212452010-09-30 02:17:26 +000027#include "llvm/MC/MCObjectWriter.h"
Tim Northoverf8e47e42015-10-28 22:56:36 +000028#include "llvm/MC/MCRegisterInfo.h"
Jason W Kimb3212452010-09-30 02:17:26 +000029#include "llvm/MC/MCSectionELF.h"
30#include "llvm/MC/MCSectionMachO.h"
Jim Grosbach45e50d82011-08-16 17:06:20 +000031#include "llvm/MC/MCSubtargetInfo.h"
Jim Grosbach3b50c9e2012-01-18 00:23:57 +000032#include "llvm/MC/MCValue.h"
Tim Northoverf8e47e42015-10-28 22:56:36 +000033#include "llvm/Support/Debug.h"
Wesley Peck18510902010-10-22 15:52:49 +000034#include "llvm/Support/ELF.h"
Jason W Kimb3212452010-09-30 02:17:26 +000035#include "llvm/Support/ErrorHandling.h"
Tim Northoverf8e47e42015-10-28 22:56:36 +000036#include "llvm/Support/Format.h"
Charles Davis8bdfafd2013-09-01 04:28:48 +000037#include "llvm/Support/MachO.h"
Vedant Kumar366dd9fd2015-08-21 21:52:48 +000038#include "llvm/Support/TargetParser.h"
Jason W Kimb3212452010-09-30 02:17:26 +000039#include "llvm/Support/raw_ostream.h"
Jason W Kimb3212452010-09-30 02:17:26 +000040using namespace llvm;
41
42namespace {
Rafael Espindola6b5e56c2010-12-17 17:45:22 +000043class ARMELFObjectWriter : public MCELFObjectTargetWriter {
44public:
Rafael Espindola1ad40952011-12-21 17:00:36 +000045 ARMELFObjectWriter(uint8_t OSABI)
Joe Abbey8e72eb72014-09-16 09:18:23 +000046 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSABI, ELF::EM_ARM,
47 /*HasRelocationAddend*/ false) {}
Rafael Espindola6b5e56c2010-12-17 17:45:22 +000048};
49
Joe Abbey8e72eb72014-09-16 09:18:23 +000050const MCFixupKindInfo &ARMAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
51 const static MCFixupKindInfo InfosLE[ARM::NumTargetFixupKinds] = {
52 // This table *must* be in the order that the fixup_* kinds are defined in
53 // ARMFixupKinds.h.
54 //
55 // Name Offset (bits) Size (bits) Flags
56 {"fixup_arm_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
57 {"fixup_t2_ldst_pcrel_12", 0, 32,
58 MCFixupKindInfo::FKF_IsPCRel |
59 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
60 {"fixup_arm_pcrel_10_unscaled", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
61 {"fixup_arm_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
62 {"fixup_t2_pcrel_10", 0, 32,
63 MCFixupKindInfo::FKF_IsPCRel |
64 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
65 {"fixup_thumb_adr_pcrel_10", 0, 8,
66 MCFixupKindInfo::FKF_IsPCRel |
67 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
68 {"fixup_arm_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
69 {"fixup_t2_adr_pcrel_12", 0, 32,
70 MCFixupKindInfo::FKF_IsPCRel |
71 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
72 {"fixup_arm_condbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel},
73 {"fixup_arm_uncondbranch", 0, 24, MCFixupKindInfo::FKF_IsPCRel},
74 {"fixup_t2_condbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
75 {"fixup_t2_uncondbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
76 {"fixup_arm_thumb_br", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
77 {"fixup_arm_uncondbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel},
78 {"fixup_arm_condbl", 0, 24, MCFixupKindInfo::FKF_IsPCRel},
79 {"fixup_arm_blx", 0, 24, MCFixupKindInfo::FKF_IsPCRel},
80 {"fixup_arm_thumb_bl", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
81 {"fixup_arm_thumb_blx", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
82 {"fixup_arm_thumb_cb", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
83 {"fixup_arm_thumb_cp", 0, 8,
84 MCFixupKindInfo::FKF_IsPCRel |
85 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
86 {"fixup_arm_thumb_bcc", 0, 8, MCFixupKindInfo::FKF_IsPCRel},
87 // movw / movt: 16-bits immediate but scattered into two chunks 0 - 12, 16
88 // - 19.
89 {"fixup_arm_movt_hi16", 0, 20, 0},
90 {"fixup_arm_movw_lo16", 0, 20, 0},
91 {"fixup_t2_movt_hi16", 0, 20, 0},
92 {"fixup_t2_movw_lo16", 0, 20, 0},
93 };
94 const static MCFixupKindInfo InfosBE[ARM::NumTargetFixupKinds] = {
95 // This table *must* be in the order that the fixup_* kinds are defined in
96 // ARMFixupKinds.h.
97 //
98 // Name Offset (bits) Size (bits) Flags
99 {"fixup_arm_ldst_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
100 {"fixup_t2_ldst_pcrel_12", 0, 32,
101 MCFixupKindInfo::FKF_IsPCRel |
102 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
103 {"fixup_arm_pcrel_10_unscaled", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
104 {"fixup_arm_pcrel_10", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
105 {"fixup_t2_pcrel_10", 0, 32,
106 MCFixupKindInfo::FKF_IsPCRel |
107 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
108 {"fixup_thumb_adr_pcrel_10", 8, 8,
109 MCFixupKindInfo::FKF_IsPCRel |
110 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
111 {"fixup_arm_adr_pcrel_12", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
112 {"fixup_t2_adr_pcrel_12", 0, 32,
113 MCFixupKindInfo::FKF_IsPCRel |
114 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
115 {"fixup_arm_condbranch", 8, 24, MCFixupKindInfo::FKF_IsPCRel},
116 {"fixup_arm_uncondbranch", 8, 24, MCFixupKindInfo::FKF_IsPCRel},
117 {"fixup_t2_condbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
118 {"fixup_t2_uncondbranch", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
119 {"fixup_arm_thumb_br", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
120 {"fixup_arm_uncondbl", 8, 24, MCFixupKindInfo::FKF_IsPCRel},
121 {"fixup_arm_condbl", 8, 24, MCFixupKindInfo::FKF_IsPCRel},
122 {"fixup_arm_blx", 8, 24, MCFixupKindInfo::FKF_IsPCRel},
123 {"fixup_arm_thumb_bl", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
124 {"fixup_arm_thumb_blx", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
125 {"fixup_arm_thumb_cb", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
126 {"fixup_arm_thumb_cp", 8, 8,
127 MCFixupKindInfo::FKF_IsPCRel |
128 MCFixupKindInfo::FKF_IsAlignedDownTo32Bits},
129 {"fixup_arm_thumb_bcc", 8, 8, MCFixupKindInfo::FKF_IsPCRel},
130 // movw / movt: 16-bits immediate but scattered into two chunks 0 - 12, 16
131 // - 19.
132 {"fixup_arm_movt_hi16", 12, 20, 0},
133 {"fixup_arm_movw_lo16", 12, 20, 0},
134 {"fixup_t2_movt_hi16", 12, 20, 0},
135 {"fixup_t2_movw_lo16", 12, 20, 0},
136 };
Jim Grosbach45e50d82011-08-16 17:06:20 +0000137
Joe Abbey8e72eb72014-09-16 09:18:23 +0000138 if (Kind < FirstTargetFixupKind)
139 return MCAsmBackend::getFixupKindInfo(Kind);
140
141 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
142 "Invalid kind!");
143 return (IsLittleEndian ? InfosLE : InfosBE)[Kind - FirstTargetFixupKind];
144}
145
146void ARMAsmBackend::handleAssemblerFlag(MCAssemblerFlag Flag) {
147 switch (Flag) {
148 default:
149 break;
150 case MCAF_Code16:
151 setIsThumb(true);
152 break;
153 case MCAF_Code32:
154 setIsThumb(false);
155 break;
Jim Grosbach45e50d82011-08-16 17:06:20 +0000156 }
Joe Abbey8e72eb72014-09-16 09:18:23 +0000157}
Chris Lattner9fdd10d2010-11-17 05:41:32 +0000158} // end anonymous namespace
Jason W Kimb3212452010-09-30 02:17:26 +0000159
Tim Northover42335572015-04-06 18:44:42 +0000160unsigned ARMAsmBackend::getRelaxedOpcode(unsigned Op) const {
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000161 bool HasThumb2 = STI->getFeatureBits()[ARM::FeatureThumb2];
Bradley Smitha1189102016-01-15 10:26:17 +0000162 bool HasV8MBaselineOps = STI->getFeatureBits()[ARM::HasV8MBaselineOps];
Tim Northover42335572015-04-06 18:44:42 +0000163
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000164 switch (Op) {
Joe Abbey8e72eb72014-09-16 09:18:23 +0000165 default:
166 return Op;
167 case ARM::tBcc:
Aaron Ballmanac336242015-04-07 13:28:37 +0000168 return HasThumb2 ? (unsigned)ARM::t2Bcc : Op;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000169 case ARM::tLDRpci:
Aaron Ballmanac336242015-04-07 13:28:37 +0000170 return HasThumb2 ? (unsigned)ARM::t2LDRpci : Op;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000171 case ARM::tADR:
Aaron Ballmanac336242015-04-07 13:28:37 +0000172 return HasThumb2 ? (unsigned)ARM::t2ADR : Op;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000173 case ARM::tB:
Bradley Smitha1189102016-01-15 10:26:17 +0000174 return HasV8MBaselineOps ? (unsigned)ARM::t2B : Op;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000175 case ARM::tCBZ:
176 return ARM::tHINT;
177 case ARM::tCBNZ:
178 return ARM::tHINT;
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000179 }
180}
181
Jim Grosbachaba3de92012-01-18 18:52:16 +0000182bool ARMAsmBackend::mayNeedRelaxation(const MCInst &Inst) const {
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000183 if (getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode())
184 return true;
Jason W Kimb3212452010-09-30 02:17:26 +0000185 return false;
186}
187
Tim Northover8d67b8e2015-10-02 18:07:18 +0000188const char *ARMAsmBackend::reasonForFixupRelaxation(const MCFixup &Fixup,
189 uint64_t Value) const {
Benjamin Kramer116e99a2012-01-19 21:11:13 +0000190 switch ((unsigned)Fixup.getKind()) {
Jim Grosbachc4aa60f2012-03-19 21:32:32 +0000191 case ARM::fixup_arm_thumb_br: {
192 // Relaxing tB to t2B. tB has a signed 12-bit displacement with the
193 // low bit being an implied zero. There's an implied +4 offset for the
194 // branch, so we adjust the other way here to determine what's
195 // encodable.
196 //
197 // Relax if the value is too big for a (signed) i8.
198 int64_t Offset = int64_t(Value) - 4;
Tim Northover8d67b8e2015-10-02 18:07:18 +0000199 if (Offset > 2046 || Offset < -2048)
200 return "out of range pc-relative fixup value";
201 break;
Jim Grosbachc4aa60f2012-03-19 21:32:32 +0000202 }
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000203 case ARM::fixup_arm_thumb_bcc: {
204 // Relaxing tBcc to t2Bcc. tBcc has a signed 9-bit displacement with the
205 // low bit being an implied zero. There's an implied +4 offset for the
206 // branch, so we adjust the other way here to determine what's
207 // encodable.
208 //
209 // Relax if the value is too big for a (signed) i8.
210 int64_t Offset = int64_t(Value) - 4;
Tim Northover8d67b8e2015-10-02 18:07:18 +0000211 if (Offset > 254 || Offset < -256)
212 return "out of range pc-relative fixup value";
213 break;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000214 }
Jim Grosbach44e5c392012-01-19 02:09:38 +0000215 case ARM::fixup_thumb_adr_pcrel_10:
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000216 case ARM::fixup_arm_thumb_cp: {
Jim Grosbachb008df42012-01-19 01:50:30 +0000217 // If the immediate is negative, greater than 1020, or not a multiple
218 // of four, the wide version of the instruction must be used.
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000219 int64_t Offset = int64_t(Value) - 4;
Tim Northover8d67b8e2015-10-02 18:07:18 +0000220 if (Offset & 3)
221 return "misaligned pc-relative fixup value";
222 else if (Offset > 1020 || Offset < 0)
223 return "out of range pc-relative fixup value";
224 break;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000225 }
Tim Northover8d67b8e2015-10-02 18:07:18 +0000226 case ARM::fixup_arm_thumb_cb: {
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000227 // If we have a Thumb CBZ or CBNZ instruction and its target is the next
228 // instruction it is is actually out of range for the instruction.
229 // It will be changed to a NOP.
230 int64_t Offset = (Value & ~1);
Tim Northover8d67b8e2015-10-02 18:07:18 +0000231 if (Offset == 2)
232 return "will be converted to nop";
233 break;
Jim Grosbachcb80eb22012-01-18 21:54:16 +0000234 }
Tim Northover8d67b8e2015-10-02 18:07:18 +0000235 default:
236 llvm_unreachable("Unexpected fixup kind in reasonForFixupRelaxation()!");
237 }
238 return nullptr;
239}
240
241bool ARMAsmBackend::fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
242 const MCRelaxableFragment *DF,
243 const MCAsmLayout &Layout) const {
244 return reasonForFixupRelaxation(Fixup, Value);
Jim Grosbach25b63fa2011-12-06 00:47:03 +0000245}
246
Jim Grosbachaba3de92012-01-18 18:52:16 +0000247void ARMAsmBackend::relaxInstruction(const MCInst &Inst, MCInst &Res) const {
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000248 unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
249
250 // Sanity check w/ diagnostic if we get here w/ a bogus instruction.
251 if (RelaxedOp == Inst.getOpcode()) {
252 SmallString<256> Tmp;
253 raw_svector_ostream OS(Tmp);
254 Inst.dump_pretty(OS);
255 OS << "\n";
256 report_fatal_error("unexpected instruction to relax: " + OS.str());
257 }
258
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000259 // If we are changing Thumb CBZ or CBNZ instruction to a NOP, aka tHINT, we
260 // have to change the operands too.
261 if ((Inst.getOpcode() == ARM::tCBZ || Inst.getOpcode() == ARM::tCBNZ) &&
262 RelaxedOp == ARM::tHINT) {
263 Res.setOpcode(RelaxedOp);
Jim Grosbache9119e42015-05-13 18:37:00 +0000264 Res.addOperand(MCOperand::createImm(0));
265 Res.addOperand(MCOperand::createImm(14));
266 Res.addOperand(MCOperand::createReg(0));
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000267 return;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000268 }
Kevin Enderby9bd296a2014-01-10 00:43:32 +0000269
270 // The rest of instructions we're relaxing have the same operands.
Jim Grosbach34a7c6d2011-12-05 23:45:46 +0000271 // We just need to update to the proper opcode.
272 Res = Inst;
273 Res.setOpcode(RelaxedOp);
Jason W Kimb3212452010-09-30 02:17:26 +0000274}
275
Jim Grosbachaba3de92012-01-18 18:52:16 +0000276bool ARMAsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
Jim Grosbach45e50d82011-08-16 17:06:20 +0000277 const uint16_t Thumb1_16bitNopEncoding = 0x46c0; // using MOV r8,r8
278 const uint16_t Thumb2_16bitNopEncoding = 0xbf00; // NOP
Joe Abbey8e72eb72014-09-16 09:18:23 +0000279 const uint32_t ARMv4_NopEncoding = 0xe1a00000; // using MOV r0,r0
Jim Grosbach7ccdb7c2011-11-16 22:40:25 +0000280 const uint32_t ARMv6T2_NopEncoding = 0xe320f000; // NOP
Jim Grosbach87055ed2010-12-08 01:16:55 +0000281 if (isThumb()) {
Joe Abbey8e72eb72014-09-16 09:18:23 +0000282 const uint16_t nopEncoding =
283 hasNOP() ? Thumb2_16bitNopEncoding : Thumb1_16bitNopEncoding;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000284 uint64_t NumNops = Count / 2;
285 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbach36e60e92015-06-04 22:24:41 +0000286 OW->write16(nopEncoding);
Jim Grosbach97f1de72010-12-17 19:03:02 +0000287 if (Count & 1)
Jim Grosbach36e60e92015-06-04 22:24:41 +0000288 OW->write8(0);
Jim Grosbach87055ed2010-12-08 01:16:55 +0000289 return true;
290 }
291 // ARM mode
Joe Abbey8e72eb72014-09-16 09:18:23 +0000292 const uint32_t nopEncoding =
293 hasNOP() ? ARMv6T2_NopEncoding : ARMv4_NopEncoding;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000294 uint64_t NumNops = Count / 4;
295 for (uint64_t i = 0; i != NumNops; ++i)
Jim Grosbach36e60e92015-06-04 22:24:41 +0000296 OW->write32(nopEncoding);
Jim Grosbach45e50d82011-08-16 17:06:20 +0000297 // FIXME: should this function return false when unable to write exactly
298 // 'Count' bytes with NOP encodings?
Jim Grosbach97f1de72010-12-17 19:03:02 +0000299 switch (Count % 4) {
Joe Abbey8e72eb72014-09-16 09:18:23 +0000300 default:
301 break; // No leftover bytes to write
302 case 1:
Jim Grosbach36e60e92015-06-04 22:24:41 +0000303 OW->write8(0);
Joe Abbey8e72eb72014-09-16 09:18:23 +0000304 break;
305 case 2:
Jim Grosbach36e60e92015-06-04 22:24:41 +0000306 OW->write16(0);
Joe Abbey8e72eb72014-09-16 09:18:23 +0000307 break;
308 case 3:
Jim Grosbach36e60e92015-06-04 22:24:41 +0000309 OW->write16(0);
310 OW->write8(0xa0);
Joe Abbey8e72eb72014-09-16 09:18:23 +0000311 break;
Jim Grosbach97f1de72010-12-17 19:03:02 +0000312 }
313
Rafael Espindola0ed15432010-10-25 17:50:35 +0000314 return true;
Jim Grosbach58bce992010-09-30 03:20:34 +0000315}
Jason W Kimb3212452010-09-30 02:17:26 +0000316
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000317static uint32_t swapHalfWords(uint32_t Value, bool IsLittleEndian) {
318 if (IsLittleEndian) {
319 // Note that the halfwords are stored high first and low second in thumb;
320 // so we need to swap the fixup value here to map properly.
321 uint32_t Swapped = (Value & 0xFFFF0000) >> 16;
322 Swapped |= (Value & 0x0000FFFF) << 16;
323 return Swapped;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000324 } else
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000325 return Value;
326}
327
328static uint32_t joinHalfWords(uint32_t FirstHalf, uint32_t SecondHalf,
329 bool IsLittleEndian) {
330 uint32_t Value;
331
332 if (IsLittleEndian) {
333 Value = (SecondHalf & 0xFFFF) << 16;
334 Value |= (FirstHalf & 0xFFFF);
335 } else {
336 Value = (SecondHalf & 0xFFFF);
337 Value |= (FirstHalf & 0xFFFF) << 16;
338 }
339
340 return Value;
341}
342
Tim Northover8d67b8e2015-10-02 18:07:18 +0000343unsigned ARMAsmBackend::adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
344 bool IsPCRel, MCContext *Ctx,
345 bool IsLittleEndian,
346 bool IsResolved) const {
Jim Grosbache78031a2012-04-30 22:30:43 +0000347 unsigned Kind = Fixup.getKind();
Jason W Kimfc5c5222010-12-01 22:46:50 +0000348 switch (Kind) {
349 default:
350 llvm_unreachable("Unknown fixup kind!");
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000351 case FK_Data_1:
352 case FK_Data_2:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000353 case FK_Data_4:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000354 return Value;
Saleem Abdulrasoolfc6b85b2014-05-08 01:35:57 +0000355 case FK_SecRel_2:
356 return Value;
Saleem Abdulrasool729c7a02014-05-04 23:13:15 +0000357 case FK_SecRel_4:
358 return Value;
Jason W Kimd5e6e542010-12-03 19:40:23 +0000359 case ARM::fixup_arm_movt_hi16:
Rafael Espindola5904e122014-03-29 06:26:49 +0000360 if (!IsPCRel)
361 Value >>= 16;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000362 // Fallthrough
Rafael Espindola5904e122014-03-29 06:26:49 +0000363 case ARM::fixup_arm_movw_lo16: {
Jason W Kimd5e6e542010-12-03 19:40:23 +0000364 unsigned Hi4 = (Value & 0xF000) >> 12;
365 unsigned Lo12 = Value & 0x0FFF;
366 // inst{19-16} = Hi4;
367 // inst{11-0} = Lo12;
368 Value = (Hi4 << 16) | (Lo12);
369 return Value;
370 }
Evan Chengd4a5c052011-01-14 02:38:49 +0000371 case ARM::fixup_t2_movt_hi16:
Rafael Espindola5904e122014-03-29 06:26:49 +0000372 if (!IsPCRel)
373 Value >>= 16;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000374 // Fallthrough
Rafael Espindola5904e122014-03-29 06:26:49 +0000375 case ARM::fixup_t2_movw_lo16: {
Evan Chengd4a5c052011-01-14 02:38:49 +0000376 unsigned Hi4 = (Value & 0xF000) >> 12;
377 unsigned i = (Value & 0x800) >> 11;
378 unsigned Mid3 = (Value & 0x700) >> 8;
379 unsigned Lo8 = Value & 0x0FF;
380 // inst{19-16} = Hi4;
381 // inst{26} = i;
382 // inst{14-12} = Mid3;
383 // inst{7-0} = Lo8;
Jim Grosbachd76f43e2011-09-30 22:02:45 +0000384 Value = (Hi4 << 16) | (i << 26) | (Mid3 << 12) | (Lo8);
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000385 return swapHalfWords(Value, IsLittleEndian);
Evan Chengd4a5c052011-01-14 02:38:49 +0000386 }
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000387 case ARM::fixup_arm_ldst_pcrel_12:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000388 // ARM PC-relative values are offset by 8.
Owen Anderson3ef19d92010-12-09 20:27:52 +0000389 Value -= 4;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000390 // FALLTHROUGH
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000391 case ARM::fixup_t2_ldst_pcrel_12: {
392 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson3ef19d92010-12-09 20:27:52 +0000393 Value -= 4;
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000394 bool isAdd = true;
Jason W Kimfc5c5222010-12-01 22:46:50 +0000395 if ((int64_t)Value < 0) {
396 Value = -Value;
397 isAdd = false;
398 }
Oliver Stannard9be59af2015-11-17 10:00:43 +0000399 if (Ctx && Value >= 4096) {
400 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
401 return 0;
402 }
Jason W Kimfc5c5222010-12-01 22:46:50 +0000403 Value |= isAdd << 23;
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000404
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000405 // Same addressing mode as fixup_arm_pcrel_10,
406 // but with 16-bit halfwords swapped.
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000407 if (Kind == ARM::fixup_t2_ldst_pcrel_12)
408 return swapHalfWords(Value, IsLittleEndian);
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000409
Jason W Kimfc5c5222010-12-01 22:46:50 +0000410 return Value;
411 }
Jim Grosbachce2bd8d2010-12-02 00:28:45 +0000412 case ARM::fixup_arm_adr_pcrel_12: {
413 // ARM PC-relative values are offset by 8.
414 Value -= 8;
415 unsigned opc = 4; // bits {24-21}. Default to add: 0b0100
416 if ((int64_t)Value < 0) {
417 Value = -Value;
418 opc = 2; // 0b0010
419 }
Oliver Stannard9be59af2015-11-17 10:00:43 +0000420 if (Ctx && ARM_AM::getSOImmVal(Value) == -1) {
421 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
422 return 0;
423 }
Jim Grosbachce2bd8d2010-12-02 00:28:45 +0000424 // Encode the immediate and shift the opcode into place.
425 return ARM_AM::getSOImmVal(Value) | (opc << 21);
426 }
Jim Grosbache34793e2010-12-14 16:25:15 +0000427
Owen Anderson6d375e52010-12-14 00:36:49 +0000428 case ARM::fixup_t2_adr_pcrel_12: {
429 Value -= 4;
430 unsigned opc = 0;
431 if ((int64_t)Value < 0) {
432 Value = -Value;
433 opc = 5;
434 }
435
436 uint32_t out = (opc << 21);
Owen Anderson8543d4f2011-03-23 22:03:44 +0000437 out |= (Value & 0x800) << 15;
Owen Anderson6d375e52010-12-14 00:36:49 +0000438 out |= (Value & 0x700) << 4;
439 out |= (Value & 0x0FF);
Jim Grosbache34793e2010-12-14 16:25:15 +0000440
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000441 return swapHalfWords(out, IsLittleEndian);
Owen Anderson6d375e52010-12-14 00:36:49 +0000442 }
Jim Grosbache34793e2010-12-14 16:25:15 +0000443
Jason W Kimd2e2f562011-02-04 19:47:15 +0000444 case ARM::fixup_arm_condbranch:
445 case ARM::fixup_arm_uncondbranch:
James Molloyfb5cd602012-03-30 09:15:32 +0000446 case ARM::fixup_arm_uncondbl:
447 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +0000448 case ARM::fixup_arm_blx:
Jason W Kimfc5c5222010-12-01 22:46:50 +0000449 // These values don't encode the low two bits since they're always zero.
450 // Offset by 8 just as above.
Joe Abbey8e72eb72014-09-16 09:18:23 +0000451 if (const MCSymbolRefExpr *SRE =
452 dyn_cast<MCSymbolRefExpr>(Fixup.getValue()))
Saleem Abdulrasool6e00ca82014-01-30 04:02:31 +0000453 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_TLSCALL)
454 return 0;
Jim Grosbach9e199462010-12-06 23:57:07 +0000455 return 0xffffff & ((Value - 8) >> 2);
Owen Anderson578074b2010-12-13 19:31:11 +0000456 case ARM::fixup_t2_uncondbranch: {
Owen Anderson235c2762010-12-10 23:02:28 +0000457 Value = Value - 4;
Owen Anderson302d5fd2010-12-09 00:27:41 +0000458 Value >>= 1; // Low bit is not encoded.
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000459
Jim Grosbachf588c512010-12-13 19:25:46 +0000460 uint32_t out = 0;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000461 bool I = Value & 0x800000;
Owen Anderson578074b2010-12-13 19:31:11 +0000462 bool J1 = Value & 0x400000;
463 bool J2 = Value & 0x200000;
464 J1 ^= I;
465 J2 ^= I;
Jim Grosbache34793e2010-12-14 16:25:15 +0000466
Joe Abbey8e72eb72014-09-16 09:18:23 +0000467 out |= I << 26; // S bit
468 out |= !J1 << 13; // J1 bit
469 out |= !J2 << 11; // J2 bit
470 out |= (Value & 0x1FF800) << 5; // imm6 field
471 out |= (Value & 0x0007FF); // imm11 field
Jim Grosbache34793e2010-12-14 16:25:15 +0000472
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000473 return swapHalfWords(out, IsLittleEndian);
Owen Anderson578074b2010-12-13 19:31:11 +0000474 }
475 case ARM::fixup_t2_condbranch: {
476 Value = Value - 4;
477 Value >>= 1; // Low bit is not encoded.
Jim Grosbache34793e2010-12-14 16:25:15 +0000478
Owen Anderson578074b2010-12-13 19:31:11 +0000479 uint64_t out = 0;
Owen Anderson14e41272010-12-09 01:02:09 +0000480 out |= (Value & 0x80000) << 7; // S bit
481 out |= (Value & 0x40000) >> 7; // J2 bit
482 out |= (Value & 0x20000) >> 4; // J1 bit
483 out |= (Value & 0x1F800) << 5; // imm6 field
484 out |= (Value & 0x007FF); // imm11 field
Jim Grosbach3aeb8672010-12-13 19:18:13 +0000485
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000486 return swapHalfWords(out, IsLittleEndian);
Owen Anderson302d5fd2010-12-09 00:27:41 +0000487 }
Jim Grosbach9e199462010-12-06 23:57:07 +0000488 case ARM::fixup_arm_thumb_bl: {
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000489 // The value doesn't encode the low bit (always zero) and is offset by
490 // four. The 32-bit immediate value is encoded as
491 // imm32 = SignExtend(S:I1:I2:imm10:imm11:0)
492 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
493 // The value is encoded into disjoint bit positions in the destination
494 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
495 // J = either J1 or J2 bit
496 //
497 // BL: xxxxxSIIIIIIIIII xxJxJIIIIIIIIIII
498 //
499 // Note that the halfwords are stored high first, low second; so we need
500 // to transpose the fixup value here to map properly.
501 uint32_t offset = (Value - 4) >> 1;
502 uint32_t signBit = (offset & 0x800000) >> 23;
503 uint32_t I1Bit = (offset & 0x400000) >> 22;
504 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
505 uint32_t I2Bit = (offset & 0x200000) >> 21;
506 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
507 uint32_t imm10Bits = (offset & 0x1FF800) >> 11;
508 uint32_t imm11Bits = (offset & 0x000007FF);
NAKAMURA Takumi8018a292013-06-11 06:52:36 +0000509
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000510 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
511 uint32_t SecondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
Joe Abbey8e72eb72014-09-16 09:18:23 +0000512 (uint16_t)imm11Bits);
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000513 return joinHalfWords(FirstHalf, SecondHalf, IsLittleEndian);
Bill Wendling3392bfc2010-12-09 00:39:08 +0000514 }
515 case ARM::fixup_arm_thumb_blx: {
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000516 // The value doesn't encode the low two bits (always zero) and is offset by
517 // four (see fixup_arm_thumb_cp). The 32-bit immediate value is encoded as
518 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:00)
519 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
520 // The value is encoded into disjoint bit positions in the destination
521 // opcode. x = unchanged, I = immediate value bit, S = sign extension bit,
522 // J = either J1 or J2 bit, 0 = zero.
523 //
524 // BLX: xxxxxSIIIIIIIIII xxJxJIIIIIIIIII0
525 //
526 // Note that the halfwords are stored high first, low second; so we need
527 // to transpose the fixup value here to map properly.
528 uint32_t offset = (Value - 2) >> 2;
Joe Abbey8e72eb72014-09-16 09:18:23 +0000529 if (const MCSymbolRefExpr *SRE =
530 dyn_cast<MCSymbolRefExpr>(Fixup.getValue()))
Saleem Abdulrasool6e00ca82014-01-30 04:02:31 +0000531 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_TLSCALL)
532 offset = 0;
Saleem Abdulrasool077fd252014-01-26 22:29:36 +0000533 uint32_t signBit = (offset & 0x400000) >> 22;
534 uint32_t I1Bit = (offset & 0x200000) >> 21;
535 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
536 uint32_t I2Bit = (offset & 0x100000) >> 20;
537 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
538 uint32_t imm10HBits = (offset & 0xFFC00) >> 10;
539 uint32_t imm10LBits = (offset & 0x3FF);
NAKAMURA Takumi8018a292013-06-11 06:52:36 +0000540
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000541 uint32_t FirstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
542 uint32_t SecondHalf = (((uint16_t)J1Bit << 13) | ((uint16_t)J2Bit << 11) |
Joe Abbey8e72eb72014-09-16 09:18:23 +0000543 ((uint16_t)imm10LBits) << 1);
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000544 return joinHalfWords(FirstHalf, SecondHalf, IsLittleEndian);
Jim Grosbach9e199462010-12-06 23:57:07 +0000545 }
Tim Northover8d67b8e2015-10-02 18:07:18 +0000546 case ARM::fixup_thumb_adr_pcrel_10:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000547 case ARM::fixup_arm_thumb_cp:
Tim Northover8d67b8e2015-10-02 18:07:18 +0000548 // On CPUs supporting Thumb2, this will be relaxed to an ldr.w, otherwise we
549 // could have an error on our hands.
550 if (Ctx && !STI->getFeatureBits()[ARM::FeatureThumb2] && IsResolved) {
551 const char *FixupDiagnostic = reasonForFixupRelaxation(Fixup, Value);
Oliver Stannard9be59af2015-11-17 10:00:43 +0000552 if (FixupDiagnostic) {
553 Ctx->reportError(Fixup.getLoc(), FixupDiagnostic);
554 return 0;
555 }
Tim Northover8d67b8e2015-10-02 18:07:18 +0000556 }
557 // Offset by 4, and don't encode the low two bits.
558 return ((Value - 4) >> 2) & 0xff;
Jim Grosbach68b27eb2010-12-09 19:50:12 +0000559 case ARM::fixup_arm_thumb_cb: {
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000560 // Offset by 4 and don't encode the lower bit, which is always 0.
Tim Northover8d67b8e2015-10-02 18:07:18 +0000561 // FIXME: diagnose if no Thumb2
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000562 uint32_t Binary = (Value - 4) >> 1;
Owen Andersonf636a642010-12-14 19:42:53 +0000563 return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3);
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000564 }
Jim Grosbache119da12010-12-10 18:21:33 +0000565 case ARM::fixup_arm_thumb_br:
566 // Offset by 4 and don't encode the lower bit, which is always 0.
Bradley Smitha1189102016-01-15 10:26:17 +0000567 if (Ctx && !STI->getFeatureBits()[ARM::FeatureThumb2] &&
568 !STI->getFeatureBits()[ARM::HasV8MBaselineOps]) {
Tim Northover8d67b8e2015-10-02 18:07:18 +0000569 const char *FixupDiagnostic = reasonForFixupRelaxation(Fixup, Value);
Oliver Stannard9be59af2015-11-17 10:00:43 +0000570 if (FixupDiagnostic) {
571 Ctx->reportError(Fixup.getLoc(), FixupDiagnostic);
572 return 0;
573 }
Tim Northover8d67b8e2015-10-02 18:07:18 +0000574 }
Jim Grosbache119da12010-12-10 18:21:33 +0000575 return ((Value - 4) >> 1) & 0x7ff;
Jim Grosbach78485ad2010-12-10 17:13:40 +0000576 case ARM::fixup_arm_thumb_bcc:
577 // Offset by 4 and don't encode the lower bit, which is always 0.
Tim Northover8d67b8e2015-10-02 18:07:18 +0000578 if (Ctx && !STI->getFeatureBits()[ARM::FeatureThumb2]) {
579 const char *FixupDiagnostic = reasonForFixupRelaxation(Fixup, Value);
Oliver Stannard9be59af2015-11-17 10:00:43 +0000580 if (FixupDiagnostic) {
581 Ctx->reportError(Fixup.getLoc(), FixupDiagnostic);
582 return 0;
583 }
Tim Northover8d67b8e2015-10-02 18:07:18 +0000584 }
Jim Grosbach78485ad2010-12-10 17:13:40 +0000585 return ((Value - 4) >> 1) & 0xff;
Jim Grosbach8648c102011-12-19 23:06:24 +0000586 case ARM::fixup_arm_pcrel_10_unscaled: {
587 Value = Value - 8; // ARM fixups offset by an additional word and don't
588 // need to adjust for the half-word ordering.
589 bool isAdd = true;
590 if ((int64_t)Value < 0) {
591 Value = -Value;
592 isAdd = false;
593 }
Jim Grosbach913cc302012-03-30 21:54:22 +0000594 // The value has the low 4 bits encoded in [3:0] and the high 4 in [11:8].
Oliver Stannard9be59af2015-11-17 10:00:43 +0000595 if (Ctx && Value >= 256) {
596 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
597 return 0;
598 }
Jim Grosbach913cc302012-03-30 21:54:22 +0000599 Value = (Value & 0xf) | ((Value & 0xf0) << 4);
Jim Grosbach8648c102011-12-19 23:06:24 +0000600 return Value | (isAdd << 23);
601 }
Jim Grosbach3c685612010-12-08 20:32:07 +0000602 case ARM::fixup_arm_pcrel_10:
Owen Anderson4743d752010-12-10 22:46:47 +0000603 Value = Value - 4; // ARM fixups offset by an additional word and don't
Jim Grosbach3c685612010-12-08 20:32:07 +0000604 // need to adjust for the half-word ordering.
Joe Abbey8e72eb72014-09-16 09:18:23 +0000605 // Fall through.
Jim Grosbach3c685612010-12-08 20:32:07 +0000606 case ARM::fixup_t2_pcrel_10: {
607 // Offset by 4, adjusted by two due to the half-word ordering of thumb.
Owen Anderson4743d752010-12-10 22:46:47 +0000608 Value = Value - 4;
Jason W Kimfc5c5222010-12-01 22:46:50 +0000609 bool isAdd = true;
610 if ((int64_t)Value < 0) {
611 Value = -Value;
612 isAdd = false;
613 }
614 // These values don't encode the low two bits since they're always zero.
615 Value >>= 2;
Oliver Stannard9be59af2015-11-17 10:00:43 +0000616 if (Ctx && Value >= 256) {
617 Ctx->reportError(Fixup.getLoc(), "out of range pc-relative fixup value");
618 return 0;
619 }
Jason W Kimfc5c5222010-12-01 22:46:50 +0000620 Value |= isAdd << 23;
Jim Grosbach3c685612010-12-08 20:32:07 +0000621
Jim Grosbach8648c102011-12-19 23:06:24 +0000622 // Same addressing mode as fixup_arm_pcrel_10, but with 16-bit halfwords
623 // swapped.
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000624 if (Kind == ARM::fixup_t2_pcrel_10)
625 return swapHalfWords(Value, IsLittleEndian);
Jim Grosbach3c685612010-12-08 20:32:07 +0000626
Jason W Kimfc5c5222010-12-01 22:46:50 +0000627 return Value;
628 }
629 }
630}
631
Jim Grosbache78031a2012-04-30 22:30:43 +0000632void ARMAsmBackend::processFixupValue(const MCAssembler &Asm,
633 const MCAsmLayout &Layout,
634 const MCFixup &Fixup,
635 const MCFragment *DF,
Rafael Espindola3e3de5e2014-03-28 16:06:09 +0000636 const MCValue &Target, uint64_t &Value,
Jim Grosbache78031a2012-04-30 22:30:43 +0000637 bool &IsResolved) {
638 const MCSymbolRefExpr *A = Target.getSymA();
Rafael Espindola49b85482015-11-04 23:00:39 +0000639 const MCSymbol *Sym = A ? &A->getSymbol() : nullptr;
Jim Grosbache78031a2012-04-30 22:30:43 +0000640 // Some fixups to thumb function symbols need the low bit (thumb bit)
641 // twiddled.
642 if ((unsigned)Fixup.getKind() != ARM::fixup_arm_ldst_pcrel_12 &&
643 (unsigned)Fixup.getKind() != ARM::fixup_t2_ldst_pcrel_12 &&
644 (unsigned)Fixup.getKind() != ARM::fixup_arm_adr_pcrel_12 &&
645 (unsigned)Fixup.getKind() != ARM::fixup_thumb_adr_pcrel_10 &&
646 (unsigned)Fixup.getKind() != ARM::fixup_t2_adr_pcrel_12 &&
647 (unsigned)Fixup.getKind() != ARM::fixup_arm_thumb_cp) {
Rafael Espindola49b85482015-11-04 23:00:39 +0000648 if (Sym) {
649 if (Asm.isThumbFunc(Sym))
Jim Grosbache78031a2012-04-30 22:30:43 +0000650 Value |= 1;
651 }
652 }
Rafael Espindola49b85482015-11-04 23:00:39 +0000653 if (IsResolved && (unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_bl) {
654 assert(Sym && "How did we resolve this?");
655
656 // If the symbol is external the linker will handle it.
657 // FIXME: Should we handle it as an optimization?
Rafael Espindolae61a9022015-11-05 01:10:15 +0000658
659 // If the symbol is out of range, produce a relocation and hope the
660 // linker can handle it. GNU AS produces an error in this case.
661 if (Sym->isExternal() || Value >= 0x400004)
Rafael Espindola49b85482015-11-04 23:00:39 +0000662 IsResolved = false;
Logan Chiend5c48aa2014-02-05 14:15:16 +0000663 }
Jim Grosbache78031a2012-04-30 22:30:43 +0000664 // We must always generate a relocation for BL/BLX instructions if we have
665 // a symbol to reference, as the linker relies on knowing the destination
666 // symbol's thumb-ness to get interworking right.
667 if (A && ((unsigned)Fixup.getKind() == ARM::fixup_arm_thumb_blx ||
Jim Grosbache78031a2012-04-30 22:30:43 +0000668 (unsigned)Fixup.getKind() == ARM::fixup_arm_blx ||
669 (unsigned)Fixup.getKind() == ARM::fixup_arm_uncondbl ||
670 (unsigned)Fixup.getKind() == ARM::fixup_arm_condbl))
671 IsResolved = false;
672
673 // Try to get the encoded value for the fixup as-if we're mapping it into
674 // the instruction. This allows adjustFixupValue() to issue a diagnostic
675 // if the value aren't invalid.
Christian Pirkerfdce7ce2014-05-06 10:05:11 +0000676 (void)adjustFixupValue(Fixup, Value, false, &Asm.getContext(),
Tim Northover8d67b8e2015-10-02 18:07:18 +0000677 IsLittleEndian, IsResolved);
Jim Grosbache78031a2012-04-30 22:30:43 +0000678}
679
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000680/// getFixupKindNumBytes - The number of bytes the fixup may change.
Jim Grosbach9d6d77a2010-11-11 18:04:49 +0000681static unsigned getFixupKindNumBytes(unsigned Kind) {
Jim Grosbach90987142010-11-09 01:37:15 +0000682 switch (Kind) {
Jim Grosbach9e199462010-12-06 23:57:07 +0000683 default:
684 llvm_unreachable("Unknown fixup kind!");
Bill Wendling8a6449c2010-12-08 01:57:09 +0000685
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000686 case FK_Data_1:
Jim Grosbach78485ad2010-12-10 17:13:40 +0000687 case ARM::fixup_arm_thumb_bcc:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000688 case ARM::fixup_arm_thumb_cp:
Jim Grosbach509dc2a2010-12-14 22:28:03 +0000689 case ARM::fixup_thumb_adr_pcrel_10:
Bill Wendling8a6449c2010-12-08 01:57:09 +0000690 return 1;
691
Jim Grosbach4416dfa2010-12-17 18:39:10 +0000692 case FK_Data_2:
Jim Grosbache119da12010-12-10 18:21:33 +0000693 case ARM::fixup_arm_thumb_br:
Jim Grosbach68b27eb2010-12-09 19:50:12 +0000694 case ARM::fixup_arm_thumb_cb:
Bill Wendlinga7d6aa92010-12-08 23:01:43 +0000695 return 2;
696
Jim Grosbach8648c102011-12-19 23:06:24 +0000697 case ARM::fixup_arm_pcrel_10_unscaled:
Jim Grosbach9e199462010-12-06 23:57:07 +0000698 case ARM::fixup_arm_ldst_pcrel_12:
699 case ARM::fixup_arm_pcrel_10:
700 case ARM::fixup_arm_adr_pcrel_12:
James Molloyfb5cd602012-03-30 09:15:32 +0000701 case ARM::fixup_arm_uncondbl:
702 case ARM::fixup_arm_condbl:
Jim Grosbach7b811d32012-02-27 21:36:23 +0000703 case ARM::fixup_arm_blx:
Jason W Kimd2e2f562011-02-04 19:47:15 +0000704 case ARM::fixup_arm_condbranch:
705 case ARM::fixup_arm_uncondbranch:
Jim Grosbach9e199462010-12-06 23:57:07 +0000706 return 3;
Bill Wendling8a6449c2010-12-08 01:57:09 +0000707
708 case FK_Data_4:
Owen Anderson3e6ee1d2010-12-09 01:51:07 +0000709 case ARM::fixup_t2_ldst_pcrel_12:
Owen Anderson578074b2010-12-13 19:31:11 +0000710 case ARM::fixup_t2_condbranch:
711 case ARM::fixup_t2_uncondbranch:
Owen Anderson0f7142d2010-12-08 00:18:36 +0000712 case ARM::fixup_t2_pcrel_10:
Owen Anderson6d375e52010-12-14 00:36:49 +0000713 case ARM::fixup_t2_adr_pcrel_12:
Jim Grosbach9e199462010-12-06 23:57:07 +0000714 case ARM::fixup_arm_thumb_bl:
Bill Wendling3392bfc2010-12-09 00:39:08 +0000715 case ARM::fixup_arm_thumb_blx:
Evan Chengd4a5c052011-01-14 02:38:49 +0000716 case ARM::fixup_arm_movt_hi16:
717 case ARM::fixup_arm_movw_lo16:
Evan Chengd4a5c052011-01-14 02:38:49 +0000718 case ARM::fixup_t2_movt_hi16:
719 case ARM::fixup_t2_movw_lo16:
Jim Grosbach9e199462010-12-06 23:57:07 +0000720 return 4;
Saleem Abdulrasool729c7a02014-05-04 23:13:15 +0000721
Saleem Abdulrasoolfc6b85b2014-05-08 01:35:57 +0000722 case FK_SecRel_2:
723 return 2;
Saleem Abdulrasool729c7a02014-05-04 23:13:15 +0000724 case FK_SecRel_4:
725 return 4;
Jim Grosbach90987142010-11-09 01:37:15 +0000726 }
727}
728
Christian Pirker2a111602014-03-28 14:35:30 +0000729/// getFixupKindContainerSizeBytes - The number of bytes of the
730/// container involved in big endian.
731static unsigned getFixupKindContainerSizeBytes(unsigned Kind) {
732 switch (Kind) {
733 default:
734 llvm_unreachable("Unknown fixup kind!");
735
736 case FK_Data_1:
737 return 1;
738 case FK_Data_2:
739 return 2;
740 case FK_Data_4:
741 return 4;
742
743 case ARM::fixup_arm_thumb_bcc:
744 case ARM::fixup_arm_thumb_cp:
745 case ARM::fixup_thumb_adr_pcrel_10:
746 case ARM::fixup_arm_thumb_br:
747 case ARM::fixup_arm_thumb_cb:
748 // Instruction size is 2 bytes.
749 return 2;
750
751 case ARM::fixup_arm_pcrel_10_unscaled:
752 case ARM::fixup_arm_ldst_pcrel_12:
753 case ARM::fixup_arm_pcrel_10:
754 case ARM::fixup_arm_adr_pcrel_12:
755 case ARM::fixup_arm_uncondbl:
756 case ARM::fixup_arm_condbl:
757 case ARM::fixup_arm_blx:
758 case ARM::fixup_arm_condbranch:
759 case ARM::fixup_arm_uncondbranch:
760 case ARM::fixup_t2_ldst_pcrel_12:
761 case ARM::fixup_t2_condbranch:
762 case ARM::fixup_t2_uncondbranch:
763 case ARM::fixup_t2_pcrel_10:
764 case ARM::fixup_t2_adr_pcrel_12:
765 case ARM::fixup_arm_thumb_bl:
766 case ARM::fixup_arm_thumb_blx:
767 case ARM::fixup_arm_movt_hi16:
768 case ARM::fixup_arm_movw_lo16:
Christian Pirker2a111602014-03-28 14:35:30 +0000769 case ARM::fixup_t2_movt_hi16:
770 case ARM::fixup_t2_movw_lo16:
Christian Pirker2a111602014-03-28 14:35:30 +0000771 // Instruction size is 4 bytes.
772 return 4;
773 }
774}
775
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000776void ARMAsmBackend::applyFixup(const MCFixup &Fixup, char *Data,
Rafael Espindola5904e122014-03-29 06:26:49 +0000777 unsigned DataSize, uint64_t Value,
778 bool IsPCRel) const {
Jim Grosbach9d6d77a2010-11-11 18:04:49 +0000779 unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind());
Tim Northover8d67b8e2015-10-02 18:07:18 +0000780 Value =
781 adjustFixupValue(Fixup, Value, IsPCRel, nullptr, IsLittleEndian, true);
Joe Abbey8e72eb72014-09-16 09:18:23 +0000782 if (!Value)
783 return; // Doesn't change encoding.
Jim Grosbach90987142010-11-09 01:37:15 +0000784
Bill Wendlingf09c44c2010-12-07 23:11:00 +0000785 unsigned Offset = Fixup.getOffset();
786 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
787
Christian Pirker2a111602014-03-28 14:35:30 +0000788 // Used to point to big endian bytes.
789 unsigned FullSizeBytes;
Christian Pirker875629f2014-05-20 09:24:37 +0000790 if (!IsLittleEndian) {
Christian Pirker2a111602014-03-28 14:35:30 +0000791 FullSizeBytes = getFixupKindContainerSizeBytes(Fixup.getKind());
Christian Pirker875629f2014-05-20 09:24:37 +0000792 assert((Offset + FullSizeBytes) <= DataSize && "Invalid fixup size!");
793 assert(NumBytes <= FullSizeBytes && "Invalid fixup size!");
794 }
Christian Pirker2a111602014-03-28 14:35:30 +0000795
Benjamin Kramer07ea85a2012-11-24 14:36:43 +0000796 // For each byte of the fragment that the fixup touches, mask in the bits from
797 // the fixup value. The Value has been "split up" into the appropriate
798 // bitfields above.
Christian Pirker2a111602014-03-28 14:35:30 +0000799 for (unsigned i = 0; i != NumBytes; ++i) {
800 unsigned Idx = IsLittleEndian ? i : (FullSizeBytes - 1 - i);
801 Data[Offset + Idx] |= uint8_t((Value >> (i * 8)) & 0xff);
802 }
Jason W Kimb3212452010-09-30 02:17:26 +0000803}
Bill Wendling721724e2010-12-07 23:05:20 +0000804
Tim Northoverf8e47e42015-10-28 22:56:36 +0000805namespace CU {
806
807/// \brief Compact unwind encoding values.
808enum CompactUnwindEncodings {
809 UNWIND_ARM_MODE_MASK = 0x0F000000,
810 UNWIND_ARM_MODE_FRAME = 0x01000000,
811 UNWIND_ARM_MODE_FRAME_D = 0x02000000,
812 UNWIND_ARM_MODE_DWARF = 0x04000000,
813
814 UNWIND_ARM_FRAME_STACK_ADJUST_MASK = 0x00C00000,
815
816 UNWIND_ARM_FRAME_FIRST_PUSH_R4 = 0x00000001,
817 UNWIND_ARM_FRAME_FIRST_PUSH_R5 = 0x00000002,
818 UNWIND_ARM_FRAME_FIRST_PUSH_R6 = 0x00000004,
819
820 UNWIND_ARM_FRAME_SECOND_PUSH_R8 = 0x00000008,
821 UNWIND_ARM_FRAME_SECOND_PUSH_R9 = 0x00000010,
822 UNWIND_ARM_FRAME_SECOND_PUSH_R10 = 0x00000020,
823 UNWIND_ARM_FRAME_SECOND_PUSH_R11 = 0x00000040,
824 UNWIND_ARM_FRAME_SECOND_PUSH_R12 = 0x00000080,
825
826 UNWIND_ARM_FRAME_D_REG_COUNT_MASK = 0x00000F00,
827
828 UNWIND_ARM_DWARF_SECTION_OFFSET = 0x00FFFFFF
829};
830
831} // end CU namespace
832
833/// Generate compact unwind encoding for the function based on the CFI
834/// instructions. If the CFI instructions describe a frame that cannot be
835/// encoded in compact unwind, the method returns UNWIND_ARM_MODE_DWARF which
836/// tells the runtime to fallback and unwind using dwarf.
837uint32_t ARMAsmBackendDarwin::generateCompactUnwindEncoding(
838 ArrayRef<MCCFIInstruction> Instrs) const {
839 DEBUG_WITH_TYPE("compact-unwind", llvm::dbgs() << "generateCU()\n");
840 // Only armv7k uses CFI based unwinding.
841 if (Subtype != MachO::CPU_SUBTYPE_ARM_V7K)
842 return 0;
843 // No .cfi directives means no frame.
844 if (Instrs.empty())
845 return 0;
846 // Start off assuming CFA is at SP+0.
847 int CFARegister = ARM::SP;
848 int CFARegisterOffset = 0;
849 // Mark savable registers as initially unsaved
850 DenseMap<unsigned, int> RegOffsets;
851 int FloatRegCount = 0;
852 // Process each .cfi directive and build up compact unwind info.
853 for (size_t i = 0, e = Instrs.size(); i != e; ++i) {
854 int Reg;
855 const MCCFIInstruction &Inst = Instrs[i];
856 switch (Inst.getOperation()) {
857 case MCCFIInstruction::OpDefCfa: // DW_CFA_def_cfa
858 CFARegisterOffset = -Inst.getOffset();
859 CFARegister = MRI.getLLVMRegNum(Inst.getRegister(), true);
860 break;
861 case MCCFIInstruction::OpDefCfaOffset: // DW_CFA_def_cfa_offset
862 CFARegisterOffset = -Inst.getOffset();
863 break;
864 case MCCFIInstruction::OpDefCfaRegister: // DW_CFA_def_cfa_register
865 CFARegister = MRI.getLLVMRegNum(Inst.getRegister(), true);
866 break;
867 case MCCFIInstruction::OpOffset: // DW_CFA_offset
868 Reg = MRI.getLLVMRegNum(Inst.getRegister(), true);
869 if (ARMMCRegisterClasses[ARM::GPRRegClassID].contains(Reg))
870 RegOffsets[Reg] = Inst.getOffset();
871 else if (ARMMCRegisterClasses[ARM::DPRRegClassID].contains(Reg)) {
872 RegOffsets[Reg] = Inst.getOffset();
873 ++FloatRegCount;
874 } else {
875 DEBUG_WITH_TYPE("compact-unwind",
876 llvm::dbgs() << ".cfi_offset on unknown register="
877 << Inst.getRegister() << "\n");
878 return CU::UNWIND_ARM_MODE_DWARF;
879 }
880 break;
881 case MCCFIInstruction::OpRelOffset: // DW_CFA_advance_loc
882 // Ignore
883 break;
884 default:
885 // Directive not convertable to compact unwind, bail out.
886 DEBUG_WITH_TYPE("compact-unwind",
887 llvm::dbgs()
888 << "CFI directive not compatiable with comact "
889 "unwind encoding, opcode=" << Inst.getOperation()
890 << "\n");
891 return CU::UNWIND_ARM_MODE_DWARF;
892 break;
893 }
894 }
895
896 // If no frame set up, return no unwind info.
897 if ((CFARegister == ARM::SP) && (CFARegisterOffset == 0))
898 return 0;
899
900 // Verify standard frame (lr/r7) was used.
901 if (CFARegister != ARM::R7) {
902 DEBUG_WITH_TYPE("compact-unwind", llvm::dbgs() << "frame register is "
903 << CFARegister
904 << " instead of r7\n");
905 return CU::UNWIND_ARM_MODE_DWARF;
906 }
907 int StackAdjust = CFARegisterOffset - 8;
908 if (RegOffsets.lookup(ARM::LR) != (-4 - StackAdjust)) {
909 DEBUG_WITH_TYPE("compact-unwind",
910 llvm::dbgs()
911 << "LR not saved as standard frame, StackAdjust="
912 << StackAdjust
913 << ", CFARegisterOffset=" << CFARegisterOffset
914 << ", lr save at offset=" << RegOffsets[14] << "\n");
915 return CU::UNWIND_ARM_MODE_DWARF;
916 }
917 if (RegOffsets.lookup(ARM::R7) != (-8 - StackAdjust)) {
918 DEBUG_WITH_TYPE("compact-unwind",
919 llvm::dbgs() << "r7 not saved as standard frame\n");
920 return CU::UNWIND_ARM_MODE_DWARF;
921 }
922 uint32_t CompactUnwindEncoding = CU::UNWIND_ARM_MODE_FRAME;
923
924 // If var-args are used, there may be a stack adjust required.
925 switch (StackAdjust) {
926 case 0:
927 break;
928 case 4:
929 CompactUnwindEncoding |= 0x00400000;
930 break;
931 case 8:
932 CompactUnwindEncoding |= 0x00800000;
933 break;
934 case 12:
935 CompactUnwindEncoding |= 0x00C00000;
936 break;
937 default:
938 DEBUG_WITH_TYPE("compact-unwind", llvm::dbgs()
939 << ".cfi_def_cfa stack adjust ("
940 << StackAdjust << ") out of range\n");
941 return CU::UNWIND_ARM_MODE_DWARF;
942 }
943
944 // If r6 is saved, it must be right below r7.
945 static struct {
946 unsigned Reg;
947 unsigned Encoding;
948 } GPRCSRegs[] = {{ARM::R6, CU::UNWIND_ARM_FRAME_FIRST_PUSH_R6},
949 {ARM::R5, CU::UNWIND_ARM_FRAME_FIRST_PUSH_R5},
950 {ARM::R4, CU::UNWIND_ARM_FRAME_FIRST_PUSH_R4},
951 {ARM::R12, CU::UNWIND_ARM_FRAME_SECOND_PUSH_R12},
952 {ARM::R11, CU::UNWIND_ARM_FRAME_SECOND_PUSH_R11},
953 {ARM::R10, CU::UNWIND_ARM_FRAME_SECOND_PUSH_R10},
954 {ARM::R9, CU::UNWIND_ARM_FRAME_SECOND_PUSH_R9},
955 {ARM::R8, CU::UNWIND_ARM_FRAME_SECOND_PUSH_R8}};
956
957 int CurOffset = -8 - StackAdjust;
958 for (auto CSReg : GPRCSRegs) {
959 auto Offset = RegOffsets.find(CSReg.Reg);
960 if (Offset == RegOffsets.end())
961 continue;
962
963 int RegOffset = Offset->second;
964 if (RegOffset != CurOffset - 4) {
965 DEBUG_WITH_TYPE("compact-unwind",
966 llvm::dbgs() << MRI.getName(CSReg.Reg) << " saved at "
967 << RegOffset << " but only supported at "
968 << CurOffset << "\n");
969 return CU::UNWIND_ARM_MODE_DWARF;
970 }
971 CompactUnwindEncoding |= CSReg.Encoding;
972 CurOffset -= 4;
973 }
974
975 // If no floats saved, we are done.
976 if (FloatRegCount == 0)
977 return CompactUnwindEncoding;
978
979 // Switch mode to include D register saving.
980 CompactUnwindEncoding &= ~CU::UNWIND_ARM_MODE_MASK;
981 CompactUnwindEncoding |= CU::UNWIND_ARM_MODE_FRAME_D;
982
983 // FIXME: supporting more than 4 saved D-registers compactly would be trivial,
984 // but needs coordination with the linker and libunwind.
985 if (FloatRegCount > 4) {
986 DEBUG_WITH_TYPE("compact-unwind",
987 llvm::dbgs() << "unsupported number of D registers saved ("
988 << FloatRegCount << ")\n");
989 return CU::UNWIND_ARM_MODE_DWARF;
990 }
991
992 // Floating point registers must either be saved sequentially, or we defer to
993 // DWARF. No gaps allowed here so check that each saved d-register is
994 // precisely where it should be.
995 static unsigned FPRCSRegs[] = { ARM::D8, ARM::D10, ARM::D12, ARM::D14 };
996 for (int Idx = FloatRegCount - 1; Idx >= 0; --Idx) {
997 auto Offset = RegOffsets.find(FPRCSRegs[Idx]);
998 if (Offset == RegOffsets.end()) {
999 DEBUG_WITH_TYPE("compact-unwind",
1000 llvm::dbgs() << FloatRegCount << " D-regs saved, but "
1001 << MRI.getName(FPRCSRegs[Idx])
1002 << " not saved\n");
1003 return CU::UNWIND_ARM_MODE_DWARF;
1004 } else if (Offset->second != CurOffset - 8) {
1005 DEBUG_WITH_TYPE("compact-unwind",
1006 llvm::dbgs() << FloatRegCount << " D-regs saved, but "
1007 << MRI.getName(FPRCSRegs[Idx])
1008 << " saved at " << Offset->second
1009 << ", expected at " << CurOffset - 8
1010 << "\n");
1011 return CU::UNWIND_ARM_MODE_DWARF;
1012 }
1013 CurOffset -= 8;
1014 }
1015
1016 return CompactUnwindEncoding | ((FloatRegCount - 1) << 8);
1017}
1018
Vedant Kumar366dd9fd2015-08-21 21:52:48 +00001019static MachO::CPUSubTypeARM getMachOSubTypeFromArch(StringRef Arch) {
Chandler Carruthbb47b9a2015-08-30 02:09:48 +00001020 unsigned AK = ARM::parseArch(Arch);
Vedant Kumar366dd9fd2015-08-21 21:52:48 +00001021 switch (AK) {
1022 default:
1023 return MachO::CPU_SUBTYPE_ARM_V7;
1024 case ARM::AK_ARMV4T:
1025 return MachO::CPU_SUBTYPE_ARM_V4T;
Artyom Skrobov2c2f3782015-11-12 15:51:41 +00001026 case ARM::AK_ARMV5T:
1027 case ARM::AK_ARMV5TE:
1028 case ARM::AK_ARMV5TEJ:
1029 return MachO::CPU_SUBTYPE_ARM_V5;
Vedant Kumar366dd9fd2015-08-21 21:52:48 +00001030 case ARM::AK_ARMV6:
1031 case ARM::AK_ARMV6K:
1032 return MachO::CPU_SUBTYPE_ARM_V6;
Artyom Skrobov2c2f3782015-11-12 15:51:41 +00001033 case ARM::AK_ARMV7A:
Vedant Kumar366dd9fd2015-08-21 21:52:48 +00001034 return MachO::CPU_SUBTYPE_ARM_V7;
1035 case ARM::AK_ARMV7S:
1036 return MachO::CPU_SUBTYPE_ARM_V7S;
1037 case ARM::AK_ARMV7K:
1038 return MachO::CPU_SUBTYPE_ARM_V7K;
1039 case ARM::AK_ARMV6M:
Vedant Kumar366dd9fd2015-08-21 21:52:48 +00001040 return MachO::CPU_SUBTYPE_ARM_V6M;
1041 case ARM::AK_ARMV7M:
1042 return MachO::CPU_SUBTYPE_ARM_V7M;
1043 case ARM::AK_ARMV7EM:
1044 return MachO::CPU_SUBTYPE_ARM_V7EM;
1045 }
1046}
1047
Bill Wendling58e2d3d2013-09-09 02:37:14 +00001048MCAsmBackend *llvm::createARMAsmBackend(const Target &T,
Daniel Sanders418caf52015-06-10 10:35:34 +00001049 const MCRegisterInfo &MRI,
Daniel Sanders50f17232015-09-15 16:17:27 +00001050 const Triple &TheTriple, StringRef CPU,
Daniel Sanders418caf52015-06-10 10:35:34 +00001051 bool isLittle) {
Daniel Sanders50f17232015-09-15 16:17:27 +00001052 switch (TheTriple.getObjectFormat()) {
Joe Abbey8e72eb72014-09-16 09:18:23 +00001053 default:
1054 llvm_unreachable("unsupported object format");
Daniel Sanders50f17232015-09-15 16:17:27 +00001055 case Triple::MachO: {
1056 MachO::CPUSubTypeARM CS = getMachOSubTypeFromArch(TheTriple.getArchName());
Tim Northoverf8e47e42015-10-28 22:56:36 +00001057 return new ARMAsmBackendDarwin(T, TheTriple, MRI, CS);
Owen Anderson975ddf82011-04-01 21:07:39 +00001058 }
Daniel Sanders50f17232015-09-15 16:17:27 +00001059 case Triple::COFF:
1060 assert(TheTriple.isOSWindows() && "non-Windows ARM COFF is not supported");
1061 return new ARMAsmBackendWinCOFF(T, TheTriple);
1062 case Triple::ELF:
1063 assert(TheTriple.isOSBinFormatELF() && "using ELF for non-ELF target");
1064 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
1065 return new ARMAsmBackendELF(T, TheTriple, OSABI, isLittle);
Saleem Abdulrasool84b952b2014-04-27 03:48:22 +00001066 }
Jason W Kimb3212452010-09-30 02:17:26 +00001067}
Christian Pirker2a111602014-03-28 14:35:30 +00001068
Christian Pirkerdc9ff752014-04-01 15:19:30 +00001069MCAsmBackend *llvm::createARMLEAsmBackend(const Target &T,
Christian Pirker2a111602014-03-28 14:35:30 +00001070 const MCRegisterInfo &MRI,
Daniel Sanders50f17232015-09-15 16:17:27 +00001071 const Triple &TT, StringRef CPU) {
Christian Pirker2a111602014-03-28 14:35:30 +00001072 return createARMAsmBackend(T, MRI, TT, CPU, true);
1073}
1074
Christian Pirkerdc9ff752014-04-01 15:19:30 +00001075MCAsmBackend *llvm::createARMBEAsmBackend(const Target &T,
Christian Pirker2a111602014-03-28 14:35:30 +00001076 const MCRegisterInfo &MRI,
Daniel Sanders50f17232015-09-15 16:17:27 +00001077 const Triple &TT, StringRef CPU) {
Christian Pirker2a111602014-03-28 14:35:30 +00001078 return createARMAsmBackend(T, MRI, TT, CPU, false);
1079}
1080
Christian Pirkerdc9ff752014-04-01 15:19:30 +00001081MCAsmBackend *llvm::createThumbLEAsmBackend(const Target &T,
Joe Abbey8e72eb72014-09-16 09:18:23 +00001082 const MCRegisterInfo &MRI,
Daniel Sanders50f17232015-09-15 16:17:27 +00001083 const Triple &TT, StringRef CPU) {
Christian Pirker2a111602014-03-28 14:35:30 +00001084 return createARMAsmBackend(T, MRI, TT, CPU, true);
1085}
1086
Christian Pirkerdc9ff752014-04-01 15:19:30 +00001087MCAsmBackend *llvm::createThumbBEAsmBackend(const Target &T,
Joe Abbey8e72eb72014-09-16 09:18:23 +00001088 const MCRegisterInfo &MRI,
Daniel Sanders50f17232015-09-15 16:17:27 +00001089 const Triple &TT, StringRef CPU) {
Christian Pirker2a111602014-03-28 14:35:30 +00001090 return createARMAsmBackend(T, MRI, TT, CPU, false);
1091}