Searched refs:theInstr (Results 1 – 3 of 3) sorted by relevance
2892 static Bool dis_int_arith ( UInt theInstr ) in dis_int_arith() argument2895 UChar opc1 = ifieldOPC(theInstr); in dis_int_arith()2896 UChar rD_addr = ifieldRegDS(theInstr); in dis_int_arith()2897 UChar rA_addr = ifieldRegA(theInstr); in dis_int_arith()2898 UInt uimm16 = ifieldUIMM16(theInstr); in dis_int_arith()2899 UChar rB_addr = ifieldRegB(theInstr); in dis_int_arith()2900 UChar flag_OE = ifieldBIT10(theInstr); in dis_int_arith()2901 UInt opc2 = ifieldOPClo9(theInstr); in dis_int_arith()2902 UChar flag_rC = ifieldBIT0(theInstr); in dis_int_arith()3529 static Bool dis_int_cmp ( UInt theInstr ) in dis_int_cmp() argument[all …]
2328 UInt theInstr; in mkFormD() local2333 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | (imm)); in mkFormD()2334 return emit32(p, theInstr); in mkFormD()2340 UInt theInstr; in mkFormMD() local2348 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | in mkFormMD()2351 return emit32(p, theInstr); in mkFormMD()2357 UInt theInstr; in mkFormX() local2364 theInstr = ((opc1<<26) | (r1<<21) | (r2<<16) | in mkFormX()2366 return emit32(p, theInstr); in mkFormX()2372 UInt theInstr; in mkFormXO() local[all …]
2803 UInt get_neon_d_regno(UInt theInstr) in get_neon_d_regno() argument2805 UInt x = ((theInstr >> 18) & 0x10) | ((theInstr >> 12) & 0xF); in get_neon_d_regno()2806 if (theInstr & 0x40) { in get_neon_d_regno()2817 UInt get_neon_n_regno(UInt theInstr) in get_neon_n_regno() argument2819 UInt x = ((theInstr >> 3) & 0x10) | ((theInstr >> 16) & 0xF); in get_neon_n_regno()2820 if (theInstr & 0x40) { in get_neon_n_regno()2831 UInt get_neon_m_regno(UInt theInstr) in get_neon_m_regno() argument2833 UInt x = ((theInstr >> 1) & 0x10) | (theInstr & 0xF); in get_neon_m_regno()2834 if (theInstr & 0x40) { in get_neon_m_regno()2845 Bool dis_neon_vext ( UInt theInstr, IRTemp condT ) in dis_neon_vext() argument[all …]