Jim Grosbach | 2cee75a | 2010-10-08 17:28:40 +0000 | [diff] [blame] | 1 | //===-- ARM/ARMCodeEmitter.cpp - Convert ARM code to machine code ---------===// |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the pass that transforms the ARM machine instructions into |
| 11 | // relocatable machine code. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Evan Cheng | 0f28243 | 2008-10-29 23:55:43 +0000 | [diff] [blame] | 15 | #define DEBUG_TYPE "jit" |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 16 | #include "ARM.h" |
| 17 | #include "ARMAddressingModes.h" |
Evan Cheng | 0f28243 | 2008-10-29 23:55:43 +0000 | [diff] [blame] | 18 | #include "ARMConstantPoolValue.h" |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 19 | #include "ARMInstrInfo.h" |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 20 | #include "ARMRelocations.h" |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 21 | #include "ARMSubtarget.h" |
| 22 | #include "ARMTargetMachine.h" |
Jim Grosbach | bc6d876 | 2008-10-28 18:25:49 +0000 | [diff] [blame] | 23 | #include "llvm/Constants.h" |
| 24 | #include "llvm/DerivedTypes.h" |
Evan Cheng | 42d5ee06 | 2008-09-13 01:15:21 +0000 | [diff] [blame] | 25 | #include "llvm/Function.h" |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 26 | #include "llvm/PassManager.h" |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/JITCodeEmitter.h" |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineConstantPool.h" |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 30 | #include "llvm/CodeGen/MachineInstr.h" |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Daniel Dunbar | 003de66 | 2009-09-21 05:58:35 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/Passes.h" |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/Statistic.h" |
Evan Cheng | 42d5ee06 | 2008-09-13 01:15:21 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Debug.h" |
Torok Edwin | ab7c09b | 2009-07-08 18:01:40 +0000 | [diff] [blame] | 36 | #include "llvm/Support/ErrorHandling.h" |
| 37 | #include "llvm/Support/raw_ostream.h" |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 38 | #ifndef NDEBUG |
| 39 | #include <iomanip> |
| 40 | #endif |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 41 | using namespace llvm; |
| 42 | |
| 43 | STATISTIC(NumEmitted, "Number of machine instructions emitted"); |
| 44 | |
| 45 | namespace { |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 47 | class ARMCodeEmitter : public MachineFunctionPass { |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 48 | ARMJITInfo *JTI; |
| 49 | const ARMInstrInfo *II; |
| 50 | const TargetData *TD; |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 51 | const ARMSubtarget *Subtarget; |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 52 | TargetMachine &TM; |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 53 | JITCodeEmitter &MCE; |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 54 | MachineModuleInfo *MMI; |
Evan Cheng | 938b9d8 | 2008-10-31 19:55:13 +0000 | [diff] [blame] | 55 | const std::vector<MachineConstantPoolEntry> *MCPEs; |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 56 | const std::vector<MachineJumpTableEntry> *MJTEs; |
| 57 | bool IsPIC; |
Bob Wilson | 62d24a4 | 2010-06-28 22:23:17 +0000 | [diff] [blame] | 58 | bool IsThumb; |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 59 | |
Daniel Dunbar | 003de66 | 2009-09-21 05:58:35 +0000 | [diff] [blame] | 60 | void getAnalysisUsage(AnalysisUsage &AU) const { |
| 61 | AU.addRequired<MachineModuleInfo>(); |
| 62 | MachineFunctionPass::getAnalysisUsage(AU); |
| 63 | } |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 64 | |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 65 | static char ID; |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 66 | public: |
| 67 | ARMCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce) |
Owen Anderson | 90c579d | 2010-08-06 18:33:48 +0000 | [diff] [blame] | 68 | : MachineFunctionPass(ID), JTI(0), |
Dan Gohman | 3fb150a | 2010-04-17 17:42:52 +0000 | [diff] [blame] | 69 | II((const ARMInstrInfo *)tm.getInstrInfo()), |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 70 | TD(tm.getTargetData()), TM(tm), |
Bob Wilson | 62d24a4 | 2010-06-28 22:23:17 +0000 | [diff] [blame] | 71 | MCE(mce), MCPEs(0), MJTEs(0), |
| 72 | IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {} |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 74 | /// getBinaryCodeForInstr - This function, generated by the |
| 75 | /// CodeEmitterGenerator using TableGen, produces the binary encoding for |
| 76 | /// machine instructions. |
Jim Grosbach | bade37b | 2010-10-08 00:21:28 +0000 | [diff] [blame] | 77 | unsigned getBinaryCodeForInstr(const MachineInstr &MI) const; |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 78 | |
| 79 | bool runOnMachineFunction(MachineFunction &MF); |
| 80 | |
| 81 | virtual const char *getPassName() const { |
| 82 | return "ARM Machine Code Emitter"; |
| 83 | } |
| 84 | |
| 85 | void emitInstruction(const MachineInstr &MI); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 86 | |
| 87 | private: |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 88 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 89 | void emitWordLE(unsigned Binary); |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 90 | void emitDWordLE(uint64_t Binary); |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 91 | void emitConstPoolInstruction(const MachineInstr &MI); |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 92 | void emitMOVi32immInstruction(const MachineInstr &MI); |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 93 | void emitMOVi2piecesInstruction(const MachineInstr &MI); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 94 | void emitLEApcrelJTInstruction(const MachineInstr &MI); |
Evan Cheng | a956255 | 2008-11-14 20:09:11 +0000 | [diff] [blame] | 95 | void emitPseudoMoveInstruction(const MachineInstr &MI); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 96 | void addPCLabel(unsigned LabelID); |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 97 | void emitPseudoInstruction(const MachineInstr &MI); |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 98 | unsigned getMachineSoRegOpValue(const MachineInstr &MI, |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 99 | const TargetInstrDesc &TID, |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 100 | const MachineOperand &MO, |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 101 | unsigned OpIdx); |
| 102 | |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 103 | unsigned getMachineSoImmOpValue(unsigned SoImm); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 104 | |
Jim Grosbach | 0a4b9dc | 2008-11-03 18:38:31 +0000 | [diff] [blame] | 105 | unsigned getAddrModeSBit(const MachineInstr &MI, |
| 106 | const TargetInstrDesc &TID) const; |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 107 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 108 | void emitDataProcessingInstruction(const MachineInstr &MI, |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 109 | unsigned ImplicitRd = 0, |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 110 | unsigned ImplicitRn = 0); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 111 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 112 | void emitLoadStoreInstruction(const MachineInstr &MI, |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 113 | unsigned ImplicitRd = 0, |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 114 | unsigned ImplicitRn = 0); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 115 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 116 | void emitMiscLoadStoreInstruction(const MachineInstr &MI, |
| 117 | unsigned ImplicitRn = 0); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 118 | |
| 119 | void emitLoadStoreMultipleInstruction(const MachineInstr &MI); |
| 120 | |
Evan Cheng | fbc9d41 | 2008-11-06 01:21:28 +0000 | [diff] [blame] | 121 | void emitMulFrmInstruction(const MachineInstr &MI); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 122 | |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 123 | void emitExtendInstruction(const MachineInstr &MI); |
| 124 | |
Evan Cheng | 8b59db3 | 2008-11-07 01:41:35 +0000 | [diff] [blame] | 125 | void emitMiscArithInstruction(const MachineInstr &MI); |
| 126 | |
Bob Wilson | 9a1c189 | 2010-08-11 00:01:18 +0000 | [diff] [blame] | 127 | void emitSaturateInstruction(const MachineInstr &MI); |
| 128 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 129 | void emitBranchInstruction(const MachineInstr &MI); |
| 130 | |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 131 | void emitInlineJumpTable(unsigned JTIndex); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 132 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 133 | void emitMiscBranchInstruction(const MachineInstr &MI); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 134 | |
Evan Cheng | 96581d3 | 2008-11-11 02:11:05 +0000 | [diff] [blame] | 135 | void emitVFPArithInstruction(const MachineInstr &MI); |
| 136 | |
Evan Cheng | 78be83d | 2008-11-11 19:40:26 +0000 | [diff] [blame] | 137 | void emitVFPConversionInstruction(const MachineInstr &MI); |
| 138 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 139 | void emitVFPLoadStoreInstruction(const MachineInstr &MI); |
| 140 | |
| 141 | void emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI); |
| 142 | |
| 143 | void emitMiscInstruction(const MachineInstr &MI); |
| 144 | |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 145 | void emitNEONLaneInstruction(const MachineInstr &MI); |
Bob Wilson | 21773e7 | 2010-06-29 20:13:29 +0000 | [diff] [blame] | 146 | void emitNEONDupInstruction(const MachineInstr &MI); |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 147 | void emitNEON1RegModImmInstruction(const MachineInstr &MI); |
| 148 | void emitNEON2RegInstruction(const MachineInstr &MI); |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 149 | void emitNEON3RegInstruction(const MachineInstr &MI); |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 150 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 151 | /// getMachineOpValue - Return binary encoding of operand. If the machine |
| 152 | /// operand requires relocation, record the relocation and return zero. |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 153 | unsigned getMachineOpValue(const MachineInstr &MI, |
| 154 | const MachineOperand &MO) const; |
| 155 | unsigned getMachineOpValue(const MachineInstr &MI, unsigned OpIdx) const { |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 156 | return getMachineOpValue(MI, MI.getOperand(OpIdx)); |
| 157 | } |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 158 | |
Jim Grosbach | 08bd549 | 2010-10-12 23:00:24 +0000 | [diff] [blame] | 159 | // FIXME: The legacy JIT ARMCodeEmitter doesn't rely on the the |
| 160 | // TableGen'erated getBinaryCodeForInstr() function to encode any |
| 161 | // operand values, instead querying getMachineOpValue() directly for |
| 162 | // each operand it needs to encode. Thus, any of the new encoder |
| 163 | // helper functions can simply return 0 as the values the return |
| 164 | // are already handled elsewhere. They are placeholders to allow this |
| 165 | // encoder to continue to function until the MC encoder is sufficiently |
| 166 | // far along that this one can be eliminated entirely. |
| 167 | unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op) |
| 168 | const { return 0; } |
Jim Grosbach | 2a6a93d | 2010-10-12 23:18:08 +0000 | [diff] [blame] | 169 | unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op) |
| 170 | const { return 0; } |
Jim Grosbach | ef324d7 | 2010-10-12 23:53:58 +0000 | [diff] [blame] | 171 | unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op) |
| 172 | const { return 0; } |
Jim Grosbach | b35ad41 | 2010-10-13 19:56:10 +0000 | [diff] [blame] | 173 | unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op) |
| 174 | const { return 0; } |
Jim Grosbach | 8abe32a | 2010-10-15 17:15:16 +0000 | [diff] [blame^] | 175 | unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op) |
| 176 | const { return 0; } |
Jim Grosbach | 08bd549 | 2010-10-12 23:00:24 +0000 | [diff] [blame] | 177 | |
Shih-wei Liao | 5170b71 | 2010-05-26 00:02:28 +0000 | [diff] [blame] | 178 | /// getMovi32Value - Return binary encoding of operand for movw/movt. If the |
Jim Grosbach | 18f30e6 | 2010-06-02 21:53:11 +0000 | [diff] [blame] | 179 | /// machine operand requires relocation, record the relocation and return |
| 180 | /// zero. |
Shih-wei Liao | 5170b71 | 2010-05-26 00:02:28 +0000 | [diff] [blame] | 181 | unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO, |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 182 | unsigned Reloc); |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 183 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 184 | /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value. |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 185 | /// |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 186 | unsigned getShiftOp(unsigned Imm) const ; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 187 | |
| 188 | /// Routines that handle operands which add machine relocations which are |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 189 | /// fixed up by the relocation stage. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 190 | void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc, |
Jeffrey Yasskin | 2d27441 | 2009-11-07 08:51:52 +0000 | [diff] [blame] | 191 | bool MayNeedFarStub, bool Indirect, |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 192 | intptr_t ACPV = 0) const; |
| 193 | void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const; |
| 194 | void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const; |
| 195 | void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const; |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 196 | void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc, |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 197 | intptr_t JTBase = 0) const; |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 198 | }; |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 201 | char ARMCodeEmitter::ID = 0; |
| 202 | |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 203 | /// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM |
Chris Lattner | e0faa54 | 2010-02-02 21:38:59 +0000 | [diff] [blame] | 204 | /// code to the specified MCE object. |
Bruno Cardoso Lopes | ac57e6e | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 205 | FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM, |
| 206 | JITCodeEmitter &JCE) { |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 207 | return new ARMCodeEmitter(TM, JCE); |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 208 | } |
Bruno Cardoso Lopes | a3f99f9 | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 209 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 210 | bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) { |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 211 | assert((MF.getTarget().getRelocationModel() != Reloc::Default || |
| 212 | MF.getTarget().getRelocationModel() != Reloc::Static) && |
| 213 | "JIT relocation model must be set to static or default!"); |
Dan Gohman | 3fb150a | 2010-04-17 17:42:52 +0000 | [diff] [blame] | 214 | JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo(); |
| 215 | II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo(); |
| 216 | TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData(); |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 217 | Subtarget = &TM.getSubtarget<ARMSubtarget>(); |
Evan Cheng | 938b9d8 | 2008-10-31 19:55:13 +0000 | [diff] [blame] | 218 | MCPEs = &MF.getConstantPool()->getConstants(); |
Chris Lattner | b1e8039 | 2010-01-25 23:22:00 +0000 | [diff] [blame] | 219 | MJTEs = 0; |
| 220 | if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables(); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 221 | IsPIC = TM.getRelocationModel() == Reloc::PIC_; |
Bob Wilson | 62d24a4 | 2010-06-28 22:23:17 +0000 | [diff] [blame] | 222 | IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction(); |
Evan Cheng | 3cc8223 | 2008-11-08 07:38:22 +0000 | [diff] [blame] | 223 | JTI->Initialize(MF, IsPIC); |
Chris Lattner | 1611273 | 2010-03-14 01:41:15 +0000 | [diff] [blame] | 224 | MMI = &getAnalysis<MachineModuleInfo>(); |
| 225 | MCE.setModuleInfo(MMI); |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 226 | |
| 227 | do { |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 228 | DEBUG(errs() << "JITTing function '" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 229 | << MF.getFunction()->getName() << "'\n"); |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 230 | MCE.startFunction(MF); |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 231 | for (MachineFunction::iterator MBB = MF.begin(), E = MF.end(); |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 232 | MBB != E; ++MBB) { |
| 233 | MCE.StartMachineBasicBlock(MBB); |
| 234 | for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end(); |
| 235 | I != E; ++I) |
| 236 | emitInstruction(*I); |
| 237 | } |
| 238 | } while (MCE.finishFunction(MF)); |
| 239 | |
| 240 | return false; |
| 241 | } |
| 242 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 243 | /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value. |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 244 | /// |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 245 | unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const { |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 246 | switch (ARM_AM::getAM2ShiftOpc(Imm)) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 247 | default: llvm_unreachable("Unknown shift opc!"); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 248 | case ARM_AM::asr: return 2; |
| 249 | case ARM_AM::lsl: return 0; |
| 250 | case ARM_AM::lsr: return 1; |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 251 | case ARM_AM::ror: |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 252 | case ARM_AM::rrx: return 3; |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 253 | } |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 254 | return 0; |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Shih-wei Liao | 5170b71 | 2010-05-26 00:02:28 +0000 | [diff] [blame] | 257 | /// getMovi32Value - Return binary encoding of operand for movw/movt. If the |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 258 | /// machine operand requires relocation, record the relocation and return zero. |
| 259 | unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI, |
Shih-wei Liao | 5170b71 | 2010-05-26 00:02:28 +0000 | [diff] [blame] | 260 | const MachineOperand &MO, |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 261 | unsigned Reloc) { |
Shih-wei Liao | 5170b71 | 2010-05-26 00:02:28 +0000 | [diff] [blame] | 262 | assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw)) |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 263 | && "Relocation to this function should be for movt or movw"); |
| 264 | |
| 265 | if (MO.isImm()) |
| 266 | return static_cast<unsigned>(MO.getImm()); |
| 267 | else if (MO.isGlobal()) |
| 268 | emitGlobalAddress(MO.getGlobal(), Reloc, true, false); |
| 269 | else if (MO.isSymbol()) |
| 270 | emitExternalSymbolAddress(MO.getSymbolName(), Reloc); |
| 271 | else if (MO.isMBB()) |
| 272 | emitMachineBasicBlock(MO.getMBB(), Reloc); |
| 273 | else { |
| 274 | #ifndef NDEBUG |
| 275 | errs() << MO; |
| 276 | #endif |
| 277 | llvm_unreachable("Unsupported operand type for movw/movt"); |
| 278 | } |
| 279 | return 0; |
| 280 | } |
| 281 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 282 | /// getMachineOpValue - Return binary encoding of operand. If the machine |
| 283 | /// operand requires relocation, record the relocation and return zero. |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 284 | unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI, |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 285 | const MachineOperand &MO) const { |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 286 | if (MO.isReg()) |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 287 | return getARMRegisterNumbering(MO.getReg()); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 288 | else if (MO.isImm()) |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 289 | return static_cast<unsigned>(MO.getImm()); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 290 | else if (MO.isGlobal()) |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 291 | emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 292 | else if (MO.isSymbol()) |
Evan Cheng | 1033251 | 2008-11-08 07:22:33 +0000 | [diff] [blame] | 293 | emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch); |
Evan Cheng | 580c0df | 2008-11-12 01:02:24 +0000 | [diff] [blame] | 294 | else if (MO.isCPI()) { |
| 295 | const TargetInstrDesc &TID = MI.getDesc(); |
| 296 | // For VFP load, the immediate offset is multiplied by 4. |
| 297 | unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm) |
| 298 | ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry; |
| 299 | emitConstPoolAddress(MO.getIndex(), Reloc); |
| 300 | } else if (MO.isJTI()) |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 301 | emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 302 | else if (MO.isMBB()) |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 303 | emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch); |
Evan Cheng | 2aa0e64 | 2008-09-13 01:55:59 +0000 | [diff] [blame] | 304 | else { |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 305 | #ifndef NDEBUG |
Chris Lattner | 705e07f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 306 | errs() << MO; |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 307 | #endif |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 308 | llvm_unreachable(0); |
Evan Cheng | 2aa0e64 | 2008-09-13 01:55:59 +0000 | [diff] [blame] | 309 | } |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 310 | return 0; |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 313 | /// emitGlobalAddress - Emit the specified address to the code stream. |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 314 | /// |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 315 | void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc, |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 316 | bool MayNeedFarStub, bool Indirect, |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 317 | intptr_t ACPV) const { |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 318 | MachineRelocation MR = Indirect |
| 319 | ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 320 | const_cast<GlobalValue *>(GV), |
| 321 | ACPV, MayNeedFarStub) |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 322 | : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 323 | const_cast<GlobalValue *>(GV), ACPV, |
| 324 | MayNeedFarStub); |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 325 | MCE.addRelocation(MR); |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | /// emitExternalSymbolAddress - Arrange for the address of an external symbol to |
| 329 | /// be emitted to the current location in the function, and allow it to be PC |
| 330 | /// relative. |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 331 | void ARMCodeEmitter:: |
| 332 | emitExternalSymbolAddress(const char *ES, unsigned Reloc) const { |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 333 | MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(), |
| 334 | Reloc, ES)); |
| 335 | } |
| 336 | |
| 337 | /// emitConstPoolAddress - Arrange for the address of an constant pool |
| 338 | /// to be emitted to the current location in the function, and allow it to be PC |
| 339 | /// relative. |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 340 | void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const { |
Evan Cheng | 0f28243 | 2008-10-29 23:55:43 +0000 | [diff] [blame] | 341 | // Tell JIT emitter we'll resolve the address. |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 342 | MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(), |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 343 | Reloc, CPI, 0, true)); |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | /// emitJumpTableAddress - Arrange for the address of a jump table to |
| 347 | /// be emitted to the current location in the function, and allow it to be PC |
| 348 | /// relative. |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 349 | void ARMCodeEmitter:: |
| 350 | emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const { |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 351 | MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(), |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 352 | Reloc, JTIndex, 0, true)); |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 353 | } |
| 354 | |
Raul Herbster | 9c1a382 | 2007-08-30 23:29:26 +0000 | [diff] [blame] | 355 | /// emitMachineBasicBlock - Emit the specified address basic block. |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 356 | void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB, |
Jim Grosbach | 3e09413 | 2010-10-08 17:45:54 +0000 | [diff] [blame] | 357 | unsigned Reloc, |
| 358 | intptr_t JTBase) const { |
Raul Herbster | 9c1a382 | 2007-08-30 23:29:26 +0000 | [diff] [blame] | 359 | MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(), |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 360 | Reloc, BB, JTBase)); |
Raul Herbster | 9c1a382 | 2007-08-30 23:29:26 +0000 | [diff] [blame] | 361 | } |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 362 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 363 | void ARMCodeEmitter::emitWordLE(unsigned Binary) { |
Chris Lattner | 893e1c9 | 2009-08-23 06:49:22 +0000 | [diff] [blame] | 364 | DEBUG(errs() << " 0x"; |
| 365 | errs().write_hex(Binary) << "\n"); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 366 | MCE.emitWordLE(Binary); |
| 367 | } |
| 368 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 369 | void ARMCodeEmitter::emitDWordLE(uint64_t Binary) { |
Chris Lattner | 893e1c9 | 2009-08-23 06:49:22 +0000 | [diff] [blame] | 370 | DEBUG(errs() << " 0x"; |
| 371 | errs().write_hex(Binary) << "\n"); |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 372 | MCE.emitDWordLE(Binary); |
| 373 | } |
| 374 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 375 | void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) { |
Chris Lattner | 705e07f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 376 | DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI); |
Evan Cheng | 42d5ee06 | 2008-09-13 01:15:21 +0000 | [diff] [blame] | 377 | |
Devang Patel | af0e272 | 2009-10-06 02:19:11 +0000 | [diff] [blame] | 378 | MCE.processDebugLoc(MI.getDebugLoc(), true); |
Jeffrey Yasskin | 7540282 | 2009-07-17 18:49:39 +0000 | [diff] [blame] | 379 | |
Dan Gohman | fe60104 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 380 | ++NumEmitted; // Keep track of the # of mi's emitted |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 381 | switch (MI.getDesc().TSFlags & ARMII::FormMask) { |
Evan Cheng | ffa6d96 | 2008-11-13 23:36:57 +0000 | [diff] [blame] | 382 | default: { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 383 | llvm_unreachable("Unhandled instruction encoding format!"); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 384 | break; |
Evan Cheng | ffa6d96 | 2008-11-13 23:36:57 +0000 | [diff] [blame] | 385 | } |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 386 | case ARMII::Pseudo: |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 387 | emitPseudoInstruction(MI); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 388 | break; |
| 389 | case ARMII::DPFrm: |
| 390 | case ARMII::DPSoRegFrm: |
| 391 | emitDataProcessingInstruction(MI); |
| 392 | break; |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 393 | case ARMII::LdFrm: |
| 394 | case ARMII::StFrm: |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 395 | emitLoadStoreInstruction(MI); |
| 396 | break; |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 397 | case ARMII::LdMiscFrm: |
| 398 | case ARMII::StMiscFrm: |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 399 | emitMiscLoadStoreInstruction(MI); |
| 400 | break; |
Evan Cheng | 3c4a4ff | 2008-11-12 07:18:38 +0000 | [diff] [blame] | 401 | case ARMII::LdStMulFrm: |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 402 | emitLoadStoreMultipleInstruction(MI); |
| 403 | break; |
Evan Cheng | fbc9d41 | 2008-11-06 01:21:28 +0000 | [diff] [blame] | 404 | case ARMII::MulFrm: |
| 405 | emitMulFrmInstruction(MI); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 406 | break; |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 407 | case ARMII::ExtFrm: |
| 408 | emitExtendInstruction(MI); |
| 409 | break; |
Evan Cheng | 8b59db3 | 2008-11-07 01:41:35 +0000 | [diff] [blame] | 410 | case ARMII::ArithMiscFrm: |
| 411 | emitMiscArithInstruction(MI); |
| 412 | break; |
Bob Wilson | 9a1c189 | 2010-08-11 00:01:18 +0000 | [diff] [blame] | 413 | case ARMII::SatFrm: |
| 414 | emitSaturateInstruction(MI); |
| 415 | break; |
Evan Cheng | 12c3a53 | 2008-11-06 17:48:05 +0000 | [diff] [blame] | 416 | case ARMII::BrFrm: |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 417 | emitBranchInstruction(MI); |
| 418 | break; |
Evan Cheng | 12c3a53 | 2008-11-06 17:48:05 +0000 | [diff] [blame] | 419 | case ARMII::BrMiscFrm: |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 420 | emitMiscBranchInstruction(MI); |
| 421 | break; |
Evan Cheng | 96581d3 | 2008-11-11 02:11:05 +0000 | [diff] [blame] | 422 | // VFP instructions. |
| 423 | case ARMII::VFPUnaryFrm: |
| 424 | case ARMII::VFPBinaryFrm: |
| 425 | emitVFPArithInstruction(MI); |
| 426 | break; |
Evan Cheng | 78be83d | 2008-11-11 19:40:26 +0000 | [diff] [blame] | 427 | case ARMII::VFPConv1Frm: |
| 428 | case ARMII::VFPConv2Frm: |
Evan Cheng | 0a0ab13 | 2008-11-11 22:46:12 +0000 | [diff] [blame] | 429 | case ARMII::VFPConv3Frm: |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 430 | case ARMII::VFPConv4Frm: |
| 431 | case ARMII::VFPConv5Frm: |
Evan Cheng | 78be83d | 2008-11-11 19:40:26 +0000 | [diff] [blame] | 432 | emitVFPConversionInstruction(MI); |
| 433 | break; |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 434 | case ARMII::VFPLdStFrm: |
| 435 | emitVFPLoadStoreInstruction(MI); |
| 436 | break; |
| 437 | case ARMII::VFPLdStMulFrm: |
| 438 | emitVFPLoadStoreMultipleInstruction(MI); |
| 439 | break; |
| 440 | case ARMII::VFPMiscFrm: |
| 441 | emitMiscInstruction(MI); |
| 442 | break; |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 443 | // NEON instructions. |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 444 | case ARMII::NGetLnFrm: |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 445 | case ARMII::NSetLnFrm: |
| 446 | emitNEONLaneInstruction(MI); |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 447 | break; |
Bob Wilson | 21773e7 | 2010-06-29 20:13:29 +0000 | [diff] [blame] | 448 | case ARMII::NDupFrm: |
| 449 | emitNEONDupInstruction(MI); |
| 450 | break; |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 451 | case ARMII::N1RegModImmFrm: |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 452 | emitNEON1RegModImmInstruction(MI); |
| 453 | break; |
| 454 | case ARMII::N2RegFrm: |
| 455 | emitNEON2RegInstruction(MI); |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 456 | break; |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 457 | case ARMII::N3RegFrm: |
| 458 | emitNEON3RegInstruction(MI); |
| 459 | break; |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 460 | } |
Devang Patel | af0e272 | 2009-10-06 02:19:11 +0000 | [diff] [blame] | 461 | MCE.processDebugLoc(MI.getDebugLoc(), false); |
Evan Cheng | 0ff94f7 | 2007-08-07 01:37:15 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 464 | void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) { |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 465 | unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index. |
| 466 | unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index. |
Evan Cheng | 938b9d8 | 2008-10-31 19:55:13 +0000 | [diff] [blame] | 467 | const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex]; |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 468 | |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 469 | // Remember the CONSTPOOL_ENTRY address for later relocation. |
| 470 | JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue()); |
| 471 | |
| 472 | // Emit constpool island entry. In most cases, the actual values will be |
| 473 | // resolved and relocated after code emission. |
| 474 | if (MCPE.isMachineConstantPoolEntry()) { |
| 475 | ARMConstantPoolValue *ACPV = |
| 476 | static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal); |
| 477 | |
Chris Lattner | 705e07f | 2009-08-23 03:41:05 +0000 | [diff] [blame] | 478 | DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ " |
| 479 | << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n'); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 480 | |
Bob Wilson | 28989a8 | 2009-11-02 16:59:06 +0000 | [diff] [blame] | 481 | assert(ACPV->isGlobalValue() && "unsupported constant pool value"); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 482 | const GlobalValue *GV = ACPV->getGV(); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 483 | if (GV) { |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 484 | Reloc::Model RelocM = TM.getRelocationModel(); |
Evan Cheng | e4e4ed3 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 485 | emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry, |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 486 | isa<Function>(GV), |
| 487 | Subtarget->GVIsIndirectSymbol(GV, RelocM), |
| 488 | (intptr_t)ACPV); |
Evan Cheng | 25e0478 | 2008-11-04 00:50:32 +0000 | [diff] [blame] | 489 | } else { |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 490 | emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute); |
| 491 | } |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 492 | emitWordLE(0); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 493 | } else { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 494 | const Constant *CV = MCPE.Val.ConstVal; |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 495 | |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 496 | DEBUG({ |
| 497 | errs() << " ** Constant pool #" << CPI << " @ " |
| 498 | << (void*)MCE.getCurrentPCValue() << " "; |
| 499 | if (const Function *F = dyn_cast<Function>(CV)) |
| 500 | errs() << F->getName(); |
| 501 | else |
| 502 | errs() << *CV; |
| 503 | errs() << '\n'; |
| 504 | }); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 505 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 506 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { |
Evan Cheng | 0866974 | 2009-09-10 01:23:53 +0000 | [diff] [blame] | 507 | emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 508 | emitWordLE(0); |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 509 | } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 510 | uint32_t Val = *(uint32_t*)CI->getValue().getRawData(); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 511 | emitWordLE(Val); |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 512 | } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 513 | if (CFP->getType()->isFloatTy()) |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 514 | emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue()); |
Chris Lattner | cf0fe8d | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 515 | else if (CFP->getType()->isDoubleTy()) |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 516 | emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue()); |
| 517 | else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 518 | llvm_unreachable("Unable to handle this constantpool entry!"); |
Evan Cheng | cb5201f | 2008-11-11 22:19:31 +0000 | [diff] [blame] | 519 | } |
| 520 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 521 | llvm_unreachable("Unable to handle this constantpool entry!"); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 522 | } |
| 523 | } |
| 524 | } |
| 525 | |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 526 | void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) { |
| 527 | const MachineOperand &MO0 = MI.getOperand(0); |
| 528 | const MachineOperand &MO1 = MI.getOperand(1); |
| 529 | |
| 530 | // Emit the 'movw' instruction. |
| 531 | unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000 |
| 532 | |
| 533 | unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF; |
| 534 | |
| 535 | // Set the conditional execution predicate. |
| 536 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 537 | |
| 538 | // Encode Rd. |
| 539 | Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift; |
| 540 | |
| 541 | // Encode imm16 as imm4:imm12 |
| 542 | Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12 |
| 543 | Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4 |
| 544 | emitWordLE(Binary); |
| 545 | |
| 546 | unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16; |
| 547 | // Emit the 'movt' instruction. |
| 548 | Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100 |
| 549 | |
| 550 | // Set the conditional execution predicate. |
| 551 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 552 | |
| 553 | // Encode Rd. |
| 554 | Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift; |
| 555 | |
| 556 | // Encode imm16 as imm4:imm1, same as movw above. |
| 557 | Binary |= Hi16 & 0xFFF; |
| 558 | Binary |= ((Hi16 >> 12) & 0xF) << 16; |
| 559 | emitWordLE(Binary); |
| 560 | } |
| 561 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 562 | void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) { |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 563 | const MachineOperand &MO0 = MI.getOperand(0); |
| 564 | const MachineOperand &MO1 = MI.getOperand(1); |
Bob Wilson | 5265a12 | 2010-03-11 00:46:22 +0000 | [diff] [blame] | 565 | assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) && |
| 566 | "Not a valid so_imm value!"); |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 567 | unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm()); |
| 568 | unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm()); |
| 569 | |
| 570 | // Emit the 'mov' instruction. |
| 571 | unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101 |
| 572 | |
| 573 | // Set the conditional execution predicate. |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 574 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 575 | |
| 576 | // Encode Rd. |
| 577 | Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift; |
| 578 | |
| 579 | // Encode so_imm. |
| 580 | // Set bit I(25) to identify this is the immediate form of <shifter_op> |
| 581 | Binary |= 1 << ARMII::I_BitShift; |
Evan Cheng | e7cbe41 | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 582 | Binary |= getMachineSoImmOpValue(V1); |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 583 | emitWordLE(Binary); |
| 584 | |
| 585 | // Now the 'orr' instruction. |
| 586 | Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100 |
| 587 | |
| 588 | // Set the conditional execution predicate. |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 589 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 590 | |
| 591 | // Encode Rd. |
| 592 | Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift; |
| 593 | |
| 594 | // Encode Rn. |
| 595 | Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift; |
| 596 | |
| 597 | // Encode so_imm. |
| 598 | // Set bit I(25) to identify this is the immediate form of <shifter_op> |
| 599 | Binary |= 1 << ARMII::I_BitShift; |
Evan Cheng | e7cbe41 | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 600 | Binary |= getMachineSoImmOpValue(V2); |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 601 | emitWordLE(Binary); |
| 602 | } |
| 603 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 604 | void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) { |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 605 | // It's basically add r, pc, (LJTI - $+8) |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 606 | |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 607 | const TargetInstrDesc &TID = MI.getDesc(); |
| 608 | |
| 609 | // Emit the 'add' instruction. |
| 610 | unsigned Binary = 0x4 << 21; // add: Insts{24-31} = 0b0100 |
| 611 | |
| 612 | // Set the conditional execution predicate |
| 613 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 614 | |
| 615 | // Encode S bit if MI modifies CPSR. |
| 616 | Binary |= getAddrModeSBit(MI, TID); |
| 617 | |
| 618 | // Encode Rd. |
| 619 | Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift; |
| 620 | |
| 621 | // Encode Rn which is PC. |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 622 | Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift; |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 623 | |
| 624 | // Encode the displacement. |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 625 | Binary |= 1 << ARMII::I_BitShift; |
| 626 | emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base); |
| 627 | |
| 628 | emitWordLE(Binary); |
| 629 | } |
| 630 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 631 | void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) { |
Evan Cheng | a956255 | 2008-11-14 20:09:11 +0000 | [diff] [blame] | 632 | unsigned Opcode = MI.getDesc().Opcode; |
| 633 | |
| 634 | // Part of binary is determined by TableGn. |
| 635 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 636 | |
| 637 | // Set the conditional execution predicate |
| 638 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 639 | |
| 640 | // Encode S bit if MI modifies CPSR. |
| 641 | if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag) |
| 642 | Binary |= 1 << ARMII::S_BitShift; |
| 643 | |
| 644 | // Encode register def if there is one. |
| 645 | Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift; |
| 646 | |
| 647 | // Encode the shift operation. |
| 648 | switch (Opcode) { |
| 649 | default: break; |
Jim Grosbach | 792e979 | 2010-10-14 20:43:44 +0000 | [diff] [blame] | 650 | case ARM::RRX: |
Evan Cheng | a956255 | 2008-11-14 20:09:11 +0000 | [diff] [blame] | 651 | // rrx |
| 652 | Binary |= 0x6 << 4; |
| 653 | break; |
| 654 | case ARM::MOVsrl_flag: |
| 655 | // lsr #1 |
| 656 | Binary |= (0x2 << 4) | (1 << 7); |
| 657 | break; |
| 658 | case ARM::MOVsra_flag: |
| 659 | // asr #1 |
| 660 | Binary |= (0x4 << 4) | (1 << 7); |
| 661 | break; |
| 662 | } |
| 663 | |
| 664 | // Encode register Rm. |
| 665 | Binary |= getMachineOpValue(MI, 1); |
| 666 | |
| 667 | emitWordLE(Binary); |
| 668 | } |
| 669 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 670 | void ARMCodeEmitter::addPCLabel(unsigned LabelID) { |
Chris Lattner | 893e1c9 | 2009-08-23 06:49:22 +0000 | [diff] [blame] | 671 | DEBUG(errs() << " ** LPC" << LabelID << " @ " |
| 672 | << (void*)MCE.getCurrentPCValue() << '\n'); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 673 | JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue()); |
| 674 | } |
| 675 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 676 | void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) { |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 677 | unsigned Opcode = MI.getDesc().Opcode; |
| 678 | switch (Opcode) { |
| 679 | default: |
Evan Cheng | 5adb66a | 2009-09-28 09:14:39 +0000 | [diff] [blame] | 680 | llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction"); |
Xerxes Ranby | 99ccffe | 2010-07-22 17:28:34 +0000 | [diff] [blame] | 681 | case ARM::BX: |
| 682 | case ARM::BMOVPCRX: |
| 683 | case ARM::BXr9: |
| 684 | case ARM::BMOVPCRXr9: { |
| 685 | // First emit mov lr, pc |
| 686 | unsigned Binary = 0x01a0e00f; |
| 687 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 688 | emitWordLE(Binary); |
| 689 | |
| 690 | // and then emit the branch. |
| 691 | emitMiscBranchInstruction(MI); |
| 692 | break; |
| 693 | } |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 694 | case TargetOpcode::INLINEASM: { |
Evan Cheng | e3066ab | 2008-11-19 23:21:33 +0000 | [diff] [blame] | 695 | // We allow inline assembler nodes with empty bodies - they can |
| 696 | // implicitly define registers, which is ok for JIT. |
| 697 | if (MI.getOperand(0).getSymbolName()[0]) { |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 698 | report_fatal_error("JIT does not support inline asm!"); |
Evan Cheng | e3066ab | 2008-11-19 23:21:33 +0000 | [diff] [blame] | 699 | } |
Evan Cheng | ffa6d96 | 2008-11-13 23:36:57 +0000 | [diff] [blame] | 700 | break; |
| 701 | } |
Bill Wendling | 7431bea | 2010-07-16 22:20:36 +0000 | [diff] [blame] | 702 | case TargetOpcode::PROLOG_LABEL: |
Chris Lattner | 7561d48 | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 703 | case TargetOpcode::EH_LABEL: |
| 704 | MCE.emitLabel(MI.getOperand(0).getMCSymbol()); |
| 705 | break; |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 706 | case TargetOpcode::IMPLICIT_DEF: |
| 707 | case TargetOpcode::KILL: |
Evan Cheng | ffa6d96 | 2008-11-13 23:36:57 +0000 | [diff] [blame] | 708 | // Do nothing. |
| 709 | break; |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 710 | case ARM::CONSTPOOL_ENTRY: |
| 711 | emitConstPoolInstruction(MI); |
| 712 | break; |
| 713 | case ARM::PICADD: { |
Evan Cheng | 25e0478 | 2008-11-04 00:50:32 +0000 | [diff] [blame] | 714 | // Remember of the address of the PC label for relocation later. |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 715 | addPCLabel(MI.getOperand(2).getImm()); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 716 | // PICADD is just an add instruction that implicitly read pc. |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 717 | emitDataProcessingInstruction(MI, 0, ARM::PC); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 718 | break; |
| 719 | } |
| 720 | case ARM::PICLDR: |
| 721 | case ARM::PICLDRB: |
| 722 | case ARM::PICSTR: |
| 723 | case ARM::PICSTRB: { |
| 724 | // Remember of the address of the PC label for relocation later. |
| 725 | addPCLabel(MI.getOperand(2).getImm()); |
| 726 | // These are just load / store instructions that implicitly read pc. |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 727 | emitLoadStoreInstruction(MI, 0, ARM::PC); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 728 | break; |
| 729 | } |
| 730 | case ARM::PICLDRH: |
| 731 | case ARM::PICLDRSH: |
| 732 | case ARM::PICLDRSB: |
| 733 | case ARM::PICSTRH: { |
| 734 | // Remember of the address of the PC label for relocation later. |
| 735 | addPCLabel(MI.getOperand(2).getImm()); |
| 736 | // These are just load / store instructions that implicitly read pc. |
| 737 | emitMiscLoadStoreInstruction(MI, ARM::PC); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 738 | break; |
| 739 | } |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 740 | |
| 741 | case ARM::MOVi32imm: |
| 742 | emitMOVi32immInstruction(MI); |
| 743 | break; |
| 744 | |
Evan Cheng | 9092213 | 2008-11-06 02:25:39 +0000 | [diff] [blame] | 745 | case ARM::MOVi2pieces: |
| 746 | // Two instructions to materialize a constant. |
| 747 | emitMOVi2piecesInstruction(MI); |
| 748 | break; |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 749 | case ARM::LEApcrelJT: |
| 750 | // Materialize jumptable address. |
| 751 | emitLEApcrelJTInstruction(MI); |
| 752 | break; |
Jim Grosbach | 792e979 | 2010-10-14 20:43:44 +0000 | [diff] [blame] | 753 | case ARM::RRX: |
Evan Cheng | a956255 | 2008-11-14 20:09:11 +0000 | [diff] [blame] | 754 | case ARM::MOVsrl_flag: |
| 755 | case ARM::MOVsra_flag: |
| 756 | emitPseudoMoveInstruction(MI); |
| 757 | break; |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 758 | } |
| 759 | } |
| 760 | |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 761 | unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI, |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 762 | const TargetInstrDesc &TID, |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 763 | const MachineOperand &MO, |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 764 | unsigned OpIdx) { |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 765 | unsigned Binary = getMachineOpValue(MI, MO); |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 766 | |
| 767 | const MachineOperand &MO1 = MI.getOperand(OpIdx + 1); |
| 768 | const MachineOperand &MO2 = MI.getOperand(OpIdx + 2); |
| 769 | ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm()); |
| 770 | |
| 771 | // Encode the shift opcode. |
| 772 | unsigned SBits = 0; |
| 773 | unsigned Rs = MO1.getReg(); |
| 774 | if (Rs) { |
| 775 | // Set shift operand (bit[7:4]). |
| 776 | // LSL - 0001 |
| 777 | // LSR - 0011 |
| 778 | // ASR - 0101 |
| 779 | // ROR - 0111 |
| 780 | // RRX - 0110 and bit[11:8] clear. |
| 781 | switch (SOpc) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 782 | default: llvm_unreachable("Unknown shift opc!"); |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 783 | case ARM_AM::lsl: SBits = 0x1; break; |
| 784 | case ARM_AM::lsr: SBits = 0x3; break; |
| 785 | case ARM_AM::asr: SBits = 0x5; break; |
| 786 | case ARM_AM::ror: SBits = 0x7; break; |
| 787 | case ARM_AM::rrx: SBits = 0x6; break; |
| 788 | } |
| 789 | } else { |
| 790 | // Set shift operand (bit[6:4]). |
| 791 | // LSL - 000 |
| 792 | // LSR - 010 |
| 793 | // ASR - 100 |
| 794 | // ROR - 110 |
| 795 | switch (SOpc) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 796 | default: llvm_unreachable("Unknown shift opc!"); |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 797 | case ARM_AM::lsl: SBits = 0x0; break; |
| 798 | case ARM_AM::lsr: SBits = 0x2; break; |
| 799 | case ARM_AM::asr: SBits = 0x4; break; |
| 800 | case ARM_AM::ror: SBits = 0x6; break; |
| 801 | } |
| 802 | } |
| 803 | Binary |= SBits << 4; |
| 804 | if (SOpc == ARM_AM::rrx) |
| 805 | return Binary; |
| 806 | |
| 807 | // Encode the shift operation Rs or shift_imm (except rrx). |
| 808 | if (Rs) { |
| 809 | // Encode Rs bit[11:8]. |
| 810 | assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0); |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 811 | return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift); |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | // Encode shift_imm bit[11:7]. |
| 815 | return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7; |
| 816 | } |
| 817 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 818 | unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) { |
Evan Cheng | e7cbe41 | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 819 | int SoImmVal = ARM_AM::getSOImmVal(SoImm); |
| 820 | assert(SoImmVal != -1 && "Not a valid so_imm value!"); |
| 821 | |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 822 | // Encode rotate_imm. |
Evan Cheng | e7cbe41 | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 823 | unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1) |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 824 | << ARMII::SoRotImmShift; |
| 825 | |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 826 | // Encode immed_8. |
Evan Cheng | e7cbe41 | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 827 | Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 828 | return Binary; |
| 829 | } |
| 830 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 831 | unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI, |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 832 | const TargetInstrDesc &TID) const { |
Evan Cheng | 97c573d | 2008-11-20 02:25:51 +0000 | [diff] [blame] | 833 | for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){ |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 834 | const MachineOperand &MO = MI.getOperand(i-1); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 835 | if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 836 | return 1 << ARMII::S_BitShift; |
| 837 | } |
| 838 | return 0; |
| 839 | } |
| 840 | |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 841 | void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI, |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 842 | unsigned ImplicitRd, |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 843 | unsigned ImplicitRn) { |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 844 | const TargetInstrDesc &TID = MI.getDesc(); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 845 | |
| 846 | // Part of binary is determined by TableGn. |
| 847 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 848 | |
Jim Grosbach | 3341262 | 2008-10-07 19:05:35 +0000 | [diff] [blame] | 849 | // Set the conditional execution predicate |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 850 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 851 | |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 852 | // Encode S bit if MI modifies CPSR. |
Jim Grosbach | 0a4b9dc | 2008-11-03 18:38:31 +0000 | [diff] [blame] | 853 | Binary |= getAddrModeSBit(MI, TID); |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 854 | |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 855 | // Encode register def if there is one. |
Evan Cheng | 49a9f29 | 2008-09-12 22:45:55 +0000 | [diff] [blame] | 856 | unsigned NumDefs = TID.getNumDefs(); |
Evan Cheng | a964b7d | 2008-09-12 23:15:39 +0000 | [diff] [blame] | 857 | unsigned OpIdx = 0; |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 858 | if (NumDefs) |
| 859 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift; |
| 860 | else if (ImplicitRd) |
| 861 | // Special handling for implicit use (e.g. PC). |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 862 | Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 863 | |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 864 | if (TID.Opcode == ARM::MOVi16) { |
| 865 | // Get immediate from MI. |
| 866 | unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx), |
| 867 | ARM::reloc_arm_movw); |
| 868 | // Encode imm which is the same as in emitMOVi32immInstruction(). |
| 869 | Binary |= Lo16 & 0xFFF; |
| 870 | Binary |= ((Lo16 >> 12) & 0xF) << 16; |
| 871 | emitWordLE(Binary); |
| 872 | return; |
| 873 | } else if(TID.Opcode == ARM::MOVTi16) { |
| 874 | unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx), |
| 875 | ARM::reloc_arm_movt) >> 16); |
| 876 | Binary |= Hi16 & 0xFFF; |
| 877 | Binary |= ((Hi16 >> 12) & 0xF) << 16; |
| 878 | emitWordLE(Binary); |
| 879 | return; |
Shih-wei Liao | 9f3b6a3 | 2010-05-26 04:46:50 +0000 | [diff] [blame] | 880 | } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) { |
Shih-wei Liao | 6d37a29 | 2010-05-26 00:25:05 +0000 | [diff] [blame] | 881 | uint32_t v = ~MI.getOperand(2).getImm(); |
| 882 | int32_t lsb = CountTrailingZeros_32(v); |
| 883 | int32_t msb = (32 - CountLeadingZeros_32(v)) - 1; |
Shih-wei Liao | 45469f3 | 2010-05-26 03:21:39 +0000 | [diff] [blame] | 884 | // Instr{20-16} = msb, Instr{11-7} = lsb |
Shih-wei Liao | 6d37a29 | 2010-05-26 00:25:05 +0000 | [diff] [blame] | 885 | Binary |= (msb & 0x1F) << 16; |
| 886 | Binary |= (lsb & 0x1F) << 7; |
| 887 | emitWordLE(Binary); |
| 888 | return; |
Shih-wei Liao | 45469f3 | 2010-05-26 03:21:39 +0000 | [diff] [blame] | 889 | } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) { |
| 890 | // Encode Rn in Instr{0-3} |
| 891 | Binary |= getMachineOpValue(MI, OpIdx++); |
| 892 | |
| 893 | uint32_t lsb = MI.getOperand(OpIdx++).getImm(); |
| 894 | uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1; |
| 895 | |
| 896 | // Instr{20-16} = widthm1, Instr{11-7} = lsb |
| 897 | Binary |= (widthm1 & 0x1F) << 16; |
| 898 | Binary |= (lsb & 0x1F) << 7; |
| 899 | emitWordLE(Binary); |
| 900 | return; |
Zonr Chang | f86399b | 2010-05-25 08:42:45 +0000 | [diff] [blame] | 901 | } |
| 902 | |
Evan Cheng | d87293c | 2008-11-06 08:47:38 +0000 | [diff] [blame] | 903 | // If this is a two-address operand, skip it. e.g. MOVCCr operand 1. |
| 904 | if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
| 905 | ++OpIdx; |
| 906 | |
Jim Grosbach | efd30ba | 2008-10-01 18:16:49 +0000 | [diff] [blame] | 907 | // Encode first non-shifter register operand if there is one. |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 908 | bool isUnary = TID.TSFlags & ARMII::UnaryDP; |
| 909 | if (!isUnary) { |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 910 | if (ImplicitRn) |
| 911 | // Special handling for implicit use (e.g. PC). |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 912 | Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift); |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 913 | else { |
| 914 | Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift; |
| 915 | ++OpIdx; |
| 916 | } |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 917 | } |
| 918 | |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 919 | // Encode shifter operand. |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 920 | const MachineOperand &MO = MI.getOperand(OpIdx); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 921 | if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) { |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 922 | // Encode SoReg. |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 923 | emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx)); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 924 | return; |
| 925 | } |
Evan Cheng | eb4ed4b | 2008-10-31 19:10:44 +0000 | [diff] [blame] | 926 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 927 | if (MO.isReg()) { |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 928 | // Encode register Rm. |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 929 | emitWordLE(Binary | getARMRegisterNumbering(MO.getReg())); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 930 | return; |
| 931 | } |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 932 | |
Evan Cheng | 5f1db7b | 2008-09-12 22:01:15 +0000 | [diff] [blame] | 933 | // Encode so_imm. |
Evan Cheng | e7cbe41 | 2009-07-08 21:03:57 +0000 | [diff] [blame] | 934 | Binary |= getMachineSoImmOpValue((unsigned)MO.getImm()); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 935 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 936 | emitWordLE(Binary); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 937 | } |
| 938 | |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 939 | void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI, |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 940 | unsigned ImplicitRd, |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 941 | unsigned ImplicitRn) { |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 942 | const TargetInstrDesc &TID = MI.getDesc(); |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 943 | unsigned Form = TID.TSFlags & ARMII::FormMask; |
| 944 | bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0; |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 945 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 946 | // Part of binary is determined by TableGn. |
| 947 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 948 | |
Jim Grosbach | 3341262 | 2008-10-07 19:05:35 +0000 | [diff] [blame] | 949 | // Set the conditional execution predicate |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 950 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 951 | |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 952 | unsigned OpIdx = 0; |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 953 | |
| 954 | // Operand 0 of a pre- and post-indexed store is the address base |
| 955 | // writeback. Skip it. |
| 956 | bool Skipped = false; |
| 957 | if (IsPrePost && Form == ARMII::StFrm) { |
| 958 | ++OpIdx; |
| 959 | Skipped = true; |
| 960 | } |
| 961 | |
| 962 | // Set first operand |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 963 | if (ImplicitRd) |
| 964 | // Special handling for implicit use (e.g. PC). |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 965 | Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 966 | else |
| 967 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 968 | |
| 969 | // Set second operand |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 970 | if (ImplicitRn) |
| 971 | // Special handling for implicit use (e.g. PC). |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 972 | Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 973 | else |
| 974 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 975 | |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 976 | // If this is a two-address operand, skip it. e.g. LDR_PRE. |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 977 | if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 978 | ++OpIdx; |
| 979 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 980 | const MachineOperand &MO2 = MI.getOperand(OpIdx); |
Evan Cheng | d87293c | 2008-11-06 08:47:38 +0000 | [diff] [blame] | 981 | unsigned AM2Opc = (ImplicitRn == ARM::PC) |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 982 | ? 0 : MI.getOperand(OpIdx+1).getImm(); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 983 | |
Evan Cheng | e7de7e3 | 2008-09-13 01:44:01 +0000 | [diff] [blame] | 984 | // Set bit U(23) according to sign of immed value (positive or negative). |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 985 | Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) << |
Evan Cheng | e7de7e3 | 2008-09-13 01:44:01 +0000 | [diff] [blame] | 986 | ARMII::U_BitShift); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 987 | if (!MO2.getReg()) { // is immediate |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 988 | if (ARM_AM::getAM2Offset(AM2Opc)) |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 989 | // Set the value of offset_12 field |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 990 | Binary |= ARM_AM::getAM2Offset(AM2Opc); |
| 991 | emitWordLE(Binary); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 992 | return; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | // Set bit I(25), because this is not in immediate enconding. |
| 996 | Binary |= 1 << ARMII::I_BitShift; |
| 997 | assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg())); |
| 998 | // Set bit[3:0] to the corresponding Rm register |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 999 | Binary |= getARMRegisterNumbering(MO2.getReg()); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1000 | |
Evan Cheng | 7063291 | 2008-11-12 07:34:37 +0000 | [diff] [blame] | 1001 | // If this instr is in scaled register offset/index instruction, set |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1002 | // shift_immed(bit[11:7]) and shift(bit[6:5]) fields. |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1003 | if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) { |
Evan Cheng | 7063291 | 2008-11-12 07:34:37 +0000 | [diff] [blame] | 1004 | Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift |
| 1005 | Binary |= ShImm << ARMII::ShiftShift; // shift_immed |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1006 | } |
| 1007 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1008 | emitWordLE(Binary); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1011 | void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI, |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 1012 | unsigned ImplicitRn) { |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 1013 | const TargetInstrDesc &TID = MI.getDesc(); |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 1014 | unsigned Form = TID.TSFlags & ARMII::FormMask; |
| 1015 | bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0; |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 1016 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1017 | // Part of binary is determined by TableGn. |
| 1018 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1019 | |
Jim Grosbach | 3341262 | 2008-10-07 19:05:35 +0000 | [diff] [blame] | 1020 | // Set the conditional execution predicate |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1021 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | 057d0c3 | 2008-09-18 07:28:19 +0000 | [diff] [blame] | 1022 | |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 1023 | unsigned OpIdx = 0; |
| 1024 | |
| 1025 | // Operand 0 of a pre- and post-indexed store is the address base |
| 1026 | // writeback. Skip it. |
| 1027 | bool Skipped = false; |
| 1028 | if (IsPrePost && Form == ARMII::StMiscFrm) { |
| 1029 | ++OpIdx; |
| 1030 | Skipped = true; |
| 1031 | } |
| 1032 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1033 | // Set first operand |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 1034 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1035 | |
Evan Cheng | 358dec5 | 2009-06-15 08:28:29 +0000 | [diff] [blame] | 1036 | // Skip LDRD and STRD's second operand. |
| 1037 | if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD) |
| 1038 | ++OpIdx; |
| 1039 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1040 | // Set second operand |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1041 | if (ImplicitRn) |
| 1042 | // Special handling for implicit use (e.g. PC). |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1043 | Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 1044 | else |
| 1045 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1046 | |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 1047 | // If this is a two-address operand, skip it. e.g. LDRH_POST. |
Evan Cheng | 148cad8 | 2008-11-13 07:34:59 +0000 | [diff] [blame] | 1048 | if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
Evan Cheng | 05c356e | 2008-11-08 01:44:13 +0000 | [diff] [blame] | 1049 | ++OpIdx; |
| 1050 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1051 | const MachineOperand &MO2 = MI.getOperand(OpIdx); |
Evan Cheng | d87293c | 2008-11-06 08:47:38 +0000 | [diff] [blame] | 1052 | unsigned AM3Opc = (ImplicitRn == ARM::PC) |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1053 | ? 0 : MI.getOperand(OpIdx+1).getImm(); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1054 | |
Evan Cheng | e7de7e3 | 2008-09-13 01:44:01 +0000 | [diff] [blame] | 1055 | // Set bit U(23) according to sign of immed value (positive or negative) |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1056 | Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) << |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1057 | ARMII::U_BitShift); |
| 1058 | |
| 1059 | // If this instr is in register offset/index encoding, set bit[3:0] |
| 1060 | // to the corresponding Rm register. |
| 1061 | if (MO2.getReg()) { |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1062 | Binary |= getARMRegisterNumbering(MO2.getReg()); |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1063 | emitWordLE(Binary); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1064 | return; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
Evan Cheng | d87293c | 2008-11-06 08:47:38 +0000 | [diff] [blame] | 1067 | // This instr is in immediate offset/index encoding, set bit 22 to 1. |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1068 | Binary |= 1 << ARMII::AM3_I_BitShift; |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1069 | if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) { |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1070 | // Set operands |
Evan Cheng | 7063291 | 2008-11-12 07:34:37 +0000 | [diff] [blame] | 1071 | Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH |
| 1072 | Binary |= (ImmOffs & 0xF); // immedL |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1073 | } |
| 1074 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1075 | emitWordLE(Binary); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1076 | } |
| 1077 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1078 | static unsigned getAddrModeUPBits(unsigned Mode) { |
| 1079 | unsigned Binary = 0; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1080 | |
| 1081 | // Set addressing mode by modifying bits U(23) and P(24) |
| 1082 | // IA - Increment after - bit U = 1 and bit P = 0 |
| 1083 | // IB - Increment before - bit U = 1 and bit P = 1 |
| 1084 | // DA - Decrement after - bit U = 0 and bit P = 0 |
| 1085 | // DB - Decrement before - bit U = 0 and bit P = 1 |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1086 | switch (Mode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1087 | default: llvm_unreachable("Unknown addressing sub-mode!"); |
Evan Cheng | 10bf734 | 2009-09-09 23:55:03 +0000 | [diff] [blame] | 1088 | case ARM_AM::da: break; |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1089 | case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break; |
| 1090 | case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break; |
| 1091 | case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1092 | } |
| 1093 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1094 | return Binary; |
| 1095 | } |
| 1096 | |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1097 | void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) { |
| 1098 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1099 | bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0; |
| 1100 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1101 | // Part of binary is determined by TableGn. |
| 1102 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1103 | |
| 1104 | // Set the conditional execution predicate |
| 1105 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1106 | |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1107 | // Skip operand 0 of an instruction with base register update. |
| 1108 | unsigned OpIdx = 0; |
| 1109 | if (IsUpdating) |
| 1110 | ++OpIdx; |
| 1111 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1112 | // Set base address operand |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1113 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift; |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1114 | |
| 1115 | // Set addressing mode by modifying bits U(23) and P(24) |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1116 | const MachineOperand &MO = MI.getOperand(OpIdx++); |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1117 | Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm())); |
| 1118 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1119 | // Set bit W(21) |
Bob Wilson | ab34605 | 2010-03-16 17:46:45 +0000 | [diff] [blame] | 1120 | if (IsUpdating) |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1121 | Binary |= 0x1 << ARMII::W_BitShift; |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1122 | |
| 1123 | // Set registers |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1124 | for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) { |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1125 | const MachineOperand &MO = MI.getOperand(i); |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1126 | if (!MO.isReg() || MO.isImplicit()) |
| 1127 | break; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1128 | unsigned RegNum = getARMRegisterNumbering(MO.getReg()); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1129 | assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) && |
| 1130 | RegNum < 16); |
| 1131 | Binary |= 0x1 << RegNum; |
| 1132 | } |
| 1133 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1134 | emitWordLE(Binary); |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1135 | } |
| 1136 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1137 | void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) { |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1138 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1139 | |
| 1140 | // Part of binary is determined by TableGn. |
| 1141 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1142 | |
Jim Grosbach | 0a4b9dc | 2008-11-03 18:38:31 +0000 | [diff] [blame] | 1143 | // Set the conditional execution predicate |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1144 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Jim Grosbach | 0a4b9dc | 2008-11-03 18:38:31 +0000 | [diff] [blame] | 1145 | |
| 1146 | // Encode S bit if MI modifies CPSR. |
| 1147 | Binary |= getAddrModeSBit(MI, TID); |
| 1148 | |
| 1149 | // 32x32->64bit operations have two destination registers. The number |
| 1150 | // of register definitions will tell us if that's what we're dealing with. |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1151 | unsigned OpIdx = 0; |
Jim Grosbach | 0a4b9dc | 2008-11-03 18:38:31 +0000 | [diff] [blame] | 1152 | if (TID.getNumDefs() == 2) |
| 1153 | Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift; |
| 1154 | |
| 1155 | // Encode Rd |
| 1156 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift; |
| 1157 | |
| 1158 | // Encode Rm |
| 1159 | Binary |= getMachineOpValue(MI, OpIdx++); |
| 1160 | |
| 1161 | // Encode Rs |
| 1162 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift; |
| 1163 | |
Evan Cheng | fbc9d41 | 2008-11-06 01:21:28 +0000 | [diff] [blame] | 1164 | // Many multiple instructions (e.g. MLA) have three src operands. Encode |
| 1165 | // it as Rn (for multiply, that's in the same offset as RdLo. |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1166 | if (TID.getNumOperands() > OpIdx && |
| 1167 | !TID.OpInfo[OpIdx].isPredicate() && |
| 1168 | !TID.OpInfo[OpIdx].isOptionalDef()) |
| 1169 | Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift; |
| 1170 | |
| 1171 | emitWordLE(Binary); |
| 1172 | } |
| 1173 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1174 | void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) { |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1175 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1176 | |
| 1177 | // Part of binary is determined by TableGn. |
| 1178 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1179 | |
| 1180 | // Set the conditional execution predicate |
| 1181 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1182 | |
| 1183 | unsigned OpIdx = 0; |
| 1184 | |
| 1185 | // Encode Rd |
| 1186 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift; |
| 1187 | |
| 1188 | const MachineOperand &MO1 = MI.getOperand(OpIdx++); |
| 1189 | const MachineOperand &MO2 = MI.getOperand(OpIdx); |
| 1190 | if (MO2.isReg()) { |
| 1191 | // Two register operand form. |
| 1192 | // Encode Rn. |
| 1193 | Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift; |
| 1194 | |
| 1195 | // Encode Rm. |
| 1196 | Binary |= getMachineOpValue(MI, MO2); |
| 1197 | ++OpIdx; |
| 1198 | } else { |
| 1199 | Binary |= getMachineOpValue(MI, MO1); |
| 1200 | } |
| 1201 | |
| 1202 | // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand. |
| 1203 | if (MI.getOperand(OpIdx).isImm() && |
| 1204 | !TID.OpInfo[OpIdx].isPredicate() && |
| 1205 | !TID.OpInfo[OpIdx].isOptionalDef()) |
| 1206 | Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift; |
Evan Cheng | fbc9d41 | 2008-11-06 01:21:28 +0000 | [diff] [blame] | 1207 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1208 | emitWordLE(Binary); |
Jim Grosbach | 0a4b9dc | 2008-11-03 18:38:31 +0000 | [diff] [blame] | 1209 | } |
| 1210 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1211 | void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) { |
Evan Cheng | 8b59db3 | 2008-11-07 01:41:35 +0000 | [diff] [blame] | 1212 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1213 | |
| 1214 | // Part of binary is determined by TableGn. |
| 1215 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1216 | |
| 1217 | // Set the conditional execution predicate |
| 1218 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1219 | |
| 1220 | unsigned OpIdx = 0; |
| 1221 | |
| 1222 | // Encode Rd |
| 1223 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift; |
| 1224 | |
| 1225 | const MachineOperand &MO = MI.getOperand(OpIdx++); |
| 1226 | if (OpIdx == TID.getNumOperands() || |
| 1227 | TID.OpInfo[OpIdx].isPredicate() || |
| 1228 | TID.OpInfo[OpIdx].isOptionalDef()) { |
| 1229 | // Encode Rm and it's done. |
| 1230 | Binary |= getMachineOpValue(MI, MO); |
| 1231 | emitWordLE(Binary); |
| 1232 | return; |
| 1233 | } |
| 1234 | |
| 1235 | // Encode Rn. |
| 1236 | Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift; |
| 1237 | |
| 1238 | // Encode Rm. |
| 1239 | Binary |= getMachineOpValue(MI, OpIdx++); |
| 1240 | |
| 1241 | // Encode shift_imm. |
| 1242 | unsigned ShiftAmt = MI.getOperand(OpIdx).getImm(); |
Bob Wilson | f955f29 | 2010-08-17 17:23:19 +0000 | [diff] [blame] | 1243 | if (TID.Opcode == ARM::PKHTB) { |
| 1244 | assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!"); |
| 1245 | if (ShiftAmt == 32) |
| 1246 | ShiftAmt = 0; |
| 1247 | } |
Evan Cheng | 8b59db3 | 2008-11-07 01:41:35 +0000 | [diff] [blame] | 1248 | assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!"); |
| 1249 | Binary |= ShiftAmt << ARMII::ShiftShift; |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 1250 | |
Evan Cheng | 8b59db3 | 2008-11-07 01:41:35 +0000 | [diff] [blame] | 1251 | emitWordLE(Binary); |
| 1252 | } |
| 1253 | |
Bob Wilson | 9a1c189 | 2010-08-11 00:01:18 +0000 | [diff] [blame] | 1254 | void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) { |
| 1255 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1256 | |
| 1257 | // Part of binary is determined by TableGen. |
| 1258 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1259 | |
| 1260 | // Set the conditional execution predicate |
| 1261 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1262 | |
| 1263 | // Encode Rd |
| 1264 | Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift; |
| 1265 | |
| 1266 | // Encode saturate bit position. |
| 1267 | unsigned Pos = MI.getOperand(1).getImm(); |
Bob Wilson | eaf1c98 | 2010-08-11 23:10:46 +0000 | [diff] [blame] | 1268 | if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16) |
Bob Wilson | 9a1c189 | 2010-08-11 00:01:18 +0000 | [diff] [blame] | 1269 | Pos -= 1; |
| 1270 | assert((Pos < 16 || (Pos < 32 && |
| 1271 | TID.Opcode != ARM::SSAT16 && |
| 1272 | TID.Opcode != ARM::USAT16)) && |
| 1273 | "saturate bit position out of range"); |
| 1274 | Binary |= Pos << 16; |
| 1275 | |
| 1276 | // Encode Rm |
| 1277 | Binary |= getMachineOpValue(MI, 2); |
| 1278 | |
| 1279 | // Encode shift_imm. |
| 1280 | if (TID.getNumOperands() == 4) { |
Bob Wilson | eaf1c98 | 2010-08-11 23:10:46 +0000 | [diff] [blame] | 1281 | unsigned ShiftOp = MI.getOperand(3).getImm(); |
| 1282 | ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp); |
| 1283 | if (Opc == ARM_AM::asr) |
| 1284 | Binary |= (1 << 6); |
Bob Wilson | 9a1c189 | 2010-08-11 00:01:18 +0000 | [diff] [blame] | 1285 | unsigned ShiftAmt = MI.getOperand(3).getImm(); |
Bob Wilson | eaf1c98 | 2010-08-11 23:10:46 +0000 | [diff] [blame] | 1286 | if (ShiftAmt == 32 && Opc == ARM_AM::asr) |
Bob Wilson | 9a1c189 | 2010-08-11 00:01:18 +0000 | [diff] [blame] | 1287 | ShiftAmt = 0; |
| 1288 | assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!"); |
| 1289 | Binary |= ShiftAmt << ARMII::ShiftShift; |
| 1290 | } |
| 1291 | |
| 1292 | emitWordLE(Binary); |
| 1293 | } |
| 1294 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1295 | void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) { |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1296 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1297 | |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 1298 | if (TID.Opcode == ARM::TPsoft) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1299 | llvm_unreachable("ARM::TPsoft FIXME"); // FIXME |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 1300 | } |
Evan Cheng | 12c3a53 | 2008-11-06 17:48:05 +0000 | [diff] [blame] | 1301 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1302 | // Part of binary is determined by TableGn. |
| 1303 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1304 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1305 | // Set the conditional execution predicate |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1306 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1307 | |
| 1308 | // Set signed_immed_24 field |
| 1309 | Binary |= getMachineOpValue(MI, 0); |
| 1310 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1311 | emitWordLE(Binary); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1312 | } |
| 1313 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1314 | void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) { |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 1315 | // Remember the base address of the inline jump table. |
Evan Cheng | 5788d1a | 2008-12-10 02:32:19 +0000 | [diff] [blame] | 1316 | uintptr_t JTBase = MCE.getCurrentPCValue(); |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 1317 | JTI->addJumpTableBaseAddr(JTIndex, JTBase); |
Chris Lattner | 893e1c9 | 2009-08-23 06:49:22 +0000 | [diff] [blame] | 1318 | DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase |
| 1319 | << '\n'); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 1320 | |
| 1321 | // Now emit the jump table entries. |
| 1322 | const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs; |
| 1323 | for (unsigned i = 0, e = MBBs.size(); i != e; ++i) { |
| 1324 | if (IsPIC) |
| 1325 | // DestBB address - JT base. |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 1326 | emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 1327 | else |
| 1328 | // Absolute DestBB address. |
| 1329 | emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute); |
| 1330 | emitWordLE(0); |
| 1331 | } |
| 1332 | } |
| 1333 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1334 | void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) { |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1335 | const TargetInstrDesc &TID = MI.getDesc(); |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1336 | |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 1337 | // Handle jump tables. |
Evan Cheng | 90daf4d | 2009-07-25 00:13:11 +0000 | [diff] [blame] | 1338 | if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) { |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 1339 | // First emit a ldr pc, [] instruction. |
| 1340 | emitDataProcessingInstruction(MI, ARM::PC); |
| 1341 | |
| 1342 | // Then emit the inline jump table. |
Evan Cheng | c9a4153 | 2009-07-08 00:05:05 +0000 | [diff] [blame] | 1343 | unsigned JTIndex = |
Evan Cheng | 90daf4d | 2009-07-25 00:13:11 +0000 | [diff] [blame] | 1344 | (TID.Opcode == ARM::BR_JTr) |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 1345 | ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex(); |
| 1346 | emitInlineJumpTable(JTIndex); |
| 1347 | return; |
Evan Cheng | 90daf4d | 2009-07-25 00:13:11 +0000 | [diff] [blame] | 1348 | } else if (TID.Opcode == ARM::BR_JTm) { |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 1349 | // First emit a ldr pc, [] instruction. |
| 1350 | emitLoadStoreInstruction(MI, ARM::PC); |
| 1351 | |
| 1352 | // Then emit the inline jump table. |
Evan Cheng | 437c173 | 2008-11-07 22:30:53 +0000 | [diff] [blame] | 1353 | emitInlineJumpTable(MI.getOperand(3).getIndex()); |
Evan Cheng | 4df60f5 | 2008-11-07 09:06:08 +0000 | [diff] [blame] | 1354 | return; |
| 1355 | } |
| 1356 | |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1357 | // Part of binary is determined by TableGn. |
| 1358 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1359 | |
| 1360 | // Set the conditional execution predicate |
Evan Cheng | 97f48c3 | 2008-11-06 22:15:19 +0000 | [diff] [blame] | 1361 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1362 | |
Anton Korobeynikov | ce7bf1c | 2010-03-06 19:39:36 +0000 | [diff] [blame] | 1363 | if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR) |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1364 | // The return register is LR. |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1365 | Binary |= getARMRegisterNumbering(ARM::LR); |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 1366 | else |
Evan Cheng | edda31c | 2008-11-05 18:35:52 +0000 | [diff] [blame] | 1367 | // otherwise, set the return register |
| 1368 | Binary |= getMachineOpValue(MI, 0); |
| 1369 | |
Evan Cheng | 83b5cf0 | 2008-11-05 23:22:34 +0000 | [diff] [blame] | 1370 | emitWordLE(Binary); |
Evan Cheng | 148b6a4 | 2007-07-05 21:15:40 +0000 | [diff] [blame] | 1371 | } |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1372 | |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1373 | static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) { |
Evan Cheng | d06d48d | 2008-11-12 02:19:38 +0000 | [diff] [blame] | 1374 | unsigned RegD = MI.getOperand(OpIdx).getReg(); |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1375 | unsigned Binary = 0; |
Jim Grosbach | 7e2c04f | 2010-09-15 19:44:57 +0000 | [diff] [blame] | 1376 | bool isSPVFP = ARM::SPRRegisterClass->contains(RegD); |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1377 | RegD = getARMRegisterNumbering(RegD); |
Evan Cheng | d06d48d | 2008-11-12 02:19:38 +0000 | [diff] [blame] | 1378 | if (!isSPVFP) |
| 1379 | Binary |= RegD << ARMII::RegRdShift; |
| 1380 | else { |
| 1381 | Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift; |
| 1382 | Binary |= (RegD & 0x01) << ARMII::D_BitShift; |
| 1383 | } |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1384 | return Binary; |
| 1385 | } |
Evan Cheng | 78be83d | 2008-11-11 19:40:26 +0000 | [diff] [blame] | 1386 | |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1387 | static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) { |
Evan Cheng | d06d48d | 2008-11-12 02:19:38 +0000 | [diff] [blame] | 1388 | unsigned RegN = MI.getOperand(OpIdx).getReg(); |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1389 | unsigned Binary = 0; |
Jim Grosbach | 7e2c04f | 2010-09-15 19:44:57 +0000 | [diff] [blame] | 1390 | bool isSPVFP = ARM::SPRRegisterClass->contains(RegN); |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1391 | RegN = getARMRegisterNumbering(RegN); |
Evan Cheng | d06d48d | 2008-11-12 02:19:38 +0000 | [diff] [blame] | 1392 | if (!isSPVFP) |
| 1393 | Binary |= RegN << ARMII::RegRnShift; |
| 1394 | else { |
| 1395 | Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift; |
| 1396 | Binary |= (RegN & 0x01) << ARMII::N_BitShift; |
| 1397 | } |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1398 | return Binary; |
| 1399 | } |
Evan Cheng | d06d48d | 2008-11-12 02:19:38 +0000 | [diff] [blame] | 1400 | |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1401 | static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) { |
| 1402 | unsigned RegM = MI.getOperand(OpIdx).getReg(); |
| 1403 | unsigned Binary = 0; |
Jim Grosbach | 7e2c04f | 2010-09-15 19:44:57 +0000 | [diff] [blame] | 1404 | bool isSPVFP = ARM::SPRRegisterClass->contains(RegM); |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1405 | RegM = getARMRegisterNumbering(RegM); |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1406 | if (!isSPVFP) |
| 1407 | Binary |= RegM; |
| 1408 | else { |
| 1409 | Binary |= ((RegM & 0x1E) >> 1); |
| 1410 | Binary |= (RegM & 0x01) << ARMII::M_BitShift; |
Evan Cheng | 78be83d | 2008-11-11 19:40:26 +0000 | [diff] [blame] | 1411 | } |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1412 | return Binary; |
| 1413 | } |
| 1414 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1415 | void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) { |
Evan Cheng | 3c4a4ff | 2008-11-12 07:18:38 +0000 | [diff] [blame] | 1416 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1417 | |
| 1418 | // Part of binary is determined by TableGn. |
| 1419 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1420 | |
| 1421 | // Set the conditional execution predicate |
| 1422 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1423 | |
| 1424 | unsigned OpIdx = 0; |
| 1425 | assert((Binary & ARMII::D_BitShift) == 0 && |
| 1426 | (Binary & ARMII::N_BitShift) == 0 && |
| 1427 | (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!"); |
| 1428 | |
| 1429 | // Encode Dd / Sd. |
| 1430 | Binary |= encodeVFPRd(MI, OpIdx++); |
| 1431 | |
| 1432 | // If this is a two-address operand, skip it, e.g. FMACD. |
| 1433 | if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
| 1434 | ++OpIdx; |
| 1435 | |
| 1436 | // Encode Dn / Sn. |
| 1437 | if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm) |
Evan Cheng | 3f4924e | 2008-11-12 08:14:21 +0000 | [diff] [blame] | 1438 | Binary |= encodeVFPRn(MI, OpIdx++); |
Evan Cheng | 3c4a4ff | 2008-11-12 07:18:38 +0000 | [diff] [blame] | 1439 | |
| 1440 | if (OpIdx == TID.getNumOperands() || |
| 1441 | TID.OpInfo[OpIdx].isPredicate() || |
| 1442 | TID.OpInfo[OpIdx].isOptionalDef()) { |
| 1443 | // FCMPEZD etc. has only one operand. |
| 1444 | emitWordLE(Binary); |
| 1445 | return; |
| 1446 | } |
| 1447 | |
| 1448 | // Encode Dm / Sm. |
| 1449 | Binary |= encodeVFPRm(MI, OpIdx); |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 1450 | |
Evan Cheng | 3c4a4ff | 2008-11-12 07:18:38 +0000 | [diff] [blame] | 1451 | emitWordLE(Binary); |
| 1452 | } |
| 1453 | |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 1454 | void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) { |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1455 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1456 | unsigned Form = TID.TSFlags & ARMII::FormMask; |
| 1457 | |
| 1458 | // Part of binary is determined by TableGn. |
| 1459 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1460 | |
| 1461 | // Set the conditional execution predicate |
| 1462 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1463 | |
| 1464 | switch (Form) { |
| 1465 | default: break; |
| 1466 | case ARMII::VFPConv1Frm: |
| 1467 | case ARMII::VFPConv2Frm: |
| 1468 | case ARMII::VFPConv3Frm: |
| 1469 | // Encode Dd / Sd. |
| 1470 | Binary |= encodeVFPRd(MI, 0); |
| 1471 | break; |
| 1472 | case ARMII::VFPConv4Frm: |
| 1473 | // Encode Dn / Sn. |
| 1474 | Binary |= encodeVFPRn(MI, 0); |
| 1475 | break; |
| 1476 | case ARMII::VFPConv5Frm: |
| 1477 | // Encode Dm / Sm. |
| 1478 | Binary |= encodeVFPRm(MI, 0); |
| 1479 | break; |
| 1480 | } |
| 1481 | |
| 1482 | switch (Form) { |
| 1483 | default: break; |
| 1484 | case ARMII::VFPConv1Frm: |
| 1485 | // Encode Dm / Sm. |
| 1486 | Binary |= encodeVFPRm(MI, 1); |
Evan Cheng | 67fd91f | 2008-11-13 07:46:59 +0000 | [diff] [blame] | 1487 | break; |
Evan Cheng | 80a1198 | 2008-11-12 06:41:41 +0000 | [diff] [blame] | 1488 | case ARMII::VFPConv2Frm: |
| 1489 | case ARMII::VFPConv3Frm: |
| 1490 | // Encode Dn / Sn. |
| 1491 | Binary |= encodeVFPRn(MI, 1); |
| 1492 | break; |
| 1493 | case ARMII::VFPConv4Frm: |
| 1494 | case ARMII::VFPConv5Frm: |
| 1495 | // Encode Dd / Sd. |
| 1496 | Binary |= encodeVFPRd(MI, 1); |
| 1497 | break; |
| 1498 | } |
| 1499 | |
| 1500 | if (Form == ARMII::VFPConv5Frm) |
| 1501 | // Encode Dn / Sn. |
| 1502 | Binary |= encodeVFPRn(MI, 2); |
| 1503 | else if (Form == ARMII::VFPConv3Frm) |
| 1504 | // Encode Dm / Sm. |
| 1505 | Binary |= encodeVFPRm(MI, 2); |
Evan Cheng | 78be83d | 2008-11-11 19:40:26 +0000 | [diff] [blame] | 1506 | |
| 1507 | emitWordLE(Binary); |
| 1508 | } |
| 1509 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1510 | void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) { |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1511 | // Part of binary is determined by TableGn. |
| 1512 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1513 | |
| 1514 | // Set the conditional execution predicate |
| 1515 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1516 | |
| 1517 | unsigned OpIdx = 0; |
| 1518 | |
| 1519 | // Encode Dd / Sd. |
Evan Cheng | 3c4a4ff | 2008-11-12 07:18:38 +0000 | [diff] [blame] | 1520 | Binary |= encodeVFPRd(MI, OpIdx++); |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1521 | |
| 1522 | // Encode address base. |
| 1523 | const MachineOperand &Base = MI.getOperand(OpIdx++); |
| 1524 | Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift; |
| 1525 | |
| 1526 | // If there is a non-zero immediate offset, encode it. |
| 1527 | if (Base.isReg()) { |
| 1528 | const MachineOperand &Offset = MI.getOperand(OpIdx); |
| 1529 | if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) { |
| 1530 | if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add) |
| 1531 | Binary |= 1 << ARMII::U_BitShift; |
Evan Cheng | 607f1b4 | 2008-11-12 08:21:12 +0000 | [diff] [blame] | 1532 | Binary |= ImmOffs; |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1533 | emitWordLE(Binary); |
| 1534 | return; |
| 1535 | } |
| 1536 | } |
| 1537 | |
| 1538 | // If immediate offset is omitted, default to +0. |
| 1539 | Binary |= 1 << ARMII::U_BitShift; |
| 1540 | |
| 1541 | emitWordLE(Binary); |
| 1542 | } |
| 1543 | |
Bob Wilson | 87949d4 | 2010-03-17 21:16:45 +0000 | [diff] [blame] | 1544 | void |
| 1545 | ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) { |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1546 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1547 | bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0; |
| 1548 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1549 | // Part of binary is determined by TableGn. |
| 1550 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1551 | |
| 1552 | // Set the conditional execution predicate |
| 1553 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1554 | |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1555 | // Skip operand 0 of an instruction with base register update. |
| 1556 | unsigned OpIdx = 0; |
| 1557 | if (IsUpdating) |
| 1558 | ++OpIdx; |
| 1559 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1560 | // Set base address operand |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1561 | Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift; |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1562 | |
| 1563 | // Set addressing mode by modifying bits U(23) and P(24) |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1564 | const MachineOperand &MO = MI.getOperand(OpIdx++); |
Bob Wilson | d4bfd54 | 2010-08-27 23:18:17 +0000 | [diff] [blame] | 1565 | Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm())); |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1566 | |
| 1567 | // Set bit W(21) |
Bob Wilson | 2d357f6 | 2010-03-16 18:38:09 +0000 | [diff] [blame] | 1568 | if (IsUpdating) |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1569 | Binary |= 0x1 << ARMII::W_BitShift; |
| 1570 | |
| 1571 | // First register is encoded in Dd. |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1572 | Binary |= encodeVFPRd(MI, OpIdx+2); |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1573 | |
Bob Wilson | d4bfd54 | 2010-08-27 23:18:17 +0000 | [diff] [blame] | 1574 | // Count the number of registers. |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1575 | unsigned NumRegs = 1; |
Bob Wilson | bffb5b3 | 2010-03-13 07:34:35 +0000 | [diff] [blame] | 1576 | for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) { |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1577 | const MachineOperand &MO = MI.getOperand(i); |
| 1578 | if (!MO.isReg() || MO.isImplicit()) |
| 1579 | break; |
| 1580 | ++NumRegs; |
| 1581 | } |
Shih-wei Liao | 5170b71 | 2010-05-26 00:02:28 +0000 | [diff] [blame] | 1582 | // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0) |
| 1583 | // Otherwise, it will be 0, in the case of 32-bit registers. |
| 1584 | if(Binary & 0x100) |
| 1585 | Binary |= NumRegs * 2; |
| 1586 | else |
| 1587 | Binary |= NumRegs; |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1588 | |
| 1589 | emitWordLE(Binary); |
| 1590 | } |
| 1591 | |
Chris Lattner | 33fabd7 | 2010-02-02 21:48:51 +0000 | [diff] [blame] | 1592 | void ARMCodeEmitter::emitMiscInstruction(const MachineInstr &MI) { |
Zonr Chang | f3c770a | 2010-05-25 10:23:52 +0000 | [diff] [blame] | 1593 | unsigned Opcode = MI.getDesc().Opcode; |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1594 | // Part of binary is determined by TableGn. |
| 1595 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1596 | |
| 1597 | // Set the conditional execution predicate |
| 1598 | Binary |= II->getPredicate(&MI) << ARMII::CondShift; |
| 1599 | |
Bill Wendling | 88cf038 | 2010-10-14 01:02:08 +0000 | [diff] [blame] | 1600 | switch (Opcode) { |
Zonr Chang | f3c770a | 2010-05-25 10:23:52 +0000 | [diff] [blame] | 1601 | default: |
| 1602 | llvm_unreachable("ARMCodeEmitter::emitMiscInstruction"); |
| 1603 | |
Zonr Chang | f3c770a | 2010-05-25 10:23:52 +0000 | [diff] [blame] | 1604 | case ARM::FCONSTD: |
| 1605 | case ARM::FCONSTS: { |
| 1606 | // Encode Dd / Sd. |
| 1607 | Binary |= encodeVFPRd(MI, 0); |
| 1608 | |
| 1609 | // Encode imm., Table A7-18 VFP modified immediate constants |
| 1610 | const MachineOperand &MO1 = MI.getOperand(1); |
| 1611 | unsigned Imm = static_cast<unsigned>(MO1.getFPImm()->getValueAPF() |
| 1612 | .bitcastToAPInt().getHiBits(32).getLimitedValue()); |
| 1613 | unsigned ModifiedImm; |
| 1614 | |
| 1615 | if(Opcode == ARM::FCONSTS) |
| 1616 | ModifiedImm = (Imm & 0x80000000) >> 24 | // a |
| 1617 | (Imm & 0x03F80000) >> 19; // bcdefgh |
| 1618 | else // Opcode == ARM::FCONSTD |
| 1619 | ModifiedImm = (Imm & 0x80000000) >> 24 | // a |
| 1620 | (Imm & 0x007F0000) >> 16; // bcdefgh |
| 1621 | |
| 1622 | // Insts{19-16} = abcd, Insts{3-0} = efgh |
| 1623 | Binary |= ((ModifiedImm & 0xF0) >> 4) << 16; |
| 1624 | Binary |= (ModifiedImm & 0xF); |
| 1625 | break; |
| 1626 | } |
| 1627 | } |
| 1628 | |
Evan Cheng | cd8e66a | 2008-11-11 21:48:44 +0000 | [diff] [blame] | 1629 | emitWordLE(Binary); |
| 1630 | } |
| 1631 | |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1632 | static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) { |
| 1633 | unsigned RegD = MI.getOperand(OpIdx).getReg(); |
| 1634 | unsigned Binary = 0; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1635 | RegD = getARMRegisterNumbering(RegD); |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1636 | Binary |= (RegD & 0xf) << ARMII::RegRdShift; |
| 1637 | Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift; |
| 1638 | return Binary; |
| 1639 | } |
| 1640 | |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 1641 | static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) { |
| 1642 | unsigned RegN = MI.getOperand(OpIdx).getReg(); |
| 1643 | unsigned Binary = 0; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1644 | RegN = getARMRegisterNumbering(RegN); |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 1645 | Binary |= (RegN & 0xf) << ARMII::RegRnShift; |
| 1646 | Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift; |
| 1647 | return Binary; |
| 1648 | } |
| 1649 | |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 1650 | static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) { |
| 1651 | unsigned RegM = MI.getOperand(OpIdx).getReg(); |
| 1652 | unsigned Binary = 0; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1653 | RegM = getARMRegisterNumbering(RegM); |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 1654 | Binary |= (RegM & 0xf); |
| 1655 | Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift; |
| 1656 | return Binary; |
| 1657 | } |
| 1658 | |
Bob Wilson | d896a97 | 2010-06-28 21:12:19 +0000 | [diff] [blame] | 1659 | /// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON |
| 1660 | /// data-processing instruction to the corresponding Thumb encoding. |
| 1661 | static unsigned convertNEONDataProcToThumb(unsigned Binary) { |
| 1662 | assert((Binary & 0xfe000000) == 0xf2000000 && |
| 1663 | "not an ARM NEON data-processing instruction"); |
| 1664 | unsigned UBit = (Binary >> 24) & 1; |
| 1665 | return 0xef000000 | (UBit << 28) | (Binary & 0xffffff); |
| 1666 | } |
| 1667 | |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 1668 | void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) { |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 1669 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1670 | |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 1671 | unsigned RegTOpIdx, RegNOpIdx, LnOpIdx; |
| 1672 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1673 | if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) { |
| 1674 | RegTOpIdx = 0; |
| 1675 | RegNOpIdx = 1; |
| 1676 | LnOpIdx = 2; |
| 1677 | } else { // ARMII::NSetLnFrm |
| 1678 | RegTOpIdx = 2; |
| 1679 | RegNOpIdx = 0; |
| 1680 | LnOpIdx = 3; |
| 1681 | } |
| 1682 | |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 1683 | // Set the conditional execution predicate |
Bob Wilson | 5cdede4 | 2010-06-29 00:26:13 +0000 | [diff] [blame] | 1684 | Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift; |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 1685 | |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 1686 | unsigned RegT = MI.getOperand(RegTOpIdx).getReg(); |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1687 | RegT = getARMRegisterNumbering(RegT); |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 1688 | Binary |= (RegT << ARMII::RegRdShift); |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 1689 | Binary |= encodeNEONRn(MI, RegNOpIdx); |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 1690 | |
| 1691 | unsigned LaneShift; |
| 1692 | if ((Binary & (1 << 22)) != 0) |
| 1693 | LaneShift = 0; // 8-bit elements |
| 1694 | else if ((Binary & (1 << 5)) != 0) |
| 1695 | LaneShift = 1; // 16-bit elements |
| 1696 | else |
| 1697 | LaneShift = 2; // 32-bit elements |
| 1698 | |
Bob Wilson | d5a563d | 2010-06-29 17:34:07 +0000 | [diff] [blame] | 1699 | unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift; |
Bob Wilson | 52e4a0a | 2010-06-26 04:07:15 +0000 | [diff] [blame] | 1700 | unsigned Opc1 = Lane >> 2; |
| 1701 | unsigned Opc2 = Lane & 3; |
| 1702 | assert((Opc1 & 3) == 0 && "out-of-range lane number operand"); |
| 1703 | Binary |= (Opc1 << 21); |
| 1704 | Binary |= (Opc2 << 5); |
| 1705 | |
| 1706 | emitWordLE(Binary); |
| 1707 | } |
| 1708 | |
Bob Wilson | 21773e7 | 2010-06-29 20:13:29 +0000 | [diff] [blame] | 1709 | void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) { |
| 1710 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1711 | |
| 1712 | // Set the conditional execution predicate |
| 1713 | Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift; |
| 1714 | |
| 1715 | unsigned RegT = MI.getOperand(1).getReg(); |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 1716 | RegT = getARMRegisterNumbering(RegT); |
Bob Wilson | 21773e7 | 2010-06-29 20:13:29 +0000 | [diff] [blame] | 1717 | Binary |= (RegT << ARMII::RegRdShift); |
| 1718 | Binary |= encodeNEONRn(MI, 0); |
| 1719 | emitWordLE(Binary); |
| 1720 | } |
| 1721 | |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 1722 | void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) { |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1723 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1724 | // Destination register is encoded in Dd. |
| 1725 | Binary |= encodeNEONRd(MI, 0); |
| 1726 | // Immediate fields: Op, Cmode, I, Imm3, Imm4 |
| 1727 | unsigned Imm = MI.getOperand(1).getImm(); |
| 1728 | unsigned Op = (Imm >> 12) & 1; |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1729 | unsigned Cmode = (Imm >> 8) & 0xf; |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1730 | unsigned I = (Imm >> 7) & 1; |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1731 | unsigned Imm3 = (Imm >> 4) & 0x7; |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1732 | unsigned Imm4 = Imm & 0xf; |
Bob Wilson | 08baddb | 2010-06-28 21:16:30 +0000 | [diff] [blame] | 1733 | Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4; |
Bob Wilson | 62d24a4 | 2010-06-28 22:23:17 +0000 | [diff] [blame] | 1734 | if (IsThumb) |
Bob Wilson | d896a97 | 2010-06-28 21:12:19 +0000 | [diff] [blame] | 1735 | Binary = convertNEONDataProcToThumb(Binary); |
Bob Wilson | 1a913ed | 2010-06-11 21:34:50 +0000 | [diff] [blame] | 1736 | emitWordLE(Binary); |
| 1737 | } |
| 1738 | |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 1739 | void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) { |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 1740 | const TargetInstrDesc &TID = MI.getDesc(); |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 1741 | unsigned Binary = getBinaryCodeForInstr(MI); |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 1742 | // Destination register is encoded in Dd; source register in Dm. |
| 1743 | unsigned OpIdx = 0; |
| 1744 | Binary |= encodeNEONRd(MI, OpIdx++); |
| 1745 | if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
| 1746 | ++OpIdx; |
| 1747 | Binary |= encodeNEONRm(MI, OpIdx); |
Bob Wilson | 62d24a4 | 2010-06-28 22:23:17 +0000 | [diff] [blame] | 1748 | if (IsThumb) |
Bob Wilson | d896a97 | 2010-06-28 21:12:19 +0000 | [diff] [blame] | 1749 | Binary = convertNEONDataProcToThumb(Binary); |
Bob Wilson | 583a2a0 | 2010-06-25 21:17:19 +0000 | [diff] [blame] | 1750 | // FIXME: This does not handle VDUPfdf or VDUPfqf. |
| 1751 | emitWordLE(Binary); |
| 1752 | } |
| 1753 | |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 1754 | void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) { |
| 1755 | const TargetInstrDesc &TID = MI.getDesc(); |
| 1756 | unsigned Binary = getBinaryCodeForInstr(MI); |
| 1757 | // Destination register is encoded in Dd; source registers in Dn and Dm. |
| 1758 | unsigned OpIdx = 0; |
| 1759 | Binary |= encodeNEONRd(MI, OpIdx++); |
| 1760 | if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
| 1761 | ++OpIdx; |
| 1762 | Binary |= encodeNEONRn(MI, OpIdx++); |
| 1763 | if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) |
| 1764 | ++OpIdx; |
| 1765 | Binary |= encodeNEONRm(MI, OpIdx); |
Bob Wilson | 62d24a4 | 2010-06-28 22:23:17 +0000 | [diff] [blame] | 1766 | if (IsThumb) |
Bob Wilson | d896a97 | 2010-06-28 21:12:19 +0000 | [diff] [blame] | 1767 | Binary = convertNEONDataProcToThumb(Binary); |
Bob Wilson | 5e7b607 | 2010-06-25 22:40:46 +0000 | [diff] [blame] | 1768 | // FIXME: This does not handle VMOVDneon or VMOVQ. |
| 1769 | emitWordLE(Binary); |
| 1770 | } |
| 1771 | |
Evan Cheng | 7602e11 | 2008-09-02 06:52:38 +0000 | [diff] [blame] | 1772 | #include "ARMGenCodeEmitter.inc" |