Searched refs:theInstr (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/VEX/priv/ |
D | guest_ppc_toIR.c | 3472 static Bool dis_int_arith ( UInt theInstr ) in dis_int_arith() argument 3475 UChar opc1 = ifieldOPC(theInstr); in dis_int_arith() 3476 UChar rD_addr = ifieldRegDS(theInstr); in dis_int_arith() 3477 UChar rA_addr = ifieldRegA(theInstr); in dis_int_arith() 3478 UInt uimm16 = ifieldUIMM16(theInstr); in dis_int_arith() 3479 UChar rB_addr = ifieldRegB(theInstr); in dis_int_arith() 3480 UChar flag_OE = ifieldBIT10(theInstr); in dis_int_arith() 3481 UInt opc2 = ifieldOPClo9(theInstr); in dis_int_arith() 3482 UChar flag_rC = ifieldBIT0(theInstr); in dis_int_arith() 4109 static Bool dis_int_cmp ( UInt theInstr ) in dis_int_cmp() argument [all …]
|
D | host_ppc_defs.c | 3128 UInt theInstr; in mkFormD() local 3133 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | (imm)); in mkFormD() 3134 return emit32(p, theInstr, endness_host); in mkFormD() 3141 UInt theInstr; in mkFormMD() local 3149 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | in mkFormMD() 3152 return emit32(p, theInstr, endness_host); in mkFormMD() 3158 UInt theInstr; in mkFormX() local 3165 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | in mkFormX() 3167 return emit32(p, theInstr, endness_host); in mkFormX() 3174 UInt theInstr; in mkFormXO() local [all …]
|
D | guest_arm_toIR.c | 2815 UInt get_neon_d_regno(UInt theInstr) in get_neon_d_regno() argument 2817 UInt x = ((theInstr >> 18) & 0x10) | ((theInstr >> 12) & 0xF); in get_neon_d_regno() 2818 if (theInstr & 0x40) { in get_neon_d_regno() 2829 UInt get_neon_n_regno(UInt theInstr) in get_neon_n_regno() argument 2831 UInt x = ((theInstr >> 3) & 0x10) | ((theInstr >> 16) & 0xF); in get_neon_n_regno() 2832 if (theInstr & 0x40) { in get_neon_n_regno() 2843 UInt get_neon_m_regno(UInt theInstr) in get_neon_m_regno() argument 2845 UInt x = ((theInstr >> 1) & 0x10) | (theInstr & 0xF); in get_neon_m_regno() 2846 if (theInstr & 0x40) { in get_neon_m_regno() 2857 Bool dis_neon_vext ( UInt theInstr, IRTemp condT ) in dis_neon_vext() argument [all …]
|
D | host_mips_defs.c | 2118 UInt theInstr; in mkFormI() local 2123 theInstr = ((opc << 26) | (rs << 21) | (rt << 16) | (imm)); in mkFormI() 2124 return emit32(p, theInstr); in mkFormI() 2139 UInt theInstr; in mkFormR() local 2146 theInstr = ((opc << 26) | (rs << 21) | (rt << 16) | (rd << 11) | (sa << 6) | in mkFormR() 2149 return emit32(p, theInstr); in mkFormR() 2155 UInt theInstr; in mkFormS() local 2163 theInstr = ((opc1 << 26) | (rRS << 21) | (rRT << 16) | (rRD << 11) | in mkFormS() 2166 return emit32(p, theInstr); in mkFormS()
|
D | guest_mips_toIR.c | 1535 static Bool dis_instr_shrt ( UInt theInstr ) in dis_instr_shrt() argument 1537 UInt opc2 = get_function(theInstr); in dis_instr_shrt() 1538 UChar regRs = get_rs(theInstr); in dis_instr_shrt() 1539 UChar regRt = get_rt(theInstr); in dis_instr_shrt() 1540 UChar regRd = get_rd(theInstr); in dis_instr_shrt() 1541 UChar uImmsa = get_sa(theInstr); in dis_instr_shrt() 2066 static Bool dis_instr_branch ( UInt theInstr, DisResult * dres, in dis_instr_branch() argument 2071 UChar opc1 = get_opcode(theInstr); in dis_instr_branch() 2072 UChar regRs = get_rs(theInstr); in dis_instr_branch() 2073 UChar regRt = get_rt(theInstr); in dis_instr_branch() [all …]
|