Jia Liu | 9f61011 | 2012-02-17 08:55:11 +0000 | [diff] [blame] | 1 | //===-- MipsMCCodeEmitter.cpp - Convert Mips Code to Machine Code ---------===// |
Akira Hatanaka | 750ecec | 2011-09-30 20:40:03 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the MipsMCCodeEmitter class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | // |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 14 | |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 15 | #include "MipsMCCodeEmitter.h" |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 16 | #include "MCTargetDesc/MipsFixupKinds.h" |
Petar Jovanovic | a5da588 | 2014-02-04 18:41:57 +0000 | [diff] [blame] | 17 | #include "MCTargetDesc/MipsMCExpr.h" |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 18 | #include "MCTargetDesc/MipsMCTargetDesc.h" |
| 19 | #include "llvm/ADT/APFloat.h" |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallVector.h" |
Akira Hatanaka | 5d6faed | 2012-12-10 20:04:40 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCContext.h" |
Akira Hatanaka | 750ecec | 2011-09-30 20:40:03 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCExpr.h" |
| 23 | #include "llvm/MC/MCInst.h" |
| 24 | #include "llvm/MC/MCInstrInfo.h" |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCFixup.h" |
Akira Hatanaka | 750ecec | 2011-09-30 20:40:03 +0000 | [diff] [blame] | 26 | #include "llvm/MC/MCSubtargetInfo.h" |
Akira Hatanaka | 750ecec | 2011-09-30 20:40:03 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Akira Hatanaka | 750ecec | 2011-09-30 20:40:03 +0000 | [diff] [blame] | 28 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 29 | #define DEBUG_TYPE "mccodeemitter" |
| 30 | |
Akira Hatanaka | be6a818 | 2013-04-19 19:03:11 +0000 | [diff] [blame] | 31 | #define GET_INSTRMAP_INFO |
| 32 | #include "MipsGenInstrInfo.inc" |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 33 | #undef GET_INSTRMAP_INFO |
Akira Hatanaka | be6a818 | 2013-04-19 19:03:11 +0000 | [diff] [blame] | 34 | |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 35 | namespace llvm { |
| 36 | MCCodeEmitter *createMipsMCCodeEmitterEB(const MCInstrInfo &MCII, |
| 37 | const MCRegisterInfo &MRI, |
| 38 | const MCSubtargetInfo &STI, |
| 39 | MCContext &Ctx) { |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 40 | return new MipsMCCodeEmitter(MCII, Ctx, false); |
Akira Hatanaka | 1ee768d | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 43 | MCCodeEmitter *createMipsMCCodeEmitterEL(const MCInstrInfo &MCII, |
| 44 | const MCRegisterInfo &MRI, |
| 45 | const MCSubtargetInfo &STI, |
| 46 | MCContext &Ctx) { |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 47 | return new MipsMCCodeEmitter(MCII, Ctx, true); |
Akira Hatanaka | 750ecec | 2011-09-30 20:40:03 +0000 | [diff] [blame] | 48 | } |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 49 | } // End of namespace llvm. |
Rafael Espindola | f30f2cc | 2013-05-27 22:34:59 +0000 | [diff] [blame] | 50 | |
| 51 | // If the D<shift> instruction has a shift amount that is greater |
| 52 | // than 31 (checked in calling routine), lower it to a D<shift>32 instruction |
| 53 | static void LowerLargeShift(MCInst& Inst) { |
| 54 | |
| 55 | assert(Inst.getNumOperands() == 3 && "Invalid no. of operands for shift!"); |
| 56 | assert(Inst.getOperand(2).isImm()); |
| 57 | |
| 58 | int64_t Shift = Inst.getOperand(2).getImm(); |
| 59 | if (Shift <= 31) |
| 60 | return; // Do nothing |
| 61 | Shift -= 32; |
| 62 | |
| 63 | // saminus32 |
| 64 | Inst.getOperand(2).setImm(Shift); |
| 65 | |
| 66 | switch (Inst.getOpcode()) { |
| 67 | default: |
| 68 | // Calling function is not synchronized |
| 69 | llvm_unreachable("Unexpected shift instruction"); |
| 70 | case Mips::DSLL: |
| 71 | Inst.setOpcode(Mips::DSLL32); |
| 72 | return; |
| 73 | case Mips::DSRL: |
| 74 | Inst.setOpcode(Mips::DSRL32); |
| 75 | return; |
| 76 | case Mips::DSRA: |
| 77 | Inst.setOpcode(Mips::DSRA32); |
| 78 | return; |
Akira Hatanaka | 6a3fe57 | 2013-09-07 00:18:01 +0000 | [diff] [blame] | 79 | case Mips::DROTR: |
| 80 | Inst.setOpcode(Mips::DROTR32); |
| 81 | return; |
Rafael Espindola | f30f2cc | 2013-05-27 22:34:59 +0000 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | |
| 85 | // Pick a DEXT or DINS instruction variant based on the pos and size operands |
| 86 | static void LowerDextDins(MCInst& InstIn) { |
| 87 | int Opcode = InstIn.getOpcode(); |
| 88 | |
| 89 | if (Opcode == Mips::DEXT) |
| 90 | assert(InstIn.getNumOperands() == 4 && |
| 91 | "Invalid no. of machine operands for DEXT!"); |
| 92 | else // Only DEXT and DINS are possible |
| 93 | assert(InstIn.getNumOperands() == 5 && |
| 94 | "Invalid no. of machine operands for DINS!"); |
| 95 | |
| 96 | assert(InstIn.getOperand(2).isImm()); |
| 97 | int64_t pos = InstIn.getOperand(2).getImm(); |
| 98 | assert(InstIn.getOperand(3).isImm()); |
| 99 | int64_t size = InstIn.getOperand(3).getImm(); |
| 100 | |
| 101 | if (size <= 32) { |
| 102 | if (pos < 32) // DEXT/DINS, do nothing |
| 103 | return; |
| 104 | // DEXTU/DINSU |
| 105 | InstIn.getOperand(2).setImm(pos - 32); |
| 106 | InstIn.setOpcode((Opcode == Mips::DEXT) ? Mips::DEXTU : Mips::DINSU); |
| 107 | return; |
| 108 | } |
| 109 | // DEXTM/DINSM |
| 110 | assert(pos < 32 && "DEXT/DINS cannot have both size and pos > 32"); |
| 111 | InstIn.getOperand(3).setImm(size - 32); |
| 112 | InstIn.setOpcode((Opcode == Mips::DEXT) ? Mips::DEXTM : Mips::DINSM); |
| 113 | return; |
| 114 | } |
| 115 | |
Matheus Almeida | 9e1450b | 2014-03-20 09:29:54 +0000 | [diff] [blame] | 116 | bool MipsMCCodeEmitter::isMicroMips(const MCSubtargetInfo &STI) const { |
| 117 | return STI.getFeatureBits() & Mips::FeatureMicroMips; |
| 118 | } |
| 119 | |
| 120 | void MipsMCCodeEmitter::EmitByte(unsigned char C, raw_ostream &OS) const { |
| 121 | OS << (char)C; |
| 122 | } |
| 123 | |
| 124 | void MipsMCCodeEmitter::EmitInstruction(uint64_t Val, unsigned Size, |
| 125 | const MCSubtargetInfo &STI, |
| 126 | raw_ostream &OS) const { |
| 127 | // Output the instruction encoding in little endian byte order. |
| 128 | // Little-endian byte ordering: |
| 129 | // mips32r2: 4 | 3 | 2 | 1 |
| 130 | // microMIPS: 2 | 1 | 4 | 3 |
| 131 | if (IsLittleEndian && Size == 4 && isMicroMips(STI)) { |
| 132 | EmitInstruction(Val >> 16, 2, STI, OS); |
| 133 | EmitInstruction(Val, 2, STI, OS); |
| 134 | } else { |
| 135 | for (unsigned i = 0; i < Size; ++i) { |
| 136 | unsigned Shift = IsLittleEndian ? i * 8 : (Size - 1 - i) * 8; |
| 137 | EmitByte((Val >> Shift) & 0xff, OS); |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 142 | /// EncodeInstruction - Emit the instruction. |
Jack Carter | 4e07b95d | 2013-08-27 19:45:28 +0000 | [diff] [blame] | 143 | /// Size the instruction with Desc.getSize(). |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 144 | void MipsMCCodeEmitter:: |
| 145 | EncodeInstruction(const MCInst &MI, raw_ostream &OS, |
David Woodhouse | 9784cef | 2014-01-28 23:13:07 +0000 | [diff] [blame] | 146 | SmallVectorImpl<MCFixup> &Fixups, |
| 147 | const MCSubtargetInfo &STI) const |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 148 | { |
Jack Carter | aa7aeaa | 2012-10-02 23:09:40 +0000 | [diff] [blame] | 149 | |
| 150 | // Non-pseudo instructions that get changed for direct object |
| 151 | // only based on operand values. |
| 152 | // If this list of instructions get much longer we will move |
| 153 | // the check to a function call. Until then, this is more efficient. |
| 154 | MCInst TmpInst = MI; |
| 155 | switch (MI.getOpcode()) { |
| 156 | // If shift amount is >= 32 it the inst needs to be lowered further |
| 157 | case Mips::DSLL: |
| 158 | case Mips::DSRL: |
| 159 | case Mips::DSRA: |
Akira Hatanaka | 6a3fe57 | 2013-09-07 00:18:01 +0000 | [diff] [blame] | 160 | case Mips::DROTR: |
Rafael Espindola | f30f2cc | 2013-05-27 22:34:59 +0000 | [diff] [blame] | 161 | LowerLargeShift(TmpInst); |
Jack Carter | aa7aeaa | 2012-10-02 23:09:40 +0000 | [diff] [blame] | 162 | break; |
| 163 | // Double extract instruction is chosen by pos and size operands |
| 164 | case Mips::DEXT: |
| 165 | case Mips::DINS: |
Rafael Espindola | f30f2cc | 2013-05-27 22:34:59 +0000 | [diff] [blame] | 166 | LowerDextDins(TmpInst); |
Jack Carter | aa7aeaa | 2012-10-02 23:09:40 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Jack Carter | 9770097 | 2013-08-13 20:19:16 +0000 | [diff] [blame] | 169 | unsigned long N = Fixups.size(); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 170 | uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 171 | |
| 172 | // Check for unimplemented opcodes. |
Jack Carter | aa7aeaa | 2012-10-02 23:09:40 +0000 | [diff] [blame] | 173 | // Unfortunately in MIPS both NOP and SLL will come in with Binary == 0 |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 174 | // so we have to special check for them. |
Jack Carter | aa7aeaa | 2012-10-02 23:09:40 +0000 | [diff] [blame] | 175 | unsigned Opcode = TmpInst.getOpcode(); |
Jozef Kolek | c7e220f | 2014-11-29 13:29:24 +0000 | [diff] [blame] | 176 | if ((Opcode != Mips::NOP) && (Opcode != Mips::SLL) && |
| 177 | (Opcode != Mips::SLL_MM) && !Binary) |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 178 | llvm_unreachable("unimplemented opcode in EncodeInstruction()"); |
| 179 | |
Akira Hatanaka | be6a818 | 2013-04-19 19:03:11 +0000 | [diff] [blame] | 180 | if (STI.getFeatureBits() & Mips::FeatureMicroMips) { |
| 181 | int NewOpcode = Mips::Std2MicroMips (Opcode, Mips::Arch_micromips); |
| 182 | if (NewOpcode != -1) { |
Jack Carter | 9770097 | 2013-08-13 20:19:16 +0000 | [diff] [blame] | 183 | if (Fixups.size() > N) |
| 184 | Fixups.pop_back(); |
Akira Hatanaka | be6a818 | 2013-04-19 19:03:11 +0000 | [diff] [blame] | 185 | Opcode = NewOpcode; |
| 186 | TmpInst.setOpcode (NewOpcode); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 187 | Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); |
Akira Hatanaka | be6a818 | 2013-04-19 19:03:11 +0000 | [diff] [blame] | 188 | } |
| 189 | } |
| 190 | |
Jack Carter | aa7aeaa | 2012-10-02 23:09:40 +0000 | [diff] [blame] | 191 | const MCInstrDesc &Desc = MCII.get(TmpInst.getOpcode()); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 192 | |
Jack Carter | 5b5559d | 2012-10-03 21:58:54 +0000 | [diff] [blame] | 193 | // Get byte count of instruction |
| 194 | unsigned Size = Desc.getSize(); |
| 195 | if (!Size) |
| 196 | llvm_unreachable("Desc.getSize() returns 0"); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 197 | |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 198 | EmitInstruction(Binary, Size, STI, OS); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /// getBranchTargetOpValue - Return binary encoding of the branch |
| 202 | /// target operand. If the machine operand requires relocation, |
| 203 | /// record the relocation and return zero. |
| 204 | unsigned MipsMCCodeEmitter:: |
| 205 | getBranchTargetOpValue(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 206 | SmallVectorImpl<MCFixup> &Fixups, |
| 207 | const MCSubtargetInfo &STI) const { |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 208 | |
| 209 | const MCOperand &MO = MI.getOperand(OpNo); |
Jack Carter | 71e6a74 | 2012-09-06 00:43:26 +0000 | [diff] [blame] | 210 | |
Jack Carter | 4f69a0f | 2013-03-22 00:29:10 +0000 | [diff] [blame] | 211 | // If the destination is an immediate, divide by 4. |
| 212 | if (MO.isImm()) return MO.getImm() >> 2; |
| 213 | |
Jack Carter | 71e6a74 | 2012-09-06 00:43:26 +0000 | [diff] [blame] | 214 | assert(MO.isExpr() && |
| 215 | "getBranchTargetOpValue expects only expressions or immediates"); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 216 | |
| 217 | const MCExpr *Expr = MO.getExpr(); |
| 218 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 219 | MCFixupKind(Mips::fixup_Mips_PC16))); |
| 220 | return 0; |
| 221 | } |
| 222 | |
Zoran Jovanovic | 8a80aa7 | 2013-11-04 14:53:22 +0000 | [diff] [blame] | 223 | /// getBranchTargetOpValue - Return binary encoding of the microMIPS branch |
| 224 | /// target operand. If the machine operand requires relocation, |
| 225 | /// record the relocation and return zero. |
| 226 | unsigned MipsMCCodeEmitter:: |
| 227 | getBranchTargetOpValueMM(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 228 | SmallVectorImpl<MCFixup> &Fixups, |
| 229 | const MCSubtargetInfo &STI) const { |
Zoran Jovanovic | 8a80aa7 | 2013-11-04 14:53:22 +0000 | [diff] [blame] | 230 | |
| 231 | const MCOperand &MO = MI.getOperand(OpNo); |
| 232 | |
| 233 | // If the destination is an immediate, divide by 2. |
| 234 | if (MO.isImm()) return MO.getImm() >> 1; |
| 235 | |
| 236 | assert(MO.isExpr() && |
| 237 | "getBranchTargetOpValueMM expects only expressions or immediates"); |
| 238 | |
| 239 | const MCExpr *Expr = MO.getExpr(); |
| 240 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 241 | MCFixupKind(Mips:: |
| 242 | fixup_MICROMIPS_PC16_S1))); |
| 243 | return 0; |
| 244 | } |
| 245 | |
Zoran Jovanovic | 3c8869d | 2014-05-16 11:03:45 +0000 | [diff] [blame] | 246 | /// getBranchTarget21OpValue - Return binary encoding of the branch |
| 247 | /// target operand. If the machine operand requires relocation, |
| 248 | /// record the relocation and return zero. |
| 249 | unsigned MipsMCCodeEmitter:: |
| 250 | getBranchTarget21OpValue(const MCInst &MI, unsigned OpNo, |
| 251 | SmallVectorImpl<MCFixup> &Fixups, |
| 252 | const MCSubtargetInfo &STI) const { |
| 253 | |
| 254 | const MCOperand &MO = MI.getOperand(OpNo); |
| 255 | |
| 256 | // If the destination is an immediate, divide by 4. |
| 257 | if (MO.isImm()) return MO.getImm() >> 2; |
| 258 | |
| 259 | assert(MO.isExpr() && |
| 260 | "getBranchTarget21OpValue expects only expressions or immediates"); |
| 261 | |
Zoran Jovanovic | 10e06da | 2014-05-27 12:55:40 +0000 | [diff] [blame] | 262 | const MCExpr *Expr = MO.getExpr(); |
| 263 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 264 | MCFixupKind(Mips::fixup_MIPS_PC21_S2))); |
Zoran Jovanovic | 3c8869d | 2014-05-16 11:03:45 +0000 | [diff] [blame] | 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | /// getBranchTarget26OpValue - Return binary encoding of the branch |
| 269 | /// target operand. If the machine operand requires relocation, |
| 270 | /// record the relocation and return zero. |
| 271 | unsigned MipsMCCodeEmitter:: |
| 272 | getBranchTarget26OpValue(const MCInst &MI, unsigned OpNo, |
| 273 | SmallVectorImpl<MCFixup> &Fixups, |
| 274 | const MCSubtargetInfo &STI) const { |
| 275 | |
| 276 | const MCOperand &MO = MI.getOperand(OpNo); |
| 277 | |
| 278 | // If the destination is an immediate, divide by 4. |
| 279 | if (MO.isImm()) return MO.getImm() >> 2; |
| 280 | |
| 281 | assert(MO.isExpr() && |
| 282 | "getBranchTarget26OpValue expects only expressions or immediates"); |
| 283 | |
Zoran Jovanovic | 10e06da | 2014-05-27 12:55:40 +0000 | [diff] [blame] | 284 | const MCExpr *Expr = MO.getExpr(); |
| 285 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 286 | MCFixupKind(Mips::fixup_MIPS_PC26_S2))); |
Zoran Jovanovic | 3c8869d | 2014-05-16 11:03:45 +0000 | [diff] [blame] | 287 | return 0; |
| 288 | } |
| 289 | |
Zoran Jovanovic | 52c56b9 | 2014-05-16 13:19:46 +0000 | [diff] [blame] | 290 | /// getJumpOffset16OpValue - Return binary encoding of the jump |
| 291 | /// target operand. If the machine operand requires relocation, |
| 292 | /// record the relocation and return zero. |
| 293 | unsigned MipsMCCodeEmitter:: |
| 294 | getJumpOffset16OpValue(const MCInst &MI, unsigned OpNo, |
| 295 | SmallVectorImpl<MCFixup> &Fixups, |
| 296 | const MCSubtargetInfo &STI) const { |
| 297 | |
| 298 | const MCOperand &MO = MI.getOperand(OpNo); |
| 299 | |
| 300 | if (MO.isImm()) return MO.getImm(); |
| 301 | |
| 302 | assert(MO.isExpr() && |
| 303 | "getJumpOffset16OpValue expects only expressions or an immediate"); |
| 304 | |
| 305 | // TODO: Push fixup. |
| 306 | return 0; |
| 307 | } |
| 308 | |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 309 | /// getJumpTargetOpValue - Return binary encoding of the jump |
| 310 | /// target operand. If the machine operand requires relocation, |
| 311 | /// record the relocation and return zero. |
| 312 | unsigned MipsMCCodeEmitter:: |
| 313 | getJumpTargetOpValue(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 314 | SmallVectorImpl<MCFixup> &Fixups, |
| 315 | const MCSubtargetInfo &STI) const { |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 316 | |
| 317 | const MCOperand &MO = MI.getOperand(OpNo); |
Jack Carter | 4f69a0f | 2013-03-22 00:29:10 +0000 | [diff] [blame] | 318 | // If the destination is an immediate, divide by 4. |
| 319 | if (MO.isImm()) return MO.getImm()>>2; |
| 320 | |
Jack Carter | 71e6a74 | 2012-09-06 00:43:26 +0000 | [diff] [blame] | 321 | assert(MO.isExpr() && |
| 322 | "getJumpTargetOpValue expects only expressions or an immediate"); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 323 | |
| 324 | const MCExpr *Expr = MO.getExpr(); |
| 325 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 326 | MCFixupKind(Mips::fixup_Mips_26))); |
| 327 | return 0; |
| 328 | } |
| 329 | |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 330 | unsigned MipsMCCodeEmitter:: |
Zoran Jovanovic | 507e084 | 2013-10-29 16:38:59 +0000 | [diff] [blame] | 331 | getJumpTargetOpValueMM(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 332 | SmallVectorImpl<MCFixup> &Fixups, |
| 333 | const MCSubtargetInfo &STI) const { |
Zoran Jovanovic | 507e084 | 2013-10-29 16:38:59 +0000 | [diff] [blame] | 334 | |
| 335 | const MCOperand &MO = MI.getOperand(OpNo); |
| 336 | // If the destination is an immediate, divide by 2. |
| 337 | if (MO.isImm()) return MO.getImm() >> 1; |
| 338 | |
| 339 | assert(MO.isExpr() && |
| 340 | "getJumpTargetOpValueMM expects only expressions or an immediate"); |
| 341 | |
| 342 | const MCExpr *Expr = MO.getExpr(); |
| 343 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 344 | MCFixupKind(Mips::fixup_MICROMIPS_26_S1))); |
| 345 | return 0; |
| 346 | } |
| 347 | |
| 348 | unsigned MipsMCCodeEmitter:: |
Zoran Jovanovic | c74e3eb9 | 2014-09-12 14:29:54 +0000 | [diff] [blame] | 349 | getUImm5Lsl2Encoding(const MCInst &MI, unsigned OpNo, |
| 350 | SmallVectorImpl<MCFixup> &Fixups, |
| 351 | const MCSubtargetInfo &STI) const { |
| 352 | |
| 353 | const MCOperand &MO = MI.getOperand(OpNo); |
| 354 | if (MO.isImm()) { |
| 355 | // The immediate is encoded as 'immediate << 2'. |
| 356 | unsigned Res = getMachineOpValue(MI, MO, Fixups, STI); |
| 357 | assert((Res & 3) == 0); |
| 358 | return Res >> 2; |
| 359 | } |
| 360 | |
| 361 | assert(MO.isExpr() && |
| 362 | "getUImm5Lsl2Encoding expects only expressions or an immediate"); |
| 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | unsigned MipsMCCodeEmitter:: |
Zoran Jovanovic | bac3619 | 2014-10-23 11:06:34 +0000 | [diff] [blame] | 368 | getSImm3Lsa2Value(const MCInst &MI, unsigned OpNo, |
| 369 | SmallVectorImpl<MCFixup> &Fixups, |
| 370 | const MCSubtargetInfo &STI) const { |
| 371 | |
| 372 | const MCOperand &MO = MI.getOperand(OpNo); |
| 373 | if (MO.isImm()) { |
| 374 | int Value = MO.getImm(); |
| 375 | return Value >> 2; |
| 376 | } |
| 377 | |
| 378 | return 0; |
| 379 | } |
| 380 | |
| 381 | unsigned MipsMCCodeEmitter:: |
Zoran Jovanovic | 42b8444 | 2014-10-23 11:13:59 +0000 | [diff] [blame] | 382 | getUImm6Lsl2Encoding(const MCInst &MI, unsigned OpNo, |
| 383 | SmallVectorImpl<MCFixup> &Fixups, |
| 384 | const MCSubtargetInfo &STI) const { |
| 385 | |
| 386 | const MCOperand &MO = MI.getOperand(OpNo); |
| 387 | if (MO.isImm()) { |
| 388 | unsigned Value = MO.getImm(); |
| 389 | return Value >> 2; |
| 390 | } |
| 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
| 395 | unsigned MipsMCCodeEmitter:: |
Zoran Jovanovic | 98bd58c | 2014-10-10 14:37:30 +0000 | [diff] [blame] | 396 | getSImm9AddiuspValue(const MCInst &MI, unsigned OpNo, |
| 397 | SmallVectorImpl<MCFixup> &Fixups, |
| 398 | const MCSubtargetInfo &STI) const { |
| 399 | |
| 400 | const MCOperand &MO = MI.getOperand(OpNo); |
| 401 | if (MO.isImm()) { |
| 402 | unsigned Binary = (MO.getImm() >> 2) & 0x0000ffff; |
| 403 | return (((Binary & 0x8000) >> 7) | (Binary & 0x00ff)); |
| 404 | } |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | unsigned MipsMCCodeEmitter:: |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 410 | getExprOpValue(const MCExpr *Expr,SmallVectorImpl<MCFixup> &Fixups, |
| 411 | const MCSubtargetInfo &STI) const { |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 412 | int64_t Res; |
Akira Hatanaka | 049e9e4 | 2011-11-23 22:19:28 +0000 | [diff] [blame] | 413 | |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 414 | if (Expr->EvaluateAsAbsolute(Res)) |
| 415 | return Res; |
Akira Hatanaka | 049e9e4 | 2011-11-23 22:19:28 +0000 | [diff] [blame] | 416 | |
Akira Hatanaka | fe384a2 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 417 | MCExpr::ExprKind Kind = Expr->getKind(); |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 418 | if (Kind == MCExpr::Constant) { |
| 419 | return cast<MCConstantExpr>(Expr)->getValue(); |
| 420 | } |
Akira Hatanaka | e2eed96 | 2011-12-22 01:05:17 +0000 | [diff] [blame] | 421 | |
Akira Hatanaka | fe384a2 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 422 | if (Kind == MCExpr::Binary) { |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 423 | unsigned Res = getExprOpValue(cast<MCBinaryExpr>(Expr)->getLHS(), Fixups, STI); |
| 424 | Res += getExprOpValue(cast<MCBinaryExpr>(Expr)->getRHS(), Fixups, STI); |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 425 | return Res; |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 426 | } |
Petar Jovanovic | a5da588 | 2014-02-04 18:41:57 +0000 | [diff] [blame] | 427 | |
| 428 | if (Kind == MCExpr::Target) { |
| 429 | const MipsMCExpr *MipsExpr = cast<MipsMCExpr>(Expr); |
| 430 | |
| 431 | Mips::Fixups FixupKind = Mips::Fixups(0); |
| 432 | switch (MipsExpr->getKind()) { |
| 433 | default: llvm_unreachable("Unsupported fixup kind for target expression!"); |
Sasa Stankovic | 06c4780 | 2014-04-03 10:37:45 +0000 | [diff] [blame] | 434 | case MipsMCExpr::VK_Mips_HIGHEST: |
| 435 | FixupKind = Mips::fixup_Mips_HIGHEST; |
| 436 | break; |
| 437 | case MipsMCExpr::VK_Mips_HIGHER: |
| 438 | FixupKind = Mips::fixup_Mips_HIGHER; |
| 439 | break; |
| 440 | case MipsMCExpr::VK_Mips_HI: |
Petar Jovanovic | a5da588 | 2014-02-04 18:41:57 +0000 | [diff] [blame] | 441 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_HI16 |
| 442 | : Mips::fixup_Mips_HI16; |
| 443 | break; |
Sasa Stankovic | 06c4780 | 2014-04-03 10:37:45 +0000 | [diff] [blame] | 444 | case MipsMCExpr::VK_Mips_LO: |
Petar Jovanovic | a5da588 | 2014-02-04 18:41:57 +0000 | [diff] [blame] | 445 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_LO16 |
| 446 | : Mips::fixup_Mips_LO16; |
| 447 | break; |
| 448 | } |
| 449 | Fixups.push_back(MCFixup::Create(0, MipsExpr, MCFixupKind(FixupKind))); |
| 450 | return 0; |
| 451 | } |
| 452 | |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 453 | if (Kind == MCExpr::SymbolRef) { |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 454 | Mips::Fixups FixupKind = Mips::Fixups(0); |
Akira Hatanaka | fe384a2 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 455 | |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 456 | switch(cast<MCSymbolRefExpr>(Expr)->getKind()) { |
| 457 | default: llvm_unreachable("Unknown fixup kind!"); |
| 458 | break; |
| 459 | case MCSymbolRefExpr::VK_Mips_GPOFF_HI : |
| 460 | FixupKind = Mips::fixup_Mips_GPOFF_HI; |
| 461 | break; |
| 462 | case MCSymbolRefExpr::VK_Mips_GPOFF_LO : |
| 463 | FixupKind = Mips::fixup_Mips_GPOFF_LO; |
| 464 | break; |
| 465 | case MCSymbolRefExpr::VK_Mips_GOT_PAGE : |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 466 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT_PAGE |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 467 | : Mips::fixup_Mips_GOT_PAGE; |
| 468 | break; |
| 469 | case MCSymbolRefExpr::VK_Mips_GOT_OFST : |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 470 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT_OFST |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 471 | : Mips::fixup_Mips_GOT_OFST; |
| 472 | break; |
| 473 | case MCSymbolRefExpr::VK_Mips_GOT_DISP : |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 474 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT_DISP |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 475 | : Mips::fixup_Mips_GOT_DISP; |
| 476 | break; |
| 477 | case MCSymbolRefExpr::VK_Mips_GPREL: |
| 478 | FixupKind = Mips::fixup_Mips_GPREL16; |
| 479 | break; |
| 480 | case MCSymbolRefExpr::VK_Mips_GOT_CALL: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 481 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_CALL16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 482 | : Mips::fixup_Mips_CALL16; |
| 483 | break; |
| 484 | case MCSymbolRefExpr::VK_Mips_GOT16: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 485 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 486 | : Mips::fixup_Mips_GOT_Global; |
| 487 | break; |
| 488 | case MCSymbolRefExpr::VK_Mips_GOT: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 489 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 490 | : Mips::fixup_Mips_GOT_Local; |
| 491 | break; |
| 492 | case MCSymbolRefExpr::VK_Mips_ABS_HI: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 493 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_HI16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 494 | : Mips::fixup_Mips_HI16; |
| 495 | break; |
| 496 | case MCSymbolRefExpr::VK_Mips_ABS_LO: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 497 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_LO16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 498 | : Mips::fixup_Mips_LO16; |
| 499 | break; |
| 500 | case MCSymbolRefExpr::VK_Mips_TLSGD: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 501 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_GD |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 502 | : Mips::fixup_Mips_TLSGD; |
| 503 | break; |
| 504 | case MCSymbolRefExpr::VK_Mips_TLSLDM: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 505 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_LDM |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 506 | : Mips::fixup_Mips_TLSLDM; |
| 507 | break; |
| 508 | case MCSymbolRefExpr::VK_Mips_DTPREL_HI: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 509 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_DTPREL_HI16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 510 | : Mips::fixup_Mips_DTPREL_HI; |
| 511 | break; |
| 512 | case MCSymbolRefExpr::VK_Mips_DTPREL_LO: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 513 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_DTPREL_LO16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 514 | : Mips::fixup_Mips_DTPREL_LO; |
| 515 | break; |
| 516 | case MCSymbolRefExpr::VK_Mips_GOTTPREL: |
| 517 | FixupKind = Mips::fixup_Mips_GOTTPREL; |
| 518 | break; |
| 519 | case MCSymbolRefExpr::VK_Mips_TPREL_HI: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 520 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_TPREL_HI16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 521 | : Mips::fixup_Mips_TPREL_HI; |
| 522 | break; |
| 523 | case MCSymbolRefExpr::VK_Mips_TPREL_LO: |
David Woodhouse | d2cca11 | 2014-01-28 23:13:25 +0000 | [diff] [blame] | 524 | FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_TPREL_LO16 |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 525 | : Mips::fixup_Mips_TPREL_LO; |
| 526 | break; |
| 527 | case MCSymbolRefExpr::VK_Mips_HIGHER: |
| 528 | FixupKind = Mips::fixup_Mips_HIGHER; |
| 529 | break; |
| 530 | case MCSymbolRefExpr::VK_Mips_HIGHEST: |
| 531 | FixupKind = Mips::fixup_Mips_HIGHEST; |
| 532 | break; |
| 533 | case MCSymbolRefExpr::VK_Mips_GOT_HI16: |
| 534 | FixupKind = Mips::fixup_Mips_GOT_HI16; |
| 535 | break; |
| 536 | case MCSymbolRefExpr::VK_Mips_GOT_LO16: |
| 537 | FixupKind = Mips::fixup_Mips_GOT_LO16; |
| 538 | break; |
| 539 | case MCSymbolRefExpr::VK_Mips_CALL_HI16: |
| 540 | FixupKind = Mips::fixup_Mips_CALL_HI16; |
| 541 | break; |
| 542 | case MCSymbolRefExpr::VK_Mips_CALL_LO16: |
| 543 | FixupKind = Mips::fixup_Mips_CALL_LO16; |
| 544 | break; |
Zoran Jovanovic | b355e8f | 2014-05-27 14:58:51 +0000 | [diff] [blame] | 545 | case MCSymbolRefExpr::VK_Mips_PCREL_HI16: |
| 546 | FixupKind = Mips::fixup_MIPS_PCHI16; |
| 547 | break; |
| 548 | case MCSymbolRefExpr::VK_Mips_PCREL_LO16: |
| 549 | FixupKind = Mips::fixup_MIPS_PCLO16; |
| 550 | break; |
Mark Seaborn | c3bd177 | 2013-12-31 13:05:15 +0000 | [diff] [blame] | 551 | } // switch |
Akira Hatanaka | fe384a2 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 552 | |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 553 | Fixups.push_back(MCFixup::Create(0, Expr, MCFixupKind(FixupKind))); |
| 554 | return 0; |
| 555 | } |
Akira Hatanaka | fe384a2 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 556 | return 0; |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 559 | /// getMachineOpValue - Return binary encoding of operand. If the machine |
| 560 | /// operand requires relocation, record the relocation and return zero. |
| 561 | unsigned MipsMCCodeEmitter:: |
| 562 | getMachineOpValue(const MCInst &MI, const MCOperand &MO, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 563 | SmallVectorImpl<MCFixup> &Fixups, |
| 564 | const MCSubtargetInfo &STI) const { |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 565 | if (MO.isReg()) { |
| 566 | unsigned Reg = MO.getReg(); |
Bill Wendling | bc07a89 | 2013-06-18 07:20:20 +0000 | [diff] [blame] | 567 | unsigned RegNo = Ctx.getRegisterInfo()->getEncodingValue(Reg); |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 568 | return RegNo; |
| 569 | } else if (MO.isImm()) { |
| 570 | return static_cast<unsigned>(MO.getImm()); |
| 571 | } else if (MO.isFPImm()) { |
| 572 | return static_cast<unsigned>(APFloat(MO.getFPImm()) |
| 573 | .bitcastToAPInt().getHiBits(32).getLimitedValue()); |
| 574 | } |
| 575 | // MO must be an Expr. |
| 576 | assert(MO.isExpr()); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 577 | return getExprOpValue(MO.getExpr(),Fixups, STI); |
Jack Carter | b5cf590 | 2013-04-17 00:18:04 +0000 | [diff] [blame] | 578 | } |
| 579 | |
Matheus Almeida | 6b59c44 | 2013-12-05 11:06:22 +0000 | [diff] [blame] | 580 | /// getMSAMemEncoding - Return binary encoding of memory operand for LD/ST |
| 581 | /// instructions. |
| 582 | unsigned |
| 583 | MipsMCCodeEmitter::getMSAMemEncoding(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 584 | SmallVectorImpl<MCFixup> &Fixups, |
| 585 | const MCSubtargetInfo &STI) const { |
Matheus Almeida | 6b59c44 | 2013-12-05 11:06:22 +0000 | [diff] [blame] | 586 | // Base register is encoded in bits 20-16, offset is encoded in bits 15-0. |
| 587 | assert(MI.getOperand(OpNo).isReg()); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 588 | unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups, STI) << 16; |
| 589 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); |
Matheus Almeida | 6b59c44 | 2013-12-05 11:06:22 +0000 | [diff] [blame] | 590 | |
| 591 | // The immediate field of an LD/ST instruction is scaled which means it must |
| 592 | // be divided (when encoding) by the size (in bytes) of the instructions' |
| 593 | // data format. |
| 594 | // .b - 1 byte |
| 595 | // .h - 2 bytes |
| 596 | // .w - 4 bytes |
| 597 | // .d - 8 bytes |
| 598 | switch(MI.getOpcode()) |
| 599 | { |
| 600 | default: |
| 601 | assert (0 && "Unexpected instruction"); |
| 602 | break; |
| 603 | case Mips::LD_B: |
| 604 | case Mips::ST_B: |
| 605 | // We don't need to scale the offset in this case |
| 606 | break; |
| 607 | case Mips::LD_H: |
| 608 | case Mips::ST_H: |
| 609 | OffBits >>= 1; |
| 610 | break; |
| 611 | case Mips::LD_W: |
| 612 | case Mips::ST_W: |
| 613 | OffBits >>= 2; |
| 614 | break; |
| 615 | case Mips::LD_D: |
| 616 | case Mips::ST_D: |
| 617 | OffBits >>= 3; |
| 618 | break; |
| 619 | } |
| 620 | |
| 621 | return (OffBits & 0xFFFF) | RegBits; |
| 622 | } |
| 623 | |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 624 | /// getMemEncoding - Return binary encoding of memory related operand. |
| 625 | /// If the offset operand requires relocation, record the relocation. |
| 626 | unsigned |
| 627 | MipsMCCodeEmitter::getMemEncoding(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 628 | SmallVectorImpl<MCFixup> &Fixups, |
| 629 | const MCSubtargetInfo &STI) const { |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 630 | // Base register is encoded in bits 20-16, offset is encoded in bits 15-0. |
| 631 | assert(MI.getOperand(OpNo).isReg()); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 632 | unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups, STI) << 16; |
| 633 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 634 | |
| 635 | return (OffBits & 0xFFFF) | RegBits; |
| 636 | } |
| 637 | |
Jack Carter | 9770097 | 2013-08-13 20:19:16 +0000 | [diff] [blame] | 638 | unsigned MipsMCCodeEmitter:: |
Jozef Kolek | e8c9d1e | 2014-11-24 14:39:13 +0000 | [diff] [blame] | 639 | getMemEncodingMMImm4(const MCInst &MI, unsigned OpNo, |
| 640 | SmallVectorImpl<MCFixup> &Fixups, |
| 641 | const MCSubtargetInfo &STI) const { |
| 642 | // Base register is encoded in bits 6-4, offset is encoded in bits 3-0. |
| 643 | assert(MI.getOperand(OpNo).isReg()); |
| 644 | unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), |
| 645 | Fixups, STI) << 4; |
| 646 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), |
| 647 | Fixups, STI); |
| 648 | |
| 649 | return (OffBits & 0xF) | RegBits; |
| 650 | } |
| 651 | |
| 652 | unsigned MipsMCCodeEmitter:: |
| 653 | getMemEncodingMMImm4Lsl1(const MCInst &MI, unsigned OpNo, |
| 654 | SmallVectorImpl<MCFixup> &Fixups, |
| 655 | const MCSubtargetInfo &STI) const { |
| 656 | // Base register is encoded in bits 6-4, offset is encoded in bits 3-0. |
| 657 | assert(MI.getOperand(OpNo).isReg()); |
| 658 | unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), |
| 659 | Fixups, STI) << 4; |
| 660 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), |
| 661 | Fixups, STI) >> 1; |
| 662 | |
| 663 | return (OffBits & 0xF) | RegBits; |
| 664 | } |
| 665 | |
| 666 | unsigned MipsMCCodeEmitter:: |
| 667 | getMemEncodingMMImm4Lsl2(const MCInst &MI, unsigned OpNo, |
| 668 | SmallVectorImpl<MCFixup> &Fixups, |
| 669 | const MCSubtargetInfo &STI) const { |
| 670 | // Base register is encoded in bits 6-4, offset is encoded in bits 3-0. |
| 671 | assert(MI.getOperand(OpNo).isReg()); |
| 672 | unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), |
| 673 | Fixups, STI) << 4; |
| 674 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), |
| 675 | Fixups, STI) >> 2; |
| 676 | |
| 677 | return (OffBits & 0xF) | RegBits; |
| 678 | } |
| 679 | |
| 680 | unsigned MipsMCCodeEmitter:: |
Jack Carter | 9770097 | 2013-08-13 20:19:16 +0000 | [diff] [blame] | 681 | getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 682 | SmallVectorImpl<MCFixup> &Fixups, |
| 683 | const MCSubtargetInfo &STI) const { |
Zoran Jovanovic | a4c4b5f | 2014-11-19 16:44:02 +0000 | [diff] [blame] | 684 | // opNum can be invalid if instruction had reglist as operand. |
| 685 | // MemOperand is always last operand of instruction (base + offset). |
| 686 | switch (MI.getOpcode()) { |
| 687 | default: |
| 688 | break; |
| 689 | case Mips::SWM32_MM: |
| 690 | case Mips::LWM32_MM: |
| 691 | OpNo = MI.getNumOperands() - 2; |
| 692 | break; |
| 693 | } |
| 694 | |
Jack Carter | 9770097 | 2013-08-13 20:19:16 +0000 | [diff] [blame] | 695 | // Base register is encoded in bits 20-16, offset is encoded in bits 11-0. |
| 696 | assert(MI.getOperand(OpNo).isReg()); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 697 | unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) << 16; |
| 698 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); |
Jack Carter | 9770097 | 2013-08-13 20:19:16 +0000 | [diff] [blame] | 699 | |
| 700 | return (OffBits & 0x0FFF) | RegBits; |
| 701 | } |
| 702 | |
Zoran Jovanovic | f9a0250 | 2014-11-27 18:28:59 +0000 | [diff] [blame] | 703 | unsigned MipsMCCodeEmitter:: |
| 704 | getMemEncodingMMImm4sp(const MCInst &MI, unsigned OpNo, |
| 705 | SmallVectorImpl<MCFixup> &Fixups, |
| 706 | const MCSubtargetInfo &STI) const { |
| 707 | // opNum can be invalid if instruction had reglist as operand |
| 708 | // MemOperand is always last operand of instruction (base + offset) |
| 709 | switch (MI.getOpcode()) { |
| 710 | default: |
| 711 | break; |
| 712 | case Mips::SWM16_MM: |
| 713 | case Mips::LWM16_MM: |
| 714 | OpNo = MI.getNumOperands() - 2; |
| 715 | break; |
| 716 | } |
| 717 | |
| 718 | // Offset is encoded in bits 4-0. |
| 719 | assert(MI.getOperand(OpNo).isReg()); |
| 720 | // Base register is always SP - thus it is not encoded. |
| 721 | assert(MI.getOperand(OpNo+1).isImm()); |
| 722 | unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); |
| 723 | |
| 724 | return ((OffBits >> 2) & 0x0F); |
| 725 | } |
| 726 | |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 727 | unsigned |
| 728 | MipsMCCodeEmitter::getSizeExtEncoding(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 729 | SmallVectorImpl<MCFixup> &Fixups, |
| 730 | const MCSubtargetInfo &STI) const { |
Akira Hatanaka | 049e9e4 | 2011-11-23 22:19:28 +0000 | [diff] [blame] | 731 | assert(MI.getOperand(OpNo).isImm()); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 732 | unsigned SizeEncoding = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); |
Bruno Cardoso Lopes | 56b70de | 2011-12-07 22:35:30 +0000 | [diff] [blame] | 733 | return SizeEncoding - 1; |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 734 | } |
| 735 | |
Akira Hatanaka | 049e9e4 | 2011-11-23 22:19:28 +0000 | [diff] [blame] | 736 | // FIXME: should be called getMSBEncoding |
| 737 | // |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 738 | unsigned |
| 739 | MipsMCCodeEmitter::getSizeInsEncoding(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 740 | SmallVectorImpl<MCFixup> &Fixups, |
| 741 | const MCSubtargetInfo &STI) const { |
Akira Hatanaka | 049e9e4 | 2011-11-23 22:19:28 +0000 | [diff] [blame] | 742 | assert(MI.getOperand(OpNo-1).isImm()); |
| 743 | assert(MI.getOperand(OpNo).isImm()); |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 744 | unsigned Position = getMachineOpValue(MI, MI.getOperand(OpNo-1), Fixups, STI); |
| 745 | unsigned Size = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); |
Akira Hatanaka | 049e9e4 | 2011-11-23 22:19:28 +0000 | [diff] [blame] | 746 | |
Bruno Cardoso Lopes | 56b70de | 2011-12-07 22:35:30 +0000 | [diff] [blame] | 747 | return Position + Size - 1; |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 748 | } |
| 749 | |
Matheus Almeida | 779c593 | 2013-11-18 12:32:49 +0000 | [diff] [blame] | 750 | unsigned |
| 751 | MipsMCCodeEmitter::getLSAImmEncoding(const MCInst &MI, unsigned OpNo, |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 752 | SmallVectorImpl<MCFixup> &Fixups, |
| 753 | const MCSubtargetInfo &STI) const { |
Matheus Almeida | 779c593 | 2013-11-18 12:32:49 +0000 | [diff] [blame] | 754 | assert(MI.getOperand(OpNo).isImm()); |
| 755 | // The immediate is encoded as 'immediate - 1'. |
David Woodhouse | 3fa98a6 | 2014-01-28 23:13:18 +0000 | [diff] [blame] | 756 | return getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) - 1; |
Matheus Almeida | 779c593 | 2013-11-18 12:32:49 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Daniel Sanders | b59e1a4 | 2014-05-15 10:45:58 +0000 | [diff] [blame] | 759 | unsigned |
| 760 | MipsMCCodeEmitter::getSimm19Lsl2Encoding(const MCInst &MI, unsigned OpNo, |
| 761 | SmallVectorImpl<MCFixup> &Fixups, |
| 762 | const MCSubtargetInfo &STI) const { |
Zoran Jovanovic | b9c07f3 | 2014-06-12 12:40:00 +0000 | [diff] [blame] | 763 | const MCOperand &MO = MI.getOperand(OpNo); |
| 764 | if (MO.isImm()) { |
| 765 | // The immediate is encoded as 'immediate << 2'. |
| 766 | unsigned Res = getMachineOpValue(MI, MO, Fixups, STI); |
| 767 | assert((Res & 3) == 0); |
| 768 | return Res >> 2; |
| 769 | } |
| 770 | |
| 771 | assert(MO.isExpr() && |
| 772 | "getSimm19Lsl2Encoding expects only expressions or an immediate"); |
| 773 | |
| 774 | const MCExpr *Expr = MO.getExpr(); |
| 775 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 776 | MCFixupKind(Mips::fixup_MIPS_PC19_S2))); |
| 777 | return 0; |
Daniel Sanders | b59e1a4 | 2014-05-15 10:45:58 +0000 | [diff] [blame] | 778 | } |
Bruno Cardoso Lopes | c85e3ff | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 779 | |
Zoran Jovanovic | 2855142 | 2014-06-09 09:49:51 +0000 | [diff] [blame] | 780 | unsigned |
| 781 | MipsMCCodeEmitter::getSimm18Lsl3Encoding(const MCInst &MI, unsigned OpNo, |
| 782 | SmallVectorImpl<MCFixup> &Fixups, |
| 783 | const MCSubtargetInfo &STI) const { |
Zoran Jovanovic | a5acdcf | 2014-06-13 14:26:47 +0000 | [diff] [blame] | 784 | const MCOperand &MO = MI.getOperand(OpNo); |
| 785 | if (MO.isImm()) { |
| 786 | // The immediate is encoded as 'immediate << 3'. |
| 787 | unsigned Res = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); |
| 788 | assert((Res & 7) == 0); |
| 789 | return Res >> 3; |
| 790 | } |
| 791 | |
| 792 | assert(MO.isExpr() && |
| 793 | "getSimm18Lsl2Encoding expects only expressions or an immediate"); |
| 794 | |
| 795 | const MCExpr *Expr = MO.getExpr(); |
| 796 | Fixups.push_back(MCFixup::Create(0, Expr, |
| 797 | MCFixupKind(Mips::fixup_MIPS_PC18_S3))); |
| 798 | return 0; |
Zoran Jovanovic | 2855142 | 2014-06-09 09:49:51 +0000 | [diff] [blame] | 799 | } |
| 800 | |
Zoran Jovanovic | 4a00fdc | 2014-10-23 10:42:01 +0000 | [diff] [blame] | 801 | unsigned |
| 802 | MipsMCCodeEmitter::getUImm3Mod8Encoding(const MCInst &MI, unsigned OpNo, |
| 803 | SmallVectorImpl<MCFixup> &Fixups, |
| 804 | const MCSubtargetInfo &STI) const { |
| 805 | assert(MI.getOperand(OpNo).isImm()); |
| 806 | const MCOperand &MO = MI.getOperand(OpNo); |
| 807 | return MO.getImm() % 8; |
| 808 | } |
| 809 | |
Zoran Jovanovic | 8853171 | 2014-11-05 17:31:00 +0000 | [diff] [blame] | 810 | unsigned |
| 811 | MipsMCCodeEmitter::getUImm4AndValue(const MCInst &MI, unsigned OpNo, |
| 812 | SmallVectorImpl<MCFixup> &Fixups, |
| 813 | const MCSubtargetInfo &STI) const { |
| 814 | assert(MI.getOperand(OpNo).isImm()); |
| 815 | const MCOperand &MO = MI.getOperand(OpNo); |
| 816 | unsigned Value = MO.getImm(); |
| 817 | switch (Value) { |
| 818 | case 128: return 0x0; |
| 819 | case 1: return 0x1; |
| 820 | case 2: return 0x2; |
| 821 | case 3: return 0x3; |
| 822 | case 4: return 0x4; |
| 823 | case 7: return 0x5; |
| 824 | case 8: return 0x6; |
| 825 | case 15: return 0x7; |
| 826 | case 16: return 0x8; |
| 827 | case 31: return 0x9; |
| 828 | case 32: return 0xa; |
| 829 | case 63: return 0xb; |
| 830 | case 64: return 0xc; |
| 831 | case 255: return 0xd; |
| 832 | case 32768: return 0xe; |
| 833 | case 65535: return 0xf; |
| 834 | } |
| 835 | llvm_unreachable("Unexpected value"); |
| 836 | } |
| 837 | |
Zoran Jovanovic | a4c4b5f | 2014-11-19 16:44:02 +0000 | [diff] [blame] | 838 | unsigned |
| 839 | MipsMCCodeEmitter::getRegisterListOpValue(const MCInst &MI, unsigned OpNo, |
| 840 | SmallVectorImpl<MCFixup> &Fixups, |
| 841 | const MCSubtargetInfo &STI) const { |
| 842 | unsigned res = 0; |
| 843 | |
| 844 | // Register list operand is always first operand of instruction and it is |
| 845 | // placed before memory operand (register + imm). |
| 846 | |
| 847 | for (unsigned I = OpNo, E = MI.getNumOperands() - 2; I < E; ++I) { |
| 848 | unsigned Reg = MI.getOperand(I).getReg(); |
| 849 | unsigned RegNo = Ctx.getRegisterInfo()->getEncodingValue(Reg); |
| 850 | if (RegNo != 31) |
| 851 | res++; |
| 852 | else |
| 853 | res |= 0x10; |
| 854 | } |
| 855 | return res; |
| 856 | } |
| 857 | |
Zoran Jovanovic | f9a0250 | 2014-11-27 18:28:59 +0000 | [diff] [blame] | 858 | unsigned |
| 859 | MipsMCCodeEmitter::getRegisterListOpValue16(const MCInst &MI, unsigned OpNo, |
| 860 | SmallVectorImpl<MCFixup> &Fixups, |
| 861 | const MCSubtargetInfo &STI) const { |
| 862 | return (MI.getNumOperands() - 4); |
| 863 | } |
| 864 | |
Daniel Sanders | b59e1a4 | 2014-05-15 10:45:58 +0000 | [diff] [blame] | 865 | #include "MipsGenMCCodeEmitter.inc" |