Home
last modified time | relevance | path

Searched refs:CRn (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.cpp158 uint32_t Op0 = 0, Op1 = 0, CRn = 0, CRm = 0, Op2 = 0; in parseGenericRegister() local
162 Ops[3].getAsInteger(10, CRn); in parseGenericRegister()
165 Bits = (Op0 << 14) | (Op1 << 11) | (CRn << 7) | (CRm << 3) | Op2; in parseGenericRegister()
174 uint32_t CRn = (Bits >> 7) & 0xf; in genericRegisterString() local
178 return "S" + utostr(Op0) + "_" + utostr(Op1) + "_C" + utostr(CRn) + "_C" + in genericRegisterString()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SystemOperands.td586 // op1 CRn CRm op2
605 // op1 CRn CRm op2
830 // Op0 Op1 CRn CRm Op2
835 // Op0 Op1 CRn CRm Op2
842 // Op0 Op1 CRn CRm Op2
1401 // Op0 Op1 CRn CRm Op2
1443 // Op0 Op1 CRn CRm Op2
1466 // Op0 Op1 CRn CRm Op2
1497 // Op0 Op1 CRn CRm Op2
1513 // Op0 Op1 CRn CRm Op2
[all …]
H A DAArch64InstrFormats.td1779 // concatenation of op0, op1, CRn, CRm, op2. 16-bit immediate.
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Darm_acle.h771 #define __arm_cdp(coproc, opc1, CRd, CRn, CRm, opc2) \ argument
772 __builtin_arm_cdp(coproc, opc1, CRd, CRn, CRm, opc2)
778 #define __arm_mcr(coproc, opc1, value, CRn, CRm, opc2) \ argument
779 __builtin_arm_mcr(coproc, opc1, value, CRn, CRm, opc2)
780 #define __arm_mrc(coproc, opc1, CRn, CRm, opc2) \ argument
781 __builtin_arm_mrc(coproc, opc1, CRn, CRm, opc2)
789 #define __arm_cdp(coproc, opc1, CRd, CRn, CRm, opc2) \ argument
790 __builtin_arm_cdp(coproc, opc1, CRd, CRn, CRm, opc2)
799 __builtin_arm_cdp2(coproc, opc1, CRd, CRn, CRm, opc2)
805 __builtin_arm_mcr2(coproc, opc1, value, CRn, CRm, opc2)
[all …]
/freebsd/sys/arm64/include/
H A Dundefined.h55 MRS_GET(CRn)
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrInfo.td5400 bits<4> CRn;
5411 let Inst{19-16} = CRn;
5425 bits<4> CRn;
5436 let Inst{19-16} = CRn;
5632 bits<4> CRn;
5639 let Inst{19-16} = CRn;
5651 def : ARMInstAlias<"mcr${p} $cop, $opc1, $Rt, $CRn, $CRm",
5679 bits<4> CRn;
5686 let Inst{19-16} = CRn;
5698 def : ARMInstAlias<"mcr2 $cop, $opc1, $Rt, $CRn, $CRm",
[all …]
H A DARMInstrThumb2.td4622 bits<4> CRn;
4629 let Inst{19-16} = CRn;
4659 (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
4664 def : t2InstAlias<"mcr${p} $cop, $opc1, $Rt, $CRn, $CRm",
4674 def : t2InstAlias<"mcr2${p} $cop, $opc1, $Rt, $CRn, $CRm",
4682 def : t2InstAlias<"mrc${p} $cop, $opc1, $Rt, $CRn, $CRm",
4691 def : t2InstAlias<"mrc2${p} $cop, $opc1, $Rt, $CRn, $CRm",
4737 bits<4> CRn;
4748 let Inst{19-16} = CRn;
4763 bits<4> CRn;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp1970 unsigned CRn = fieldFromInstruction(insn, 12, 4); in DecodeSyspXzrInstruction() local
1978 Inst.addOperand(MCOperand::createImm(CRn)); in DecodeSyspXzrInstruction()