Home
last modified time | relevance | path

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

/external/valgrind/VEX/priv/
Dhost_s390_defs.h345 HReg dst_lo; /* 128-bit result low part */ member
356 HReg dst_lo; /* 128-bit result low part */ member
417 HReg dst_lo; /* also op1 r11 */ member
497 HReg dst_lo; /* 128-bit result low part */ member
504 HReg dst_lo; /* 128-bit result low part */ member
512 HReg dst_lo; /* 128-bit result low part */ member
529 HReg dst_lo; /* 128-bit result low part */ member
536 HReg dst_lo; /* 128-bit result low part */ member
545 HReg dst_lo; /* 128-bit result low part */ member
563 HReg dst_lo; /* 128-bit result low part */ member
[all …]
Dhost_s390_isel.c905 s390_isel_int128_expr_wrk(HReg *dst_hi, HReg *dst_lo, ISelEnv *env, in s390_isel_int128_expr_wrk() argument
919 lookupIRTemp128(dst_hi, dst_lo, env, expr->Iex.RdTmp.tmp); in s390_isel_int128_expr_wrk()
947 *dst_lo = s390_isel_int_expr(env, arg2); in s390_isel_int128_expr_wrk()
972 *dst_lo = newVRegI(env); in s390_isel_int128_expr_wrk()
974 addInstr(env, s390_insn_move(8, *dst_lo, r11)); in s390_isel_int128_expr_wrk()
1003 *dst_lo = newVRegI(env); in s390_isel_int128_expr_wrk()
1005 addInstr(env, s390_insn_move(8, *dst_lo, r11)); in s390_isel_int128_expr_wrk()
1033 *dst_lo = newVRegI(env); in s390_isel_int128_expr_wrk()
1035 addInstr(env, s390_insn_move(8, *dst_lo, r11)); in s390_isel_int128_expr_wrk()
1049 s390_isel_int128_expr(HReg *dst_hi, HReg *dst_lo, ISelEnv *env, IRExpr *expr) in s390_isel_int128_expr() argument
[all …]
Dhost_ppc_defs.h898 HReg dst_lo; member
908 HReg dst_lo; member
915 HReg dst_lo; member
927 HReg dst_lo; member
942 HReg dst_lo; member
956 HReg dst_lo; member
970 HReg dst_lo; member
1074 extern PPCInstr* PPCInstr_Dfp128Unary ( PPCFpOp op, HReg dst_hi, HReg dst_lo,
1076 extern PPCInstr* PPCInstr_Dfp128Binary ( PPCFpOp op, HReg dst_hi, HReg dst_lo,
1079 HReg dst_lo, HReg src_lo,
[all …]
Dhost_s390_defs.c585 addHRegUse(u, HRmRead, insn->variant.mul.dst_lo); /* op1 */ in s390_insn_get_reg_usage()
586 addHRegUse(u, HRmWrite, insn->variant.mul.dst_lo); in s390_insn_get_reg_usage()
691 addHRegUse(u, HRmWrite, insn->variant.bfp_binop.dst_lo); in s390_insn_get_reg_usage()
692 addHRegUse(u, HRmRead, insn->variant.bfp_binop.dst_lo); /* left */ in s390_insn_get_reg_usage()
701 addHRegUse(u, HRmWrite, insn->variant.bfp_unop.dst_lo); in s390_insn_get_reg_usage()
718 if (! hregIsInvalid(insn->variant.bfp_convert.dst_lo)) in s390_insn_get_reg_usage()
719 addHRegUse(u, HRmWrite, insn->variant.bfp_convert.dst_lo); in s390_insn_get_reg_usage()
732 addHRegUse(u, HRmWrite, dfp_binop->dst_lo); in s390_insn_get_reg_usage()
743 addHRegUse(u, HRmWrite, insn->variant.dfp_unop.dst_lo); in s390_insn_get_reg_usage()
753 addHRegUse(u, HRmWrite, insn->variant.dfp_intop.dst_lo); in s390_insn_get_reg_usage()
[all …]
Dhost_ppc_defs.c992 PPCInstr* PPCInstr_Dfp128Unary(PPCFpOp op, HReg dst_hi, HReg dst_lo, in PPCInstr_Dfp128Unary() argument
998 i->Pin.Dfp128Unary.dst_lo = dst_lo; in PPCInstr_Dfp128Unary()
1003 PPCInstr* PPCInstr_Dfp128Binary(PPCFpOp op, HReg dst_hi, HReg dst_lo, in PPCInstr_Dfp128Binary() argument
1010 i->Pin.Dfp128Binary.dst_lo = dst_lo; in PPCInstr_Dfp128Binary()
1015 PPCInstr* PPCInstr_DfpShift128 ( PPCFpOp op, HReg dst_hi, HReg dst_lo, in PPCInstr_DfpShift128() argument
1025 i->Pin.DfpShift128.dst_lo = dst_lo; in PPCInstr_DfpShift128()
1036 PPCInstr* PPCInstr_DfpRound128 ( HReg dst_hi, HReg dst_lo, HReg src_hi, in PPCInstr_DfpRound128() argument
1041 i->Pin.DfpRound128.dst_lo = dst_lo; in PPCInstr_DfpRound128()
1058 PPCInstr* PPCInstr_DfpQuantize128 ( PPCFpOp op, HReg dst_hi, HReg dst_lo, in PPCInstr_DfpQuantize128() argument
1065 i->Pin.DfpQuantize128.dst_lo = dst_lo; in PPCInstr_DfpQuantize128()
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_pack.c279 LLVMValueRef *dst_lo, in lp_build_unpack2() argument
301 *dst_lo = lp_build_interleave2(gallivm, src_type, src, msb, 0); in lp_build_unpack2()
304 *dst_lo = lp_build_interleave2(gallivm, src_type, msb, src, 0); in lp_build_unpack2()
312 *dst_lo = LLVMBuildBitCast(builder, *dst_lo, dst_vec_type, ""); in lp_build_unpack2()
Dlp_bld_pack.h67 LLVMValueRef *dst_lo,