Home
last modified time | relevance | path

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

/external/valgrind/main/VEX/priv/
Dhost_ppc_defs.c2325 static UChar* mkFormD ( UChar* p, UInt opc1, in mkFormD() argument
2329 vassert(opc1 < 0x40); in mkFormD()
2333 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | (imm)); in mkFormD()
2337 static UChar* mkFormMD ( UChar* p, UInt opc1, UInt r1, UInt r2, in mkFormMD() argument
2341 vassert(opc1 < 0x40); in mkFormMD()
2348 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | in mkFormMD()
2354 static UChar* mkFormX ( UChar* p, UInt opc1, UInt r1, UInt r2, in mkFormX() argument
2358 vassert(opc1 < 0x40); in mkFormX()
2364 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | in mkFormX()
2369 static UChar* mkFormXO ( UChar* p, UInt opc1, UInt r1, UInt r2, in mkFormXO() argument
[all …]
Dguest_ppc_toIR.c2895 UChar opc1 = ifieldOPC(theInstr); in dis_int_arith() local
2915 switch (opc1) { in dis_int_arith()
3532 UChar opc1 = ifieldOPC(theInstr); in dis_int_cmp() local
3556 switch (opc1) { in dis_int_cmp()
3652 UChar opc1 = ifieldOPC(theInstr); in dis_int_logic() local
3670 switch (opc1) { in dis_int_logic()
4010 UChar opc1 = ifieldOPC(theInstr); in dis_int_parity() local
4040 if (opc1 != 0x1f || rB_addr || b0) { in dis_int_parity()
4139 UChar opc1 = ifieldOPC(theInstr); in dis_int_rot() local
4163 switch (opc1) { in dis_int_rot()
[all …]
Dhost_arm_defs.c3354 UInt opc, opc1, opc2; in emit_ARMInstr() local
3407 opc1 = (opc >> 2) & 3; in emit_ARMInstr()
3409 insn = XXXXXXXX(0xE, X1110, BITS4(0,(opc1 >> 1),(opc1 & 1),0), in emit_ARMInstr()
3448 opc1 = (opc >> 2) & 3; in emit_ARMInstr()
3450 insn = XXXXXXXX(0xE, X1110, BITS4(1,(opc1 >> 1),(opc1 & 1),1), in emit_ARMInstr()
3496 opc1 = (opc >> 2) & 3; in emit_ARMInstr()
3498 insn = XXXXXXXX(0xE, X1110, BITS4(0,(opc1 >> 1),(opc1 & 1),1), in emit_ARMInstr()
/external/llvm/lib/Target/ARM/
DARMInstrThumb2.td3703 !strconcat(opc, "\t$cop, $opc1, $Rt, $CRn, $CRm, $opc2"),
3711 bits<3> opc1;
3718 let Inst{23-21} = opc1;
3727 (ins p_imm:$cop, imm0_15:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm),
3728 !strconcat(opc, "\t$cop, $opc1, $Rt, $Rt2, $CRm"), pattern> {
3736 bits<4> opc1;
3742 let Inst{7-4} = opc1;
3749 (ins p_imm:$cop, imm0_7:$opc1, GPR:$Rt, c_imm:$CRn,
3751 [(int_arm_mcr imm:$cop, imm:$opc1, GPR:$Rt, imm:$CRn,
3753 def : t2InstAlias<"mcr $cop, $opc1, $Rt, $CRn, $CRm",
[all …]
DARMInstrInfo.td4293 def CDP : ABI<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
4295 NoItinerary, "cdp", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4296 [(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
4298 bits<4> opc1;
4311 let Inst{23-20} = opc1;
4314 def CDP2 : ABXI<0b1110, (outs), (ins pf_imm:$cop, imm0_15:$opc1,
4316 NoItinerary, "cdp2\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
4317 [(int_arm_cdp2 imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
4320 bits<4> opc1;
4333 let Inst{23-20} = opc1;
[all …]
/external/llvm/lib/Target/X86/
DX86InstrControl.td59 multiclass ICBr<bits<8> opc1, bits<8> opc4, string asm, PatFrag Cond> {
60 def _1 : Ii8PCRel <opc1, RawFrm, (outs), (ins brtarget8:$dst), asm, [],
/external/qemu/tcg/arm/
Dtcg-target.c392 int cond, int opc0, int opc1, int rd0, int rd1, in tcg_out_dat_reg2() argument
398 tcg_out32(s, (cond << 28) | (0 << 25) | (opc1 << 21) | in tcg_out_dat_reg2()
405 tcg_out32(s, (cond << 28) | (0 << 25) | (opc1 << 21) | in tcg_out_dat_reg2()
/external/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp4418 unsigned opc1 = fieldFromInstruction32(Val, 4, 4); in DecodeMRRC2() local
4430 Inst.addOperand(MCOperand::CreateImm(opc1)); in DecodeMRRC2()