Home
last modified time | relevance | path

Searched refs:CRm (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Target/AArch64/Utils/
DAArch64BaseInfo.cpp804 uint32_t Op0 = 3, Op1 = 0, CRn = 0, CRm = 0, Op2 = 0; in fromString() local
808 Ops[3].getAsInteger(10, CRm); in fromString()
810 Bits = (Op0 << 14) | (Op1 << 11) | (CRn << 7) | (CRm << 3) | Op2; in fromString()
848 uint32_t CRm = (Bits >> 3) & 0xf; in toString() local
862 + "_c" + utostr(CRm) + "_" + utostr(Op2); in toString()
/external/llvm/lib/Target/ARM/
DARMInstrInfo.td4673 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
4674 NoItinerary, "cdp", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4676 imm:$CRm, imm:$opc2)]>,
4683 bits<4> CRm;
4685 let Inst{3-0} = CRm;
4695 c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
4696 NoItinerary, "cdp2\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4698 imm:$CRm, imm:$opc2)]>,
4706 bits<4> CRm;
4708 let Inst{3-0} = CRm;
[all …]
DARMInstrThumb2.td4035 : T2Cop<Op, oops, iops, opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2",
4045 bits<4> CRm;
4052 let Inst{3-0} = CRm;
4059 (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm),
4060 opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm", pattern> {
4069 bits<4> CRm;
4075 let Inst{3-0} = CRm;
4082 c_imm:$CRm, imm0_7:$opc2),
4084 imm:$CRm, imm:$opc2)]>,
4086 def : t2InstAlias<"mcr${p} $cop, $opc1, $Rt, $CRn, $CRm",
[all …]
/external/vixl/src/a64/
Dconstants-a64.h128 V_(CRm, 11, 8, Bits) \
/external/chromium_org/v8/src/arm64/
Dconstants-arm64.h204 V_(CRm, 11, 8, Bits) \
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td799 // Hint instructions that take both a CRm and a 3-bit immediate.
809 // CRm. op2 differentiates the opcodes.
819 : SimpleSystemI<0, (ins crmtype:$CRm), asm, "\t$CRm">,
821 bits<4> CRm;
823 let Inst{11-8} = CRm;
834 // concatenation of 1, op0, op1, CRn, CRm, op2. 16-bit immediate.
/external/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp4970 unsigned CRm = fieldFromInstruction(Val, 0, 4); in DecodeMRRC2() local
4988 Inst.addOperand(MCOperand::CreateImm(CRm)); in DecodeMRRC2()