1 //===-- ARM/ARMMCCodeEmitter.cpp - Convert ARM code to machine code -------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the ARMMCCodeEmitter class.
11 //===----------------------------------------------------------------------===//
13 #include "MCTargetDesc/ARMAddressingModes.h"
14 #include "MCTargetDesc/ARMBaseInfo.h"
15 #include "MCTargetDesc/ARMFixupKinds.h"
16 #include "MCTargetDesc/ARMMCExpr.h"
17 #include "llvm/ADT/APFloat.h"
18 #include "llvm/ADT/APInt.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/ADT/Statistic.h"
21 #include "llvm/ADT/Triple.h"
22 #include "llvm/MC/MCCodeEmitter.h"
23 #include "llvm/MC/MCContext.h"
24 #include "llvm/MC/MCExpr.h"
25 #include "llvm/MC/MCFixup.h"
26 #include "llvm/MC/MCInst.h"
27 #include "llvm/MC/MCInstrDesc.h"
28 #include "llvm/MC/MCInstrInfo.h"
29 #include "llvm/MC/MCRegisterInfo.h"
30 #include "llvm/MC/MCSubtargetInfo.h"
31 #include "llvm/Support/Casting.h"
32 #include "llvm/Support/Compiler.h"
33 #include "llvm/Support/ErrorHandling.h"
34 #include "llvm/Support/MathExtras.h"
35 #include "llvm/Support/raw_ostream.h"
43 #define DEBUG_TYPE "mccodeemitter"
45 STATISTIC(MCNumEmitted
, "Number of MC instructions emitted.");
46 STATISTIC(MCNumCPRelocations
, "Number of constant pool relocations created.");
50 class ARMMCCodeEmitter
: public MCCodeEmitter
{
51 const MCInstrInfo
&MCII
;
56 ARMMCCodeEmitter(const MCInstrInfo
&mcii
, MCContext
&ctx
, bool IsLittle
)
57 : MCII(mcii
), CTX(ctx
), IsLittleEndian(IsLittle
) {
59 ARMMCCodeEmitter(const ARMMCCodeEmitter
&) = delete;
60 ARMMCCodeEmitter
&operator=(const ARMMCCodeEmitter
&) = delete;
61 ~ARMMCCodeEmitter() override
= default;
63 bool isThumb(const MCSubtargetInfo
&STI
) const {
64 return STI
.getFeatureBits()[ARM::ModeThumb
];
67 bool isThumb2(const MCSubtargetInfo
&STI
) const {
68 return isThumb(STI
) && STI
.getFeatureBits()[ARM::FeatureThumb2
];
71 bool isTargetMachO(const MCSubtargetInfo
&STI
) const {
72 const Triple
&TT
= STI
.getTargetTriple();
73 return TT
.isOSBinFormatMachO();
76 unsigned getMachineSoImmOpValue(unsigned SoImm
) const;
78 // getBinaryCodeForInstr - TableGen'erated function for getting the
79 // binary encoding for an instruction.
80 uint64_t getBinaryCodeForInstr(const MCInst
&MI
,
81 SmallVectorImpl
<MCFixup
> &Fixups
,
82 const MCSubtargetInfo
&STI
) const;
84 /// getMachineOpValue - Return binary encoding of operand. If the machine
85 /// operand requires relocation, record the relocation and return zero.
86 unsigned getMachineOpValue(const MCInst
&MI
,const MCOperand
&MO
,
87 SmallVectorImpl
<MCFixup
> &Fixups
,
88 const MCSubtargetInfo
&STI
) const;
90 /// getHiLo16ImmOpValue - Return the encoding for the hi / low 16-bit of
91 /// the specified operand. This is used for operands with :lower16: and
92 /// :upper16: prefixes.
93 uint32_t getHiLo16ImmOpValue(const MCInst
&MI
, unsigned OpIdx
,
94 SmallVectorImpl
<MCFixup
> &Fixups
,
95 const MCSubtargetInfo
&STI
) const;
97 bool EncodeAddrModeOpValues(const MCInst
&MI
, unsigned OpIdx
,
98 unsigned &Reg
, unsigned &Imm
,
99 SmallVectorImpl
<MCFixup
> &Fixups
,
100 const MCSubtargetInfo
&STI
) const;
102 /// getThumbBLTargetOpValue - Return encoding info for Thumb immediate
103 /// BL branch target.
104 uint32_t getThumbBLTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
105 SmallVectorImpl
<MCFixup
> &Fixups
,
106 const MCSubtargetInfo
&STI
) const;
108 /// getThumbBLXTargetOpValue - Return encoding info for Thumb immediate
109 /// BLX branch target.
110 uint32_t getThumbBLXTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
111 SmallVectorImpl
<MCFixup
> &Fixups
,
112 const MCSubtargetInfo
&STI
) const;
114 /// getThumbBRTargetOpValue - Return encoding info for Thumb branch target.
115 uint32_t getThumbBRTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
116 SmallVectorImpl
<MCFixup
> &Fixups
,
117 const MCSubtargetInfo
&STI
) const;
119 /// getThumbBCCTargetOpValue - Return encoding info for Thumb branch target.
120 uint32_t getThumbBCCTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
121 SmallVectorImpl
<MCFixup
> &Fixups
,
122 const MCSubtargetInfo
&STI
) const;
124 /// getThumbCBTargetOpValue - Return encoding info for Thumb branch target.
125 uint32_t getThumbCBTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
126 SmallVectorImpl
<MCFixup
> &Fixups
,
127 const MCSubtargetInfo
&STI
) const;
129 /// getBranchTargetOpValue - Return encoding info for 24-bit immediate
131 uint32_t getBranchTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
132 SmallVectorImpl
<MCFixup
> &Fixups
,
133 const MCSubtargetInfo
&STI
) const;
135 /// getThumbBranchTargetOpValue - Return encoding info for 24-bit
136 /// immediate Thumb2 direct branch target.
137 uint32_t getThumbBranchTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
138 SmallVectorImpl
<MCFixup
> &Fixups
,
139 const MCSubtargetInfo
&STI
) const;
141 /// getARMBranchTargetOpValue - Return encoding info for 24-bit immediate
143 uint32_t getARMBranchTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
144 SmallVectorImpl
<MCFixup
> &Fixups
,
145 const MCSubtargetInfo
&STI
) const;
146 uint32_t getARMBLTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
147 SmallVectorImpl
<MCFixup
> &Fixups
,
148 const MCSubtargetInfo
&STI
) const;
149 uint32_t getARMBLXTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
150 SmallVectorImpl
<MCFixup
> &Fixups
,
151 const MCSubtargetInfo
&STI
) const;
153 /// getAdrLabelOpValue - Return encoding info for 12-bit immediate
154 /// ADR label target.
155 uint32_t getAdrLabelOpValue(const MCInst
&MI
, unsigned OpIdx
,
156 SmallVectorImpl
<MCFixup
> &Fixups
,
157 const MCSubtargetInfo
&STI
) const;
158 uint32_t getThumbAdrLabelOpValue(const MCInst
&MI
, unsigned OpIdx
,
159 SmallVectorImpl
<MCFixup
> &Fixups
,
160 const MCSubtargetInfo
&STI
) const;
161 uint32_t getT2AdrLabelOpValue(const MCInst
&MI
, unsigned OpIdx
,
162 SmallVectorImpl
<MCFixup
> &Fixups
,
163 const MCSubtargetInfo
&STI
) const;
166 /// getAddrModeImm12OpValue - Return encoding info for 'reg +/- imm12'
168 uint32_t getAddrModeImm12OpValue(const MCInst
&MI
, unsigned OpIdx
,
169 SmallVectorImpl
<MCFixup
> &Fixups
,
170 const MCSubtargetInfo
&STI
) const;
172 /// getThumbAddrModeRegRegOpValue - Return encoding for 'reg + reg' operand.
173 uint32_t getThumbAddrModeRegRegOpValue(const MCInst
&MI
, unsigned OpIdx
,
174 SmallVectorImpl
<MCFixup
> &Fixups
,
175 const MCSubtargetInfo
&STI
) const;
177 /// getT2AddrModeImm8s4OpValue - Return encoding info for 'reg +/- imm8<<2'
179 uint32_t getT2AddrModeImm8s4OpValue(const MCInst
&MI
, unsigned OpIdx
,
180 SmallVectorImpl
<MCFixup
> &Fixups
,
181 const MCSubtargetInfo
&STI
) const;
183 /// getT2AddrModeImm0_1020s4OpValue - Return encoding info for 'reg + imm8<<2'
185 uint32_t getT2AddrModeImm0_1020s4OpValue(const MCInst
&MI
, unsigned OpIdx
,
186 SmallVectorImpl
<MCFixup
> &Fixups
,
187 const MCSubtargetInfo
&STI
) const;
189 /// getT2Imm8s4OpValue - Return encoding info for '+/- imm8<<2'
191 uint32_t getT2Imm8s4OpValue(const MCInst
&MI
, unsigned OpIdx
,
192 SmallVectorImpl
<MCFixup
> &Fixups
,
193 const MCSubtargetInfo
&STI
) const;
196 /// getLdStSORegOpValue - Return encoding info for 'reg +/- reg shop imm'
197 /// operand as needed by load/store instructions.
198 uint32_t getLdStSORegOpValue(const MCInst
&MI
, unsigned OpIdx
,
199 SmallVectorImpl
<MCFixup
> &Fixups
,
200 const MCSubtargetInfo
&STI
) const;
202 /// getLdStmModeOpValue - Return encoding for load/store multiple mode.
203 uint32_t getLdStmModeOpValue(const MCInst
&MI
, unsigned OpIdx
,
204 SmallVectorImpl
<MCFixup
> &Fixups
,
205 const MCSubtargetInfo
&STI
) const {
206 ARM_AM::AMSubMode Mode
= (ARM_AM::AMSubMode
)MI
.getOperand(OpIdx
).getImm();
208 default: llvm_unreachable("Unknown addressing sub-mode!");
209 case ARM_AM::da
: return 0;
210 case ARM_AM::ia
: return 1;
211 case ARM_AM::db
: return 2;
212 case ARM_AM::ib
: return 3;
216 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
218 unsigned getShiftOp(ARM_AM::ShiftOpc ShOpc
) const {
220 case ARM_AM::no_shift
:
221 case ARM_AM::lsl
: return 0;
222 case ARM_AM::lsr
: return 1;
223 case ARM_AM::asr
: return 2;
225 case ARM_AM::rrx
: return 3;
227 llvm_unreachable("Invalid ShiftOpc!");
230 /// getAddrMode2OffsetOpValue - Return encoding for am2offset operands.
231 uint32_t getAddrMode2OffsetOpValue(const MCInst
&MI
, unsigned OpIdx
,
232 SmallVectorImpl
<MCFixup
> &Fixups
,
233 const MCSubtargetInfo
&STI
) const;
235 /// getPostIdxRegOpValue - Return encoding for postidx_reg operands.
236 uint32_t getPostIdxRegOpValue(const MCInst
&MI
, unsigned OpIdx
,
237 SmallVectorImpl
<MCFixup
> &Fixups
,
238 const MCSubtargetInfo
&STI
) const;
240 /// getAddrMode3OffsetOpValue - Return encoding for am3offset operands.
241 uint32_t getAddrMode3OffsetOpValue(const MCInst
&MI
, unsigned OpIdx
,
242 SmallVectorImpl
<MCFixup
> &Fixups
,
243 const MCSubtargetInfo
&STI
) const;
245 /// getAddrMode3OpValue - Return encoding for addrmode3 operands.
246 uint32_t getAddrMode3OpValue(const MCInst
&MI
, unsigned OpIdx
,
247 SmallVectorImpl
<MCFixup
> &Fixups
,
248 const MCSubtargetInfo
&STI
) const;
250 /// getAddrModeThumbSPOpValue - Return encoding info for 'reg +/- imm12'
252 uint32_t getAddrModeThumbSPOpValue(const MCInst
&MI
, unsigned OpIdx
,
253 SmallVectorImpl
<MCFixup
> &Fixups
,
254 const MCSubtargetInfo
&STI
) const;
256 /// getAddrModeISOpValue - Encode the t_addrmode_is# operands.
257 uint32_t getAddrModeISOpValue(const MCInst
&MI
, unsigned OpIdx
,
258 SmallVectorImpl
<MCFixup
> &Fixups
,
259 const MCSubtargetInfo
&STI
) const;
261 /// getAddrModePCOpValue - Return encoding for t_addrmode_pc operands.
262 uint32_t getAddrModePCOpValue(const MCInst
&MI
, unsigned OpIdx
,
263 SmallVectorImpl
<MCFixup
> &Fixups
,
264 const MCSubtargetInfo
&STI
) const;
266 /// getAddrMode5OpValue - Return encoding info for 'reg +/- (imm8 << 2)' operand.
267 uint32_t getAddrMode5OpValue(const MCInst
&MI
, unsigned OpIdx
,
268 SmallVectorImpl
<MCFixup
> &Fixups
,
269 const MCSubtargetInfo
&STI
) const;
271 /// getAddrMode5FP16OpValue - Return encoding info for 'reg +/- (imm8 << 1)' operand.
272 uint32_t getAddrMode5FP16OpValue(const MCInst
&MI
, unsigned OpIdx
,
273 SmallVectorImpl
<MCFixup
> &Fixups
,
274 const MCSubtargetInfo
&STI
) const;
276 /// getCCOutOpValue - Return encoding of the 's' bit.
277 unsigned getCCOutOpValue(const MCInst
&MI
, unsigned Op
,
278 SmallVectorImpl
<MCFixup
> &Fixups
,
279 const MCSubtargetInfo
&STI
) const {
280 // The operand is either reg0 or CPSR. The 's' bit is encoded as '0' or
282 return MI
.getOperand(Op
).getReg() == ARM::CPSR
;
285 /// getSOImmOpValue - Return an encoded 12-bit shifted-immediate value.
286 unsigned getSOImmOpValue(const MCInst
&MI
, unsigned Op
,
287 SmallVectorImpl
<MCFixup
> &Fixups
,
288 const MCSubtargetInfo
&STI
) const {
289 const MCOperand
&MO
= MI
.getOperand(Op
);
291 // We expect MO to be an immediate or an expression,
292 // if it is an immediate - that's fine, just encode the value.
293 // Otherwise - create a Fixup.
295 const MCExpr
*Expr
= MO
.getExpr();
296 // In instruction code this value always encoded as lowest 12 bits,
297 // so we don't have to perform any specific adjustments.
298 // Due to requirements of relocatable records we have to use FK_Data_4.
299 // See ARMELFObjectWriter::ExplicitRelSym and
300 // ARMELFObjectWriter::GetRelocTypeInner for more details.
301 MCFixupKind Kind
= MCFixupKind(FK_Data_4
);
302 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
306 unsigned SoImm
= MO
.getImm();
307 int SoImmVal
= ARM_AM::getSOImmVal(SoImm
);
308 assert(SoImmVal
!= -1 && "Not a valid so_imm value!");
310 // Encode rotate_imm.
311 unsigned Binary
= (ARM_AM::getSOImmValRot((unsigned)SoImmVal
) >> 1)
312 << ARMII::SoRotImmShift
;
315 Binary
|= ARM_AM::getSOImmValImm((unsigned)SoImmVal
);
319 unsigned getModImmOpValue(const MCInst
&MI
, unsigned Op
,
320 SmallVectorImpl
<MCFixup
> &Fixups
,
321 const MCSubtargetInfo
&ST
) const {
322 const MCOperand
&MO
= MI
.getOperand(Op
);
324 // Support for fixups (MCFixup)
326 const MCExpr
*Expr
= MO
.getExpr();
327 // Fixups resolve to plain values that need to be encoded.
328 MCFixupKind Kind
= MCFixupKind(ARM::fixup_arm_mod_imm
);
329 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
333 // Immediate is already in its encoded format
337 /// getT2SOImmOpValue - Return an encoded 12-bit shifted-immediate value.
338 unsigned getT2SOImmOpValue(const MCInst
&MI
, unsigned Op
,
339 SmallVectorImpl
<MCFixup
> &Fixups
,
340 const MCSubtargetInfo
&STI
) const {
341 const MCOperand
&MO
= MI
.getOperand(Op
);
343 // Support for fixups (MCFixup)
345 const MCExpr
*Expr
= MO
.getExpr();
346 // Fixups resolve to plain values that need to be encoded.
347 MCFixupKind Kind
= MCFixupKind(ARM::fixup_t2_so_imm
);
348 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
351 unsigned SoImm
= MO
.getImm();
352 unsigned Encoded
= ARM_AM::getT2SOImmVal(SoImm
);
353 assert(Encoded
!= ~0U && "Not a Thumb2 so_imm value?");
357 unsigned getT2AddrModeSORegOpValue(const MCInst
&MI
, unsigned OpNum
,
358 SmallVectorImpl
<MCFixup
> &Fixups
,
359 const MCSubtargetInfo
&STI
) const;
360 unsigned getT2AddrModeImm8OpValue(const MCInst
&MI
, unsigned OpNum
,
361 SmallVectorImpl
<MCFixup
> &Fixups
,
362 const MCSubtargetInfo
&STI
) const;
363 unsigned getT2AddrModeImm8OffsetOpValue(const MCInst
&MI
, unsigned OpNum
,
364 SmallVectorImpl
<MCFixup
> &Fixups
,
365 const MCSubtargetInfo
&STI
) const;
367 /// getSORegOpValue - Return an encoded so_reg shifted register value.
368 unsigned getSORegRegOpValue(const MCInst
&MI
, unsigned Op
,
369 SmallVectorImpl
<MCFixup
> &Fixups
,
370 const MCSubtargetInfo
&STI
) const;
371 unsigned getSORegImmOpValue(const MCInst
&MI
, unsigned Op
,
372 SmallVectorImpl
<MCFixup
> &Fixups
,
373 const MCSubtargetInfo
&STI
) const;
374 unsigned getT2SORegOpValue(const MCInst
&MI
, unsigned Op
,
375 SmallVectorImpl
<MCFixup
> &Fixups
,
376 const MCSubtargetInfo
&STI
) const;
378 unsigned getNEONVcvtImm32OpValue(const MCInst
&MI
, unsigned Op
,
379 SmallVectorImpl
<MCFixup
> &Fixups
,
380 const MCSubtargetInfo
&STI
) const {
381 return 64 - MI
.getOperand(Op
).getImm();
384 unsigned getBitfieldInvertedMaskOpValue(const MCInst
&MI
, unsigned Op
,
385 SmallVectorImpl
<MCFixup
> &Fixups
,
386 const MCSubtargetInfo
&STI
) const;
388 unsigned getRegisterListOpValue(const MCInst
&MI
, unsigned Op
,
389 SmallVectorImpl
<MCFixup
> &Fixups
,
390 const MCSubtargetInfo
&STI
) const;
391 unsigned getAddrMode6AddressOpValue(const MCInst
&MI
, unsigned Op
,
392 SmallVectorImpl
<MCFixup
> &Fixups
,
393 const MCSubtargetInfo
&STI
) const;
394 unsigned getAddrMode6OneLane32AddressOpValue(const MCInst
&MI
, unsigned Op
,
395 SmallVectorImpl
<MCFixup
> &Fixups
,
396 const MCSubtargetInfo
&STI
) const;
397 unsigned getAddrMode6DupAddressOpValue(const MCInst
&MI
, unsigned Op
,
398 SmallVectorImpl
<MCFixup
> &Fixups
,
399 const MCSubtargetInfo
&STI
) const;
400 unsigned getAddrMode6OffsetOpValue(const MCInst
&MI
, unsigned Op
,
401 SmallVectorImpl
<MCFixup
> &Fixups
,
402 const MCSubtargetInfo
&STI
) const;
404 unsigned getShiftRight8Imm(const MCInst
&MI
, unsigned Op
,
405 SmallVectorImpl
<MCFixup
> &Fixups
,
406 const MCSubtargetInfo
&STI
) const;
407 unsigned getShiftRight16Imm(const MCInst
&MI
, unsigned Op
,
408 SmallVectorImpl
<MCFixup
> &Fixups
,
409 const MCSubtargetInfo
&STI
) const;
410 unsigned getShiftRight32Imm(const MCInst
&MI
, unsigned Op
,
411 SmallVectorImpl
<MCFixup
> &Fixups
,
412 const MCSubtargetInfo
&STI
) const;
413 unsigned getShiftRight64Imm(const MCInst
&MI
, unsigned Op
,
414 SmallVectorImpl
<MCFixup
> &Fixups
,
415 const MCSubtargetInfo
&STI
) const;
417 unsigned getThumbSRImmOpValue(const MCInst
&MI
, unsigned Op
,
418 SmallVectorImpl
<MCFixup
> &Fixups
,
419 const MCSubtargetInfo
&STI
) const;
421 unsigned NEONThumb2DataIPostEncoder(const MCInst
&MI
,
422 unsigned EncodedValue
,
423 const MCSubtargetInfo
&STI
) const;
424 unsigned NEONThumb2LoadStorePostEncoder(const MCInst
&MI
,
425 unsigned EncodedValue
,
426 const MCSubtargetInfo
&STI
) const;
427 unsigned NEONThumb2DupPostEncoder(const MCInst
&MI
,
428 unsigned EncodedValue
,
429 const MCSubtargetInfo
&STI
) const;
430 unsigned NEONThumb2V8PostEncoder(const MCInst
&MI
,
431 unsigned EncodedValue
,
432 const MCSubtargetInfo
&STI
) const;
434 unsigned VFPThumb2PostEncoder(const MCInst
&MI
,
435 unsigned EncodedValue
,
436 const MCSubtargetInfo
&STI
) const;
438 void EmitByte(unsigned char C
, raw_ostream
&OS
) const {
442 void EmitConstant(uint64_t Val
, unsigned Size
, raw_ostream
&OS
) const {
443 // Output the constant in little endian byte order.
444 for (unsigned i
= 0; i
!= Size
; ++i
) {
445 unsigned Shift
= IsLittleEndian
? i
* 8 : (Size
- 1 - i
) * 8;
446 EmitByte((Val
>> Shift
) & 0xff, OS
);
450 void encodeInstruction(const MCInst
&MI
, raw_ostream
&OS
,
451 SmallVectorImpl
<MCFixup
> &Fixups
,
452 const MCSubtargetInfo
&STI
) const override
;
455 } // end anonymous namespace
457 /// NEONThumb2DataIPostEncoder - Post-process encoded NEON data-processing
458 /// instructions, and rewrite them to their Thumb2 form if we are currently in
460 unsigned ARMMCCodeEmitter::NEONThumb2DataIPostEncoder(const MCInst
&MI
,
461 unsigned EncodedValue
,
462 const MCSubtargetInfo
&STI
) const {
464 // NEON Thumb2 data-processsing encodings are very simple: bit 24 is moved
465 // to bit 12 of the high half-word (i.e. bit 28), and bits 27-24 are
467 unsigned Bit24
= EncodedValue
& 0x01000000;
468 unsigned Bit28
= Bit24
<< 4;
469 EncodedValue
&= 0xEFFFFFFF;
470 EncodedValue
|= Bit28
;
471 EncodedValue
|= 0x0F000000;
477 /// NEONThumb2LoadStorePostEncoder - Post-process encoded NEON load/store
478 /// instructions, and rewrite them to their Thumb2 form if we are currently in
480 unsigned ARMMCCodeEmitter::NEONThumb2LoadStorePostEncoder(const MCInst
&MI
,
481 unsigned EncodedValue
,
482 const MCSubtargetInfo
&STI
) const {
484 EncodedValue
&= 0xF0FFFFFF;
485 EncodedValue
|= 0x09000000;
491 /// NEONThumb2DupPostEncoder - Post-process encoded NEON vdup
492 /// instructions, and rewrite them to their Thumb2 form if we are currently in
494 unsigned ARMMCCodeEmitter::NEONThumb2DupPostEncoder(const MCInst
&MI
,
495 unsigned EncodedValue
,
496 const MCSubtargetInfo
&STI
) const {
498 EncodedValue
&= 0x00FFFFFF;
499 EncodedValue
|= 0xEE000000;
505 /// Post-process encoded NEON v8 instructions, and rewrite them to Thumb2 form
506 /// if we are in Thumb2.
507 unsigned ARMMCCodeEmitter::NEONThumb2V8PostEncoder(const MCInst
&MI
,
508 unsigned EncodedValue
,
509 const MCSubtargetInfo
&STI
) const {
511 EncodedValue
|= 0xC000000; // Set bits 27-26
517 /// VFPThumb2PostEncoder - Post-process encoded VFP instructions and rewrite
518 /// them to their Thumb2 form if we are currently in Thumb2 mode.
519 unsigned ARMMCCodeEmitter::
520 VFPThumb2PostEncoder(const MCInst
&MI
, unsigned EncodedValue
,
521 const MCSubtargetInfo
&STI
) const {
523 EncodedValue
&= 0x0FFFFFFF;
524 EncodedValue
|= 0xE0000000;
529 /// getMachineOpValue - Return binary encoding of operand. If the machine
530 /// operand requires relocation, record the relocation and return zero.
531 unsigned ARMMCCodeEmitter::
532 getMachineOpValue(const MCInst
&MI
, const MCOperand
&MO
,
533 SmallVectorImpl
<MCFixup
> &Fixups
,
534 const MCSubtargetInfo
&STI
) const {
536 unsigned Reg
= MO
.getReg();
537 unsigned RegNo
= CTX
.getRegisterInfo()->getEncodingValue(Reg
);
539 // Q registers are encoded as 2x their register number.
543 case ARM::Q0
: case ARM::Q1
: case ARM::Q2
: case ARM::Q3
:
544 case ARM::Q4
: case ARM::Q5
: case ARM::Q6
: case ARM::Q7
:
545 case ARM::Q8
: case ARM::Q9
: case ARM::Q10
: case ARM::Q11
:
546 case ARM::Q12
: case ARM::Q13
: case ARM::Q14
: case ARM::Q15
:
549 } else if (MO
.isImm()) {
550 return static_cast<unsigned>(MO
.getImm());
551 } else if (MO
.isFPImm()) {
552 return static_cast<unsigned>(APFloat(MO
.getFPImm())
553 .bitcastToAPInt().getHiBits(32).getLimitedValue());
556 llvm_unreachable("Unable to encode MCOperand!");
559 /// getAddrModeImmOpValue - Return encoding info for 'reg +/- imm' operand.
560 bool ARMMCCodeEmitter::
561 EncodeAddrModeOpValues(const MCInst
&MI
, unsigned OpIdx
, unsigned &Reg
,
562 unsigned &Imm
, SmallVectorImpl
<MCFixup
> &Fixups
,
563 const MCSubtargetInfo
&STI
) const {
564 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
565 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
567 Reg
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
569 int32_t SImm
= MO1
.getImm();
572 // Special value for #-0
573 if (SImm
== INT32_MIN
) {
578 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
588 /// getBranchTargetOpValue - Helper function to get the branch target operand,
589 /// which is either an immediate or requires a fixup.
590 static uint32_t getBranchTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
592 SmallVectorImpl
<MCFixup
> &Fixups
,
593 const MCSubtargetInfo
&STI
) {
594 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
596 // If the destination is an immediate, we have nothing to do.
597 if (MO
.isImm()) return MO
.getImm();
598 assert(MO
.isExpr() && "Unexpected branch target type!");
599 const MCExpr
*Expr
= MO
.getExpr();
600 MCFixupKind Kind
= MCFixupKind(FixupKind
);
601 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
603 // All of the information is in the fixup.
607 // Thumb BL and BLX use a strange offset encoding where bits 22 and 21 are
608 // determined by negating them and XOR'ing them with bit 23.
609 static int32_t encodeThumbBLOffset(int32_t offset
) {
611 uint32_t S
= (offset
& 0x800000) >> 23;
612 uint32_t J1
= (offset
& 0x400000) >> 22;
613 uint32_t J2
= (offset
& 0x200000) >> 21;
626 /// getThumbBLTargetOpValue - Return encoding info for immediate branch target.
627 uint32_t ARMMCCodeEmitter::
628 getThumbBLTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
629 SmallVectorImpl
<MCFixup
> &Fixups
,
630 const MCSubtargetInfo
&STI
) const {
631 const MCOperand MO
= MI
.getOperand(OpIdx
);
633 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_thumb_bl
,
635 return encodeThumbBLOffset(MO
.getImm());
638 /// getThumbBLXTargetOpValue - Return encoding info for Thumb immediate
639 /// BLX branch target.
640 uint32_t ARMMCCodeEmitter::
641 getThumbBLXTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
642 SmallVectorImpl
<MCFixup
> &Fixups
,
643 const MCSubtargetInfo
&STI
) const {
644 const MCOperand MO
= MI
.getOperand(OpIdx
);
646 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_thumb_blx
,
648 return encodeThumbBLOffset(MO
.getImm());
651 /// getThumbBRTargetOpValue - Return encoding info for Thumb branch target.
652 uint32_t ARMMCCodeEmitter::
653 getThumbBRTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
654 SmallVectorImpl
<MCFixup
> &Fixups
,
655 const MCSubtargetInfo
&STI
) const {
656 const MCOperand MO
= MI
.getOperand(OpIdx
);
658 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_thumb_br
,
660 return (MO
.getImm() >> 1);
663 /// getThumbBCCTargetOpValue - Return encoding info for Thumb branch target.
664 uint32_t ARMMCCodeEmitter::
665 getThumbBCCTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
666 SmallVectorImpl
<MCFixup
> &Fixups
,
667 const MCSubtargetInfo
&STI
) const {
668 const MCOperand MO
= MI
.getOperand(OpIdx
);
670 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_thumb_bcc
,
672 return (MO
.getImm() >> 1);
675 /// getThumbCBTargetOpValue - Return encoding info for Thumb branch target.
676 uint32_t ARMMCCodeEmitter::
677 getThumbCBTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
678 SmallVectorImpl
<MCFixup
> &Fixups
,
679 const MCSubtargetInfo
&STI
) const {
680 const MCOperand MO
= MI
.getOperand(OpIdx
);
682 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_thumb_cb
, Fixups
, STI
);
683 return (MO
.getImm() >> 1);
686 /// Return true if this branch has a non-always predication
687 static bool HasConditionalBranch(const MCInst
&MI
) {
688 int NumOp
= MI
.getNumOperands();
690 for (int i
= 0; i
< NumOp
-1; ++i
) {
691 const MCOperand
&MCOp1
= MI
.getOperand(i
);
692 const MCOperand
&MCOp2
= MI
.getOperand(i
+ 1);
693 if (MCOp1
.isImm() && MCOp2
.isReg() &&
694 (MCOp2
.getReg() == 0 || MCOp2
.getReg() == ARM::CPSR
)) {
695 if (ARMCC::CondCodes(MCOp1
.getImm()) != ARMCC::AL
)
703 /// getBranchTargetOpValue - Return encoding info for 24-bit immediate branch
705 uint32_t ARMMCCodeEmitter::
706 getBranchTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
707 SmallVectorImpl
<MCFixup
> &Fixups
,
708 const MCSubtargetInfo
&STI
) const {
709 // FIXME: This really, really shouldn't use TargetMachine. We don't want
710 // coupling between MC and TM anywhere we can help it.
713 ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_t2_condbranch
, Fixups
, STI
);
714 return getARMBranchTargetOpValue(MI
, OpIdx
, Fixups
, STI
);
717 /// getBranchTargetOpValue - Return encoding info for 24-bit immediate branch
719 uint32_t ARMMCCodeEmitter::
720 getARMBranchTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
721 SmallVectorImpl
<MCFixup
> &Fixups
,
722 const MCSubtargetInfo
&STI
) const {
723 const MCOperand MO
= MI
.getOperand(OpIdx
);
725 if (HasConditionalBranch(MI
))
726 return ::getBranchTargetOpValue(MI
, OpIdx
,
727 ARM::fixup_arm_condbranch
, Fixups
, STI
);
728 return ::getBranchTargetOpValue(MI
, OpIdx
,
729 ARM::fixup_arm_uncondbranch
, Fixups
, STI
);
732 return MO
.getImm() >> 2;
735 uint32_t ARMMCCodeEmitter::
736 getARMBLTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
737 SmallVectorImpl
<MCFixup
> &Fixups
,
738 const MCSubtargetInfo
&STI
) const {
739 const MCOperand MO
= MI
.getOperand(OpIdx
);
741 if (HasConditionalBranch(MI
))
742 return ::getBranchTargetOpValue(MI
, OpIdx
,
743 ARM::fixup_arm_condbl
, Fixups
, STI
);
744 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_uncondbl
, Fixups
, STI
);
747 return MO
.getImm() >> 2;
750 uint32_t ARMMCCodeEmitter::
751 getARMBLXTargetOpValue(const MCInst
&MI
, unsigned OpIdx
,
752 SmallVectorImpl
<MCFixup
> &Fixups
,
753 const MCSubtargetInfo
&STI
) const {
754 const MCOperand MO
= MI
.getOperand(OpIdx
);
756 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_blx
, Fixups
, STI
);
758 return MO
.getImm() >> 1;
761 /// getUnconditionalBranchTargetOpValue - Return encoding info for 24-bit
762 /// immediate branch target.
763 uint32_t ARMMCCodeEmitter::getThumbBranchTargetOpValue(
764 const MCInst
&MI
, unsigned OpIdx
, SmallVectorImpl
<MCFixup
> &Fixups
,
765 const MCSubtargetInfo
&STI
) const {
767 const MCOperand MO
= MI
.getOperand(OpIdx
);
770 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_t2_uncondbranch
, Fixups
, STI
);
772 Val
= MO
.getImm() >> 1;
774 bool I
= (Val
& 0x800000);
775 bool J1
= (Val
& 0x400000);
776 bool J2
= (Val
& 0x200000);
790 /// getAdrLabelOpValue - Return encoding info for 12-bit shifted-immediate
791 /// ADR label target.
792 uint32_t ARMMCCodeEmitter::
793 getAdrLabelOpValue(const MCInst
&MI
, unsigned OpIdx
,
794 SmallVectorImpl
<MCFixup
> &Fixups
,
795 const MCSubtargetInfo
&STI
) const {
796 const MCOperand MO
= MI
.getOperand(OpIdx
);
798 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_adr_pcrel_12
,
800 int64_t offset
= MO
.getImm();
801 uint32_t Val
= 0x2000;
804 if (offset
== INT32_MIN
) {
807 } else if (offset
< 0) {
810 SoImmVal
= ARM_AM::getSOImmVal(offset
);
814 SoImmVal
= ARM_AM::getSOImmVal(offset
);
817 SoImmVal
= ARM_AM::getSOImmVal(offset
);
821 SoImmVal
= ARM_AM::getSOImmVal(offset
);
825 assert(SoImmVal
!= -1 && "Not a valid so_imm value!");
831 /// getT2AdrLabelOpValue - Return encoding info for 12-bit immediate ADR label
833 uint32_t ARMMCCodeEmitter::
834 getT2AdrLabelOpValue(const MCInst
&MI
, unsigned OpIdx
,
835 SmallVectorImpl
<MCFixup
> &Fixups
,
836 const MCSubtargetInfo
&STI
) const {
837 const MCOperand MO
= MI
.getOperand(OpIdx
);
839 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_t2_adr_pcrel_12
,
841 int32_t Val
= MO
.getImm();
842 if (Val
== INT32_MIN
)
851 /// getThumbAdrLabelOpValue - Return encoding info for 8-bit immediate ADR label
853 uint32_t ARMMCCodeEmitter::
854 getThumbAdrLabelOpValue(const MCInst
&MI
, unsigned OpIdx
,
855 SmallVectorImpl
<MCFixup
> &Fixups
,
856 const MCSubtargetInfo
&STI
) const {
857 const MCOperand MO
= MI
.getOperand(OpIdx
);
859 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_thumb_adr_pcrel_10
,
864 /// getThumbAddrModeRegRegOpValue - Return encoding info for 'reg + reg'
866 uint32_t ARMMCCodeEmitter::
867 getThumbAddrModeRegRegOpValue(const MCInst
&MI
, unsigned OpIdx
,
868 SmallVectorImpl
<MCFixup
> &,
869 const MCSubtargetInfo
&STI
) const {
873 const MCOperand
&MO1
= MI
.getOperand(OpIdx
);
874 const MCOperand
&MO2
= MI
.getOperand(OpIdx
+ 1);
875 unsigned Rn
= CTX
.getRegisterInfo()->getEncodingValue(MO1
.getReg());
876 unsigned Rm
= CTX
.getRegisterInfo()->getEncodingValue(MO2
.getReg());
877 return (Rm
<< 3) | Rn
;
880 /// getAddrModeImm12OpValue - Return encoding info for 'reg +/- imm12' operand.
881 uint32_t ARMMCCodeEmitter::
882 getAddrModeImm12OpValue(const MCInst
&MI
, unsigned OpIdx
,
883 SmallVectorImpl
<MCFixup
> &Fixups
,
884 const MCSubtargetInfo
&STI
) const {
886 // {12} = (U)nsigned (add == '1', sub == '0')
890 // If The first operand isn't a register, we have a label reference.
891 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
893 Reg
= CTX
.getRegisterInfo()->getEncodingValue(ARM::PC
); // Rn is PC.
897 const MCExpr
*Expr
= MO
.getExpr();
898 isAdd
= false ; // 'U' bit is set as part of the fixup.
902 Kind
= MCFixupKind(ARM::fixup_t2_ldst_pcrel_12
);
904 Kind
= MCFixupKind(ARM::fixup_arm_ldst_pcrel_12
);
905 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
907 ++MCNumCPRelocations
;
910 int32_t Offset
= MO
.getImm();
911 if (Offset
== INT32_MIN
) {
914 } else if (Offset
< 0) {
921 isAdd
= EncodeAddrModeOpValues(MI
, OpIdx
, Reg
, Imm12
, Fixups
, STI
);
923 uint32_t Binary
= Imm12
& 0xfff;
924 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
927 Binary
|= (Reg
<< 13);
931 /// getT2Imm8s4OpValue - Return encoding info for
932 /// '+/- imm8<<2' operand.
933 uint32_t ARMMCCodeEmitter::
934 getT2Imm8s4OpValue(const MCInst
&MI
, unsigned OpIdx
,
935 SmallVectorImpl
<MCFixup
> &Fixups
,
936 const MCSubtargetInfo
&STI
) const {
937 // FIXME: The immediate operand should have already been encoded like this
938 // before ever getting here. The encoder method should just need to combine
939 // the MI operands for the register and the offset into a single
940 // representation for the complex operand in the .td file. This isn't just
941 // style, unfortunately. As-is, we can't represent the distinct encoding
944 // {8} = (U)nsigned (add == '1', sub == '0')
946 int32_t Imm8
= MI
.getOperand(OpIdx
).getImm();
947 bool isAdd
= Imm8
>= 0;
949 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
951 Imm8
= -(uint32_t)Imm8
;
956 uint32_t Binary
= Imm8
& 0xff;
957 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
963 /// getT2AddrModeImm8s4OpValue - Return encoding info for
964 /// 'reg +/- imm8<<2' operand.
965 uint32_t ARMMCCodeEmitter::
966 getT2AddrModeImm8s4OpValue(const MCInst
&MI
, unsigned OpIdx
,
967 SmallVectorImpl
<MCFixup
> &Fixups
,
968 const MCSubtargetInfo
&STI
) const {
970 // {8} = (U)nsigned (add == '1', sub == '0')
974 // If The first operand isn't a register, we have a label reference.
975 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
977 Reg
= CTX
.getRegisterInfo()->getEncodingValue(ARM::PC
); // Rn is PC.
979 isAdd
= false ; // 'U' bit is set as part of the fixup.
981 assert(MO
.isExpr() && "Unexpected machine operand type!");
982 const MCExpr
*Expr
= MO
.getExpr();
983 MCFixupKind Kind
= MCFixupKind(ARM::fixup_t2_pcrel_10
);
984 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
986 ++MCNumCPRelocations
;
988 isAdd
= EncodeAddrModeOpValues(MI
, OpIdx
, Reg
, Imm8
, Fixups
, STI
);
990 // FIXME: The immediate operand should have already been encoded like this
991 // before ever getting here. The encoder method should just need to combine
992 // the MI operands for the register and the offset into a single
993 // representation for the complex operand in the .td file. This isn't just
994 // style, unfortunately. As-is, we can't represent the distinct encoding
996 uint32_t Binary
= (Imm8
>> 2) & 0xff;
997 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
1000 Binary
|= (Reg
<< 9);
1004 /// getT2AddrModeImm0_1020s4OpValue - Return encoding info for
1005 /// 'reg + imm8<<2' operand.
1006 uint32_t ARMMCCodeEmitter::
1007 getT2AddrModeImm0_1020s4OpValue(const MCInst
&MI
, unsigned OpIdx
,
1008 SmallVectorImpl
<MCFixup
> &Fixups
,
1009 const MCSubtargetInfo
&STI
) const {
1012 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1013 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
1014 unsigned Reg
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1015 unsigned Imm8
= MO1
.getImm();
1016 return (Reg
<< 8) | Imm8
;
1020 ARMMCCodeEmitter::getHiLo16ImmOpValue(const MCInst
&MI
, unsigned OpIdx
,
1021 SmallVectorImpl
<MCFixup
> &Fixups
,
1022 const MCSubtargetInfo
&STI
) const {
1023 // {20-16} = imm{15-12}
1024 // {11-0} = imm{11-0}
1025 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1027 // Hi / lo 16 bits already extracted during earlier passes.
1028 return static_cast<unsigned>(MO
.getImm());
1030 // Handle :upper16: and :lower16: assembly prefixes.
1031 const MCExpr
*E
= MO
.getExpr();
1033 if (E
->getKind() == MCExpr::Target
) {
1034 const ARMMCExpr
*ARM16Expr
= cast
<ARMMCExpr
>(E
);
1035 E
= ARM16Expr
->getSubExpr();
1037 if (const MCConstantExpr
*MCE
= dyn_cast
<MCConstantExpr
>(E
)) {
1038 const int64_t Value
= MCE
->getValue();
1039 if (Value
> UINT32_MAX
)
1040 report_fatal_error("constant value truncated (limited to 32-bit)");
1042 switch (ARM16Expr
->getKind()) {
1043 case ARMMCExpr::VK_ARM_HI16
:
1044 return (int32_t(Value
) & 0xffff0000) >> 16;
1045 case ARMMCExpr::VK_ARM_LO16
:
1046 return (int32_t(Value
) & 0x0000ffff);
1047 default: llvm_unreachable("Unsupported ARMFixup");
1051 switch (ARM16Expr
->getKind()) {
1052 default: llvm_unreachable("Unsupported ARMFixup");
1053 case ARMMCExpr::VK_ARM_HI16
:
1054 Kind
= MCFixupKind(isThumb(STI
) ? ARM::fixup_t2_movt_hi16
1055 : ARM::fixup_arm_movt_hi16
);
1057 case ARMMCExpr::VK_ARM_LO16
:
1058 Kind
= MCFixupKind(isThumb(STI
) ? ARM::fixup_t2_movw_lo16
1059 : ARM::fixup_arm_movw_lo16
);
1063 Fixups
.push_back(MCFixup::create(0, E
, Kind
, MI
.getLoc()));
1066 // If the expression doesn't have :upper16: or :lower16: on it,
1067 // it's just a plain immediate expression, previously those evaluated to
1068 // the lower 16 bits of the expression regardless of whether
1069 // we have a movt or a movw, but that led to misleadingly results.
1070 // This is disallowed in the AsmParser in validateInstruction()
1071 // so this should never happen.
1072 llvm_unreachable("expression without :upper16: or :lower16:");
1075 uint32_t ARMMCCodeEmitter::
1076 getLdStSORegOpValue(const MCInst
&MI
, unsigned OpIdx
,
1077 SmallVectorImpl
<MCFixup
> &Fixups
,
1078 const MCSubtargetInfo
&STI
) const {
1079 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1080 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+1);
1081 const MCOperand
&MO2
= MI
.getOperand(OpIdx
+2);
1082 unsigned Rn
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1083 unsigned Rm
= CTX
.getRegisterInfo()->getEncodingValue(MO1
.getReg());
1084 unsigned ShImm
= ARM_AM::getAM2Offset(MO2
.getImm());
1085 bool isAdd
= ARM_AM::getAM2Op(MO2
.getImm()) == ARM_AM::add
;
1086 ARM_AM::ShiftOpc ShOp
= ARM_AM::getAM2ShiftOpc(MO2
.getImm());
1087 unsigned SBits
= getShiftOp(ShOp
);
1089 // While "lsr #32" and "asr #32" exist, they are encoded with a 0 in the shift
1090 // amount. However, it would be an easy mistake to make so check here.
1091 assert((ShImm
& ~0x1f) == 0 && "Out of range shift amount");
1100 uint32_t Binary
= Rm
;
1102 Binary
|= SBits
<< 5;
1103 Binary
|= ShImm
<< 7;
1109 uint32_t ARMMCCodeEmitter::
1110 getAddrMode2OffsetOpValue(const MCInst
&MI
, unsigned OpIdx
,
1111 SmallVectorImpl
<MCFixup
> &Fixups
,
1112 const MCSubtargetInfo
&STI
) const {
1113 // {13} 1 == imm12, 0 == Rm
1116 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1117 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+1);
1118 unsigned Imm
= MO1
.getImm();
1119 bool isAdd
= ARM_AM::getAM2Op(Imm
) == ARM_AM::add
;
1120 bool isReg
= MO
.getReg() != 0;
1121 uint32_t Binary
= ARM_AM::getAM2Offset(Imm
);
1122 // if reg +/- reg, Rm will be non-zero. Otherwise, we have reg +/- imm12
1124 ARM_AM::ShiftOpc ShOp
= ARM_AM::getAM2ShiftOpc(Imm
);
1125 Binary
<<= 7; // Shift amount is bits [11:7]
1126 Binary
|= getShiftOp(ShOp
) << 5; // Shift type is bits [6:5]
1127 Binary
|= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg()); // Rm is bits [3:0]
1129 return Binary
| (isAdd
<< 12) | (isReg
<< 13);
1132 uint32_t ARMMCCodeEmitter::
1133 getPostIdxRegOpValue(const MCInst
&MI
, unsigned OpIdx
,
1134 SmallVectorImpl
<MCFixup
> &Fixups
,
1135 const MCSubtargetInfo
&STI
) const {
1138 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1139 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+1);
1140 bool isAdd
= MO1
.getImm() != 0;
1141 return CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg()) | (isAdd
<< 4);
1144 uint32_t ARMMCCodeEmitter::
1145 getAddrMode3OffsetOpValue(const MCInst
&MI
, unsigned OpIdx
,
1146 SmallVectorImpl
<MCFixup
> &Fixups
,
1147 const MCSubtargetInfo
&STI
) const {
1148 // {9} 1 == imm8, 0 == Rm
1150 // {7-4} imm7_4/zero
1152 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1153 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+1);
1154 unsigned Imm
= MO1
.getImm();
1155 bool isAdd
= ARM_AM::getAM3Op(Imm
) == ARM_AM::add
;
1156 bool isImm
= MO
.getReg() == 0;
1157 uint32_t Imm8
= ARM_AM::getAM3Offset(Imm
);
1158 // if reg +/- reg, Rm will be non-zero. Otherwise, we have reg +/- imm8
1160 Imm8
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1161 return Imm8
| (isAdd
<< 8) | (isImm
<< 9);
1164 uint32_t ARMMCCodeEmitter::
1165 getAddrMode3OpValue(const MCInst
&MI
, unsigned OpIdx
,
1166 SmallVectorImpl
<MCFixup
> &Fixups
,
1167 const MCSubtargetInfo
&STI
) const {
1168 // {13} 1 == imm8, 0 == Rm
1171 // {7-4} imm7_4/zero
1173 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1174 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+1);
1175 const MCOperand
&MO2
= MI
.getOperand(OpIdx
+2);
1177 // If The first operand isn't a register, we have a label reference.
1179 unsigned Rn
= CTX
.getRegisterInfo()->getEncodingValue(ARM::PC
); // Rn is PC.
1181 assert(MO
.isExpr() && "Unexpected machine operand type!");
1182 const MCExpr
*Expr
= MO
.getExpr();
1183 MCFixupKind Kind
= MCFixupKind(ARM::fixup_arm_pcrel_10_unscaled
);
1184 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
1186 ++MCNumCPRelocations
;
1187 return (Rn
<< 9) | (1 << 13);
1189 unsigned Rn
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1190 unsigned Imm
= MO2
.getImm();
1191 bool isAdd
= ARM_AM::getAM3Op(Imm
) == ARM_AM::add
;
1192 bool isImm
= MO1
.getReg() == 0;
1193 uint32_t Imm8
= ARM_AM::getAM3Offset(Imm
);
1194 // if reg +/- reg, Rm will be non-zero. Otherwise, we have reg +/- imm8
1196 Imm8
= CTX
.getRegisterInfo()->getEncodingValue(MO1
.getReg());
1197 return (Rn
<< 9) | Imm8
| (isAdd
<< 8) | (isImm
<< 13);
1200 /// getAddrModeThumbSPOpValue - Encode the t_addrmode_sp operands.
1201 uint32_t ARMMCCodeEmitter::
1202 getAddrModeThumbSPOpValue(const MCInst
&MI
, unsigned OpIdx
,
1203 SmallVectorImpl
<MCFixup
> &Fixups
,
1204 const MCSubtargetInfo
&STI
) const {
1207 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
1208 assert(MI
.getOperand(OpIdx
).getReg() == ARM::SP
&&
1209 "Unexpected base register!");
1211 // The immediate is already shifted for the implicit zeroes, so no change
1213 return MO1
.getImm() & 0xff;
1216 /// getAddrModeISOpValue - Encode the t_addrmode_is# operands.
1217 uint32_t ARMMCCodeEmitter::
1218 getAddrModeISOpValue(const MCInst
&MI
, unsigned OpIdx
,
1219 SmallVectorImpl
<MCFixup
> &Fixups
,
1220 const MCSubtargetInfo
&STI
) const {
1224 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1225 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
1226 unsigned Rn
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1227 unsigned Imm5
= MO1
.getImm();
1228 return ((Imm5
& 0x1f) << 3) | Rn
;
1231 /// getAddrModePCOpValue - Return encoding for t_addrmode_pc operands.
1232 uint32_t ARMMCCodeEmitter::
1233 getAddrModePCOpValue(const MCInst
&MI
, unsigned OpIdx
,
1234 SmallVectorImpl
<MCFixup
> &Fixups
,
1235 const MCSubtargetInfo
&STI
) const {
1236 const MCOperand MO
= MI
.getOperand(OpIdx
);
1238 return ::getBranchTargetOpValue(MI
, OpIdx
, ARM::fixup_arm_thumb_cp
, Fixups
, STI
);
1239 return (MO
.getImm() >> 2);
1242 /// getAddrMode5OpValue - Return encoding info for 'reg +/- (imm8 << 2)' operand.
1243 uint32_t ARMMCCodeEmitter::
1244 getAddrMode5OpValue(const MCInst
&MI
, unsigned OpIdx
,
1245 SmallVectorImpl
<MCFixup
> &Fixups
,
1246 const MCSubtargetInfo
&STI
) const {
1248 // {8} = (U)nsigned (add == '1', sub == '0')
1252 // If The first operand isn't a register, we have a label reference.
1253 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1255 Reg
= CTX
.getRegisterInfo()->getEncodingValue(ARM::PC
); // Rn is PC.
1257 isAdd
= false; // 'U' bit is handled as part of the fixup.
1259 assert(MO
.isExpr() && "Unexpected machine operand type!");
1260 const MCExpr
*Expr
= MO
.getExpr();
1263 Kind
= MCFixupKind(ARM::fixup_t2_pcrel_10
);
1265 Kind
= MCFixupKind(ARM::fixup_arm_pcrel_10
);
1266 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
1268 ++MCNumCPRelocations
;
1270 EncodeAddrModeOpValues(MI
, OpIdx
, Reg
, Imm8
, Fixups
, STI
);
1271 isAdd
= ARM_AM::getAM5Op(Imm8
) == ARM_AM::add
;
1274 uint32_t Binary
= ARM_AM::getAM5Offset(Imm8
);
1275 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
1278 Binary
|= (Reg
<< 9);
1282 /// getAddrMode5FP16OpValue - Return encoding info for 'reg +/- (imm8 << 1)' operand.
1283 uint32_t ARMMCCodeEmitter::
1284 getAddrMode5FP16OpValue(const MCInst
&MI
, unsigned OpIdx
,
1285 SmallVectorImpl
<MCFixup
> &Fixups
,
1286 const MCSubtargetInfo
&STI
) const {
1288 // {8} = (U)nsigned (add == '1', sub == '0')
1292 // If The first operand isn't a register, we have a label reference.
1293 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1295 Reg
= CTX
.getRegisterInfo()->getEncodingValue(ARM::PC
); // Rn is PC.
1297 isAdd
= false; // 'U' bit is handled as part of the fixup.
1299 assert(MO
.isExpr() && "Unexpected machine operand type!");
1300 const MCExpr
*Expr
= MO
.getExpr();
1303 Kind
= MCFixupKind(ARM::fixup_t2_pcrel_9
);
1305 Kind
= MCFixupKind(ARM::fixup_arm_pcrel_9
);
1306 Fixups
.push_back(MCFixup::create(0, Expr
, Kind
, MI
.getLoc()));
1308 ++MCNumCPRelocations
;
1310 EncodeAddrModeOpValues(MI
, OpIdx
, Reg
, Imm8
, Fixups
, STI
);
1311 isAdd
= ARM_AM::getAM5Op(Imm8
) == ARM_AM::add
;
1314 uint32_t Binary
= ARM_AM::getAM5Offset(Imm8
);
1315 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
1318 Binary
|= (Reg
<< 9);
1322 unsigned ARMMCCodeEmitter::
1323 getSORegRegOpValue(const MCInst
&MI
, unsigned OpIdx
,
1324 SmallVectorImpl
<MCFixup
> &Fixups
,
1325 const MCSubtargetInfo
&STI
) const {
1326 // Sub-operands are [reg, reg, imm]. The first register is Rm, the reg to be
1327 // shifted. The second is Rs, the amount to shift by, and the third specifies
1328 // the type of the shift.
1336 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1337 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
1338 const MCOperand
&MO2
= MI
.getOperand(OpIdx
+ 2);
1339 ARM_AM::ShiftOpc SOpc
= ARM_AM::getSORegShOp(MO2
.getImm());
1342 unsigned Binary
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1344 // Encode the shift opcode.
1346 unsigned Rs
= MO1
.getReg();
1348 // Set shift operand (bit[7:4]).
1354 default: llvm_unreachable("Unknown shift opc!");
1355 case ARM_AM::lsl
: SBits
= 0x1; break;
1356 case ARM_AM::lsr
: SBits
= 0x3; break;
1357 case ARM_AM::asr
: SBits
= 0x5; break;
1358 case ARM_AM::ror
: SBits
= 0x7; break;
1362 Binary
|= SBits
<< 4;
1364 // Encode the shift operation Rs.
1365 // Encode Rs bit[11:8].
1366 assert(ARM_AM::getSORegOffset(MO2
.getImm()) == 0);
1367 return Binary
| (CTX
.getRegisterInfo()->getEncodingValue(Rs
) << ARMII::RegRsShift
);
1370 unsigned ARMMCCodeEmitter::
1371 getSORegImmOpValue(const MCInst
&MI
, unsigned OpIdx
,
1372 SmallVectorImpl
<MCFixup
> &Fixups
,
1373 const MCSubtargetInfo
&STI
) const {
1374 // Sub-operands are [reg, imm]. The first register is Rm, the reg to be
1375 // shifted. The second is the amount to shift by.
1382 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1383 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
1384 ARM_AM::ShiftOpc SOpc
= ARM_AM::getSORegShOp(MO1
.getImm());
1387 unsigned Binary
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1389 // Encode the shift opcode.
1392 // Set shift operand (bit[6:4]).
1397 // RRX - 110 and bit[11:8] clear.
1399 default: llvm_unreachable("Unknown shift opc!");
1400 case ARM_AM::lsl
: SBits
= 0x0; break;
1401 case ARM_AM::lsr
: SBits
= 0x2; break;
1402 case ARM_AM::asr
: SBits
= 0x4; break;
1403 case ARM_AM::ror
: SBits
= 0x6; break;
1409 // Encode shift_imm bit[11:7].
1410 Binary
|= SBits
<< 4;
1411 unsigned Offset
= ARM_AM::getSORegOffset(MO1
.getImm());
1412 assert(Offset
< 32 && "Offset must be in range 0-31!");
1413 return Binary
| (Offset
<< 7);
1417 unsigned ARMMCCodeEmitter::
1418 getT2AddrModeSORegOpValue(const MCInst
&MI
, unsigned OpNum
,
1419 SmallVectorImpl
<MCFixup
> &Fixups
,
1420 const MCSubtargetInfo
&STI
) const {
1421 const MCOperand
&MO1
= MI
.getOperand(OpNum
);
1422 const MCOperand
&MO2
= MI
.getOperand(OpNum
+1);
1423 const MCOperand
&MO3
= MI
.getOperand(OpNum
+2);
1425 // Encoded as [Rn, Rm, imm].
1426 // FIXME: Needs fixup support.
1427 unsigned Value
= CTX
.getRegisterInfo()->getEncodingValue(MO1
.getReg());
1429 Value
|= CTX
.getRegisterInfo()->getEncodingValue(MO2
.getReg());
1431 Value
|= MO3
.getImm();
1436 unsigned ARMMCCodeEmitter::
1437 getT2AddrModeImm8OpValue(const MCInst
&MI
, unsigned OpNum
,
1438 SmallVectorImpl
<MCFixup
> &Fixups
,
1439 const MCSubtargetInfo
&STI
) const {
1440 const MCOperand
&MO1
= MI
.getOperand(OpNum
);
1441 const MCOperand
&MO2
= MI
.getOperand(OpNum
+1);
1443 // FIXME: Needs fixup support.
1444 unsigned Value
= CTX
.getRegisterInfo()->getEncodingValue(MO1
.getReg());
1446 // Even though the immediate is 8 bits long, we need 9 bits in order
1447 // to represent the (inverse of the) sign bit.
1449 int32_t tmp
= (int32_t)MO2
.getImm();
1453 Value
|= 256; // Set the ADD bit
1458 unsigned ARMMCCodeEmitter::
1459 getT2AddrModeImm8OffsetOpValue(const MCInst
&MI
, unsigned OpNum
,
1460 SmallVectorImpl
<MCFixup
> &Fixups
,
1461 const MCSubtargetInfo
&STI
) const {
1462 const MCOperand
&MO1
= MI
.getOperand(OpNum
);
1464 // FIXME: Needs fixup support.
1466 int32_t tmp
= (int32_t)MO1
.getImm();
1470 Value
|= 256; // Set the ADD bit
1475 unsigned ARMMCCodeEmitter::
1476 getT2SORegOpValue(const MCInst
&MI
, unsigned OpIdx
,
1477 SmallVectorImpl
<MCFixup
> &Fixups
,
1478 const MCSubtargetInfo
&STI
) const {
1479 // Sub-operands are [reg, imm]. The first register is Rm, the reg to be
1480 // shifted. The second is the amount to shift by.
1487 const MCOperand
&MO
= MI
.getOperand(OpIdx
);
1488 const MCOperand
&MO1
= MI
.getOperand(OpIdx
+ 1);
1489 ARM_AM::ShiftOpc SOpc
= ARM_AM::getSORegShOp(MO1
.getImm());
1492 unsigned Binary
= CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1494 // Encode the shift opcode.
1496 // Set shift operand (bit[6:4]).
1502 default: llvm_unreachable("Unknown shift opc!");
1503 case ARM_AM::lsl
: SBits
= 0x0; break;
1504 case ARM_AM::lsr
: SBits
= 0x2; break;
1505 case ARM_AM::asr
: SBits
= 0x4; break;
1506 case ARM_AM::rrx
: LLVM_FALLTHROUGH
;
1507 case ARM_AM::ror
: SBits
= 0x6; break;
1510 Binary
|= SBits
<< 4;
1511 if (SOpc
== ARM_AM::rrx
)
1514 // Encode shift_imm bit[11:7].
1515 return Binary
| ARM_AM::getSORegOffset(MO1
.getImm()) << 7;
1518 unsigned ARMMCCodeEmitter::
1519 getBitfieldInvertedMaskOpValue(const MCInst
&MI
, unsigned Op
,
1520 SmallVectorImpl
<MCFixup
> &Fixups
,
1521 const MCSubtargetInfo
&STI
) const {
1522 // 10 bits. lower 5 bits are the lsb of the mask, high five bits are the
1524 const MCOperand
&MO
= MI
.getOperand(Op
);
1525 uint32_t v
= ~MO
.getImm();
1526 uint32_t lsb
= countTrailingZeros(v
);
1527 uint32_t msb
= (32 - countLeadingZeros (v
)) - 1;
1528 assert(v
!= 0 && lsb
< 32 && msb
< 32 && "Illegal bitfield mask!");
1529 return lsb
| (msb
<< 5);
1532 unsigned ARMMCCodeEmitter::
1533 getRegisterListOpValue(const MCInst
&MI
, unsigned Op
,
1534 SmallVectorImpl
<MCFixup
> &Fixups
,
1535 const MCSubtargetInfo
&STI
) const {
1538 // {7-0} = Number of registers
1541 // {15-0} = Bitfield of GPRs.
1542 unsigned Reg
= MI
.getOperand(Op
).getReg();
1543 bool SPRRegs
= ARMMCRegisterClasses
[ARM::SPRRegClassID
].contains(Reg
);
1544 bool DPRRegs
= ARMMCRegisterClasses
[ARM::DPRRegClassID
].contains(Reg
);
1546 unsigned Binary
= 0;
1548 if (SPRRegs
|| DPRRegs
) {
1550 unsigned RegNo
= CTX
.getRegisterInfo()->getEncodingValue(Reg
);
1551 unsigned NumRegs
= (MI
.getNumOperands() - Op
) & 0xff;
1552 Binary
|= (RegNo
& 0x1f) << 8;
1556 Binary
|= NumRegs
* 2;
1558 const MCRegisterInfo
&MRI
= *CTX
.getRegisterInfo();
1559 assert(std::is_sorted(MI
.begin() + Op
, MI
.end(),
1560 [&](const MCOperand
&LHS
, const MCOperand
&RHS
) {
1561 return MRI
.getEncodingValue(LHS
.getReg()) <
1562 MRI
.getEncodingValue(RHS
.getReg());
1565 for (unsigned I
= Op
, E
= MI
.getNumOperands(); I
< E
; ++I
) {
1566 unsigned RegNo
= MRI
.getEncodingValue(MI
.getOperand(I
).getReg());
1567 Binary
|= 1 << RegNo
;
1574 /// getAddrMode6AddressOpValue - Encode an addrmode6 register number along
1575 /// with the alignment operand.
1576 unsigned ARMMCCodeEmitter::
1577 getAddrMode6AddressOpValue(const MCInst
&MI
, unsigned Op
,
1578 SmallVectorImpl
<MCFixup
> &Fixups
,
1579 const MCSubtargetInfo
&STI
) const {
1580 const MCOperand
&Reg
= MI
.getOperand(Op
);
1581 const MCOperand
&Imm
= MI
.getOperand(Op
+ 1);
1583 unsigned RegNo
= CTX
.getRegisterInfo()->getEncodingValue(Reg
.getReg());
1586 switch (Imm
.getImm()) {
1590 case 8: Align
= 0x01; break;
1591 case 16: Align
= 0x02; break;
1592 case 32: Align
= 0x03; break;
1595 return RegNo
| (Align
<< 4);
1598 /// getAddrMode6OneLane32AddressOpValue - Encode an addrmode6 register number
1599 /// along with the alignment operand for use in VST1 and VLD1 with size 32.
1600 unsigned ARMMCCodeEmitter::
1601 getAddrMode6OneLane32AddressOpValue(const MCInst
&MI
, unsigned Op
,
1602 SmallVectorImpl
<MCFixup
> &Fixups
,
1603 const MCSubtargetInfo
&STI
) const {
1604 const MCOperand
&Reg
= MI
.getOperand(Op
);
1605 const MCOperand
&Imm
= MI
.getOperand(Op
+ 1);
1607 unsigned RegNo
= CTX
.getRegisterInfo()->getEncodingValue(Reg
.getReg());
1610 switch (Imm
.getImm()) {
1614 case 32: // Default '0' value for invalid alignments of 8, 16, 32 bytes.
1615 case 2: Align
= 0x00; break;
1616 case 4: Align
= 0x03; break;
1619 return RegNo
| (Align
<< 4);
1623 /// getAddrMode6DupAddressOpValue - Encode an addrmode6 register number and
1624 /// alignment operand for use in VLD-dup instructions. This is the same as
1625 /// getAddrMode6AddressOpValue except for the alignment encoding, which is
1626 /// different for VLD4-dup.
1627 unsigned ARMMCCodeEmitter::
1628 getAddrMode6DupAddressOpValue(const MCInst
&MI
, unsigned Op
,
1629 SmallVectorImpl
<MCFixup
> &Fixups
,
1630 const MCSubtargetInfo
&STI
) const {
1631 const MCOperand
&Reg
= MI
.getOperand(Op
);
1632 const MCOperand
&Imm
= MI
.getOperand(Op
+ 1);
1634 unsigned RegNo
= CTX
.getRegisterInfo()->getEncodingValue(Reg
.getReg());
1637 switch (Imm
.getImm()) {
1641 case 8: Align
= 0x01; break;
1642 case 16: Align
= 0x03; break;
1645 return RegNo
| (Align
<< 4);
1648 unsigned ARMMCCodeEmitter::
1649 getAddrMode6OffsetOpValue(const MCInst
&MI
, unsigned Op
,
1650 SmallVectorImpl
<MCFixup
> &Fixups
,
1651 const MCSubtargetInfo
&STI
) const {
1652 const MCOperand
&MO
= MI
.getOperand(Op
);
1653 if (MO
.getReg() == 0) return 0x0D;
1654 return CTX
.getRegisterInfo()->getEncodingValue(MO
.getReg());
1657 unsigned ARMMCCodeEmitter::
1658 getShiftRight8Imm(const MCInst
&MI
, unsigned Op
,
1659 SmallVectorImpl
<MCFixup
> &Fixups
,
1660 const MCSubtargetInfo
&STI
) const {
1661 return 8 - MI
.getOperand(Op
).getImm();
1664 unsigned ARMMCCodeEmitter::
1665 getShiftRight16Imm(const MCInst
&MI
, unsigned Op
,
1666 SmallVectorImpl
<MCFixup
> &Fixups
,
1667 const MCSubtargetInfo
&STI
) const {
1668 return 16 - MI
.getOperand(Op
).getImm();
1671 unsigned ARMMCCodeEmitter::
1672 getShiftRight32Imm(const MCInst
&MI
, unsigned Op
,
1673 SmallVectorImpl
<MCFixup
> &Fixups
,
1674 const MCSubtargetInfo
&STI
) const {
1675 return 32 - MI
.getOperand(Op
).getImm();
1678 unsigned ARMMCCodeEmitter::
1679 getShiftRight64Imm(const MCInst
&MI
, unsigned Op
,
1680 SmallVectorImpl
<MCFixup
> &Fixups
,
1681 const MCSubtargetInfo
&STI
) const {
1682 return 64 - MI
.getOperand(Op
).getImm();
1685 void ARMMCCodeEmitter::
1686 encodeInstruction(const MCInst
&MI
, raw_ostream
&OS
,
1687 SmallVectorImpl
<MCFixup
> &Fixups
,
1688 const MCSubtargetInfo
&STI
) const {
1689 // Pseudo instructions don't get encoded.
1690 const MCInstrDesc
&Desc
= MCII
.get(MI
.getOpcode());
1691 uint64_t TSFlags
= Desc
.TSFlags
;
1692 if ((TSFlags
& ARMII::FormMask
) == ARMII::Pseudo
)
1696 if (Desc
.getSize() == 2 || Desc
.getSize() == 4)
1697 Size
= Desc
.getSize();
1699 llvm_unreachable("Unexpected instruction size!");
1701 uint32_t Binary
= getBinaryCodeForInstr(MI
, Fixups
, STI
);
1702 // Thumb 32-bit wide instructions need to emit the high order halfword
1704 if (isThumb(STI
) && Size
== 4) {
1705 EmitConstant(Binary
>> 16, 2, OS
);
1706 EmitConstant(Binary
& 0xffff, 2, OS
);
1708 EmitConstant(Binary
, Size
, OS
);
1709 ++MCNumEmitted
; // Keep track of the # of mi's emitted.
1712 #include "ARMGenMCCodeEmitter.inc"
1714 MCCodeEmitter
*llvm::createARMLEMCCodeEmitter(const MCInstrInfo
&MCII
,
1715 const MCRegisterInfo
&MRI
,
1717 return new ARMMCCodeEmitter(MCII
, Ctx
, true);
1720 MCCodeEmitter
*llvm::createARMBEMCCodeEmitter(const MCInstrInfo
&MCII
,
1721 const MCRegisterInfo
&MRI
,
1723 return new ARMMCCodeEmitter(MCII
, Ctx
, false);