Searched refs:Rt (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.3-release/contrib/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp776 unsigned Rt = fieldFromInstruction(Insn, 0, 5); local
790 // Rn_wb, Rt, Rt2, Rn, Imm
795 if (L && Rt == Rt2)
800 if (Indexed && V == 0 && Rn != 31 && (Rt == Rn || Rt2 == Rn))
811 DecodeFPR32RegisterClass(Inst, Rt, Address, Decoder);
815 DecodeFPR64RegisterClass(Inst, Rt, Address, Decoder);
819 DecodeFPR128RegisterClass(Inst, Rt, Address, Decoder);
827 DecodeGPR32RegisterClass(Inst, Rt, Address, Decoder);
832 DecodeGPR64RegisterClass(Inst, Rt, Address, Decoder);
836 DecodeGPR64RegisterClass(Inst, Rt, Addres
859 unsigned Rt = fieldFromInstruction(Val, 0, 5); local
939 unsigned Rt = fieldFromInstruction(Insn, 0, 5); local
1033 unsigned Rt = fieldFromInstruction(Insn, 0, 5); local
1438 unsigned Rt = fieldFromInstruction(Insn, 0, 5); local
[all...]
/freebsd-10.3-release/contrib/ofed/management/infiniband-diags/scripts/
H A Dibprintca.pl118 if ($line =~ /^Switch.*/ || $line =~ /^Rt.*/) { $in_hca = "no"; }
H A Dibprintrt.pl103 if ($line =~ /^Rt.*\"R-(.*)\"\s+# (.*)/) {
H A Dibfindnodesusing.pl190 if ($line =~ /^Ca.*/ || $line =~ /^Rt.*/) { $in_switch = "no"; }
H A Dibidsverify.pl213 if ($line =~ /^Rt.*/) {
H A DIBswcountlimits.pm408 if ($line =~ /^Ca.*/ || $line =~ /^Rt.*/) { $in_switch = "no"; }
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1470 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
1478 // On stores, the writeback operand precedes Rt.
1495 if (!Check(S, DecodeGPRRegisterClass(Inst, Rt, Address, Decoder)))
1498 // On loads, the writeback operand comes after Rt.
1529 if (writeback && (Rn == 15 || Rn == Rt))
1618 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
1627 unsigned Rt2 = Rt + 1;
1631 // For {LD,ST}RD, Rt must be even, else undefined.
1639 if (Rt & 0x1) S = MCDisassembler::SoftFail;
1651 if (writeback && (Rn == 15 || Rn == Rt || R
3263 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
3335 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
3399 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
3464 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
3502 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
3650 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
3982 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4004 unsigned Rt = fieldFromInstruction(Insn, 0, 4); local
4029 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4054 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4082 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4107 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4681 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4707 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4754 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4791 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4849 unsigned Rt = fieldFromInstruction(Insn, 12, 4); local
4939 unsigned Rt = fieldFromInstruction(Val, 12, 4); local
4969 unsigned Rt = fieldFromInstruction(Val, 12, 4); local
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp2625 unsigned Rt = MI->getOperand(0).getReg(); local
2627 return (Rt == Rm) ? 4 : 3;
2632 unsigned Rt = MI->getOperand(0).getReg(); local
2634 if (Rt == Rm)
2662 unsigned Rt = MI->getOperand(0).getReg(); local
2666 if (Rt == Rm)
2675 unsigned Rt = MI->getOperand(0).getReg(); local
2677 return (Rt == Rm) ? 3 : 2;
2698 unsigned Rt = MI->getOperand(0).getReg(); local
2699 if (Rt
2713 unsigned Rt = MI->getOperand(0).getReg(); local
2737 unsigned Rt = MI->getOperand(0).getReg(); local
2746 unsigned Rt = MI->getOperand(0).getReg(); local
2782 unsigned Rt = MI->getOperand(0).getReg(); local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp395 uint32_t Rt; // the source register local
414 Rt = Bits32(opcode, 15, 12);
416 if (BadReg(Rt))
418 registers = (1u << Rt);
427 Rt = Bits32(opcode, 15, 12);
429 if (Rt == dwarf_sp)
431 registers = (1u << Rt);
518 uint32_t Rt; // the destination register local
540 Rt = Bits32(opcode, 15, 12);
542 if (Rt
1246 uint32_t Rt; // the destination register local
3905 uint32_t Rt; // the destination register local
5222 uint32_t Rt = ReadCoreReg (t, &success); local
9864 uint32_t Rt = ReadRegisterUnsigned (eRegisterKindDWARF, dwarf_r0 + t, 0, &success); local
9956 uint32_t Rt = ReadCoreReg (t, &success); local
10059 uint32_t Rt = ReadCoreReg (t, &success); local
10607 uint32_t Rt = ReadCoreReg (t, &success); local
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp5238 unsigned Rt = MRI->getEncodingValue(Reg1); local
5241 // Rt2 must be Rt + 1 and Rt must be even.
5242 if (Rt + 1 != Rt2 || (Rt & 1)) {
5368 // Rt can't be R14.
5371 "Rt can't be R14");
5373 const unsigned Rt = MRI->getEncodingValue(RtReg); local
5374 // Rt must be even-numbered.
5375 if ((Rt
5401 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg()); local
5410 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(0).getReg()); local
5420 unsigned Rt = MRI->getEncodingValue(Inst.getOperand(1).getReg()); local
[all...]

Completed in 127 milliseconds