Searched refs:Rt2 (Results 1 - 4 of 4) sorted by relevance
/external/llvm/lib/Target/AArch64/Disassembler/ |
H A D | AArch64Disassembler.cpp | 594 unsigned Rt2 = fieldFromInstruction(Insn, 10, 5); local 606 // Rn_wb, Rt, Rt2, Rn, Imm 611 if (L && Rt == Rt2) 616 if (Indexed && V == 0 && Rn != 31 && (Rt == Rn || Rt2 == Rn)) 628 DecodeFPR32RegisterClass(Inst, Rt2, Address, Decoder); 632 DecodeFPR64RegisterClass(Inst, Rt2, Address, Decoder); 636 DecodeFPR128RegisterClass(Inst, Rt2, Address, Decoder); 644 DecodeGPR32RegisterClass(Inst, Rt2, Address, Decoder); 649 DecodeGPR64RegisterClass(Inst, Rt2, Address, Decoder); 653 DecodeGPR64RegisterClass(Inst, Rt2, Addres 677 unsigned Rt2 = fieldFromInstruction(Val, 10, 5); local [all...] |
/external/llvm/lib/Target/ARM/Disassembler/ |
H A D | ARMDisassembler.cpp | 1602 unsigned Rt2 = Rt + 1; local 1626 if (writeback && (Rn == 15 || Rn == Rt || Rn == Rt2)) 1630 if (Rt2 == 15) 1649 if (Rt2 == 15) 1655 if (!type && (Rt2 == 15 || Rm == 15 || Rm == Rt || Rm == Rt2)) 1659 if (writeback && (Rn == Rt || Rn == Rt2)) 4652 unsigned Rt2 = fieldFromInstruction(Insn, 16, 4); local 4657 if (Rt == 0xF || Rt2 == 0xF || Rm == 0x1F) 4666 if (!Check(S, DecodeGPRRegisterClass(Inst, Rt2 , Addres 4678 unsigned Rt2 = fieldFromInstruction(Insn, 16, 4); local 4725 unsigned Rt2 = fieldFromInstruction(Insn, 8, 4); local 4762 unsigned Rt2 = fieldFromInstruction(Insn, 8, 4); local 4820 unsigned Rt2 = fieldFromInstruction(Insn, 0, 4); local 4949 unsigned Rt2 = fieldFromInstruction(Val, 16, 4); local [all...] |
/external/llvm/test/MC/ARM/ |
H A D | diagnostics.s | 271 @ Out of order Rt/Rt2 operands for ldrexd/strexd 327 @ Out of order Rt/Rt2 operands for ldrd
|
/external/llvm/lib/Target/ARM/AsmParser/ |
H A D | ARMAsmParser.cpp | 5131 unsigned Rt2 = MRI->getEncodingValue(Reg2); local 5133 // Rt2 must be Rt + 1 and Rt must be even. 5134 if (Rt + 1 != Rt2 || (Rt & 1)) { 5258 // Rt2 must be Rt + 1. 5260 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg()); local 5261 if (Rt2 != Rt + 1) 5267 // Rt2 must be Rt + 1. 5269 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(1).getReg()); local 5270 if (Rt2 != Rt + 1) 5277 // Rt2 mus 5279 unsigned Rt2 = MRI->getEncodingValue(Inst.getOperand(2).getReg()); local [all...] |
Completed in 558 milliseconds