HomeSort by relevance Sort by last modified time
    Searched refs:Binop (Results 1 - 20 of 20) sorted by null

  /external/valgrind/main/VEX/priv/
ir_match.c 74 if (p->Iex.Binop.op != e->Iex.Binop.op) return False;
75 if (!matchWrk(mi, p->Iex.Binop.arg1, e->Iex.Binop.arg1))
77 if (!matchWrk(mi, p->Iex.Binop.arg2, e->Iex.Binop.arg2))
host_arm_isel.c 196 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
782 && (e->Iex.Binop.op == Iop_Add32 || e->Iex.Binop.op == Iop_Sub32)
783 && e->Iex.Binop.arg2->tag == Iex_Const
784 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U32) {
785 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
788 if (e->Iex.Binop.op == Iop_Sub32)
790 reg = iselIntExpr_R(env, e->Iex.Binop.arg1);
848 && (e->Iex.Binop.op == Iop_Add32 || e->Iex.Binop.op == Iop_Sub32
    [all...]
host_x86_isel.c 96 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
904 e->Iex.Binop.op==Iop_PRemC3210F64
925 if (e->Iex.Binop.op == Iop_Sub32 && isZeroU32(e->Iex.Binop.arg1)) {
927 HReg reg = iselIntExpr_R(env, e->Iex.Binop.arg2);
934 switch (e->Iex.Binop.op) {
954 HReg reg = iselIntExpr_R(env, e->Iex.Binop.arg1);
955 X86RMI* rmi = iselIntExpr_RMI(env, e->Iex.Binop.arg2);
979 switch (e->Iex.Binop.op) {
    [all...]
ir_opt.c 274 return toBool( isIRAtom(e->Iex.Binop.arg1)
275 && isIRAtom(e->Iex.Binop.arg2) );
334 IRExpr_Binop(ex->Iex.Binop.op,
335 flatten_Expr(bb, ex->Iex.Binop.arg1),
336 flatten_Expr(bb, ex->Iex.Binop.arg2))));
    [all...]
host_ppc_isel.c     [all...]
host_mips_isel.c 721 if (e->tag == Iex_Binop && e->Iex.Binop.op == Iop_Add64
722 && e->Iex.Binop.arg2->tag == Iex_Const
723 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U64
725 uLong_is_4_aligned(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64) : True)
726 && uLong_fits_in_16_bits(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64)) {
727 return MIPSAMode_IR((Int) e->Iex.Binop.arg2->Iex.Const.con->Ico.U64,
728 iselWordExpr_R(env, e->Iex.Binop.arg1));
732 if (e->tag == Iex_Binop && e->Iex.Binop.op == Iop_Add64) {
733 HReg r_base = iselWordExpr_R(env, e->Iex.Binop.arg1);
734 HReg r_idx = iselWordExpr_R(env, e->Iex.Binop.arg2)
    [all...]
host_arm64_isel.c 182 //ZZ static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 )
901 && (e->Iex.Binop.op == Iop_Add64 || e->Iex.Binop.op == Iop_Sub64)
902 && e->Iex.Binop.arg2->tag == Iex_Const
903 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U64) {
904 Long simm = (Long)e->Iex.Binop.arg2->Iex.Const.con->Ico.U64;
    [all...]
host_amd64_isel.c 84 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
973 if ((e->Iex.Binop.op == Iop_Sub64 && isZeroU64(e->Iex.Binop.arg1))
974 || (e->Iex.Binop.op == Iop_Sub32 && isZeroU32(e->Iex.Binop.arg1))) {
976 HReg reg = iselIntExpr_R(env, e->Iex.Binop.arg2);
983 switch (e->Iex.Binop.op)
    [all...]
host_s390_isel.c 293 if (expr->tag == Iex_Binop && expr->Iex.Binop.op == Iop_Add64) {
294 IRExpr *arg1 = expr->Iex.Binop.arg1;
295 IRExpr *arg2 = expr->Iex.Binop.arg2;
921 IRExpr *arg1 = expr->Iex.Binop.arg1;
922 IRExpr *arg2 = expr->Iex.Binop.arg2;
925 switch (expr->Iex.Binop.op) {
1545 IROp unop, binop; local
    [all...]
ir_defs.c     [all...]
guest_arm_helpers.c 560 # define binop(_op,_a1,_a2) IRExpr_Binop((_op),(_a1),(_a2)) macro
597 binop(Iop_CmpEQ32, cc_dep1, cc_dep2));
602 binop(Iop_CmpNE32, cc_dep1, cc_dep2));
609 binop(Iop_CmpLT32S, cc_dep2, cc_dep1));
614 binop(Iop_CmpLE32S, cc_dep1, cc_dep2));
620 binop(Iop_CmpLT32S, cc_dep1, cc_dep2));
627 binop(Iop_CmpLE32S, cc_dep2, cc_dep1));
634 binop(Iop_CmpLE32U, cc_dep2, cc_dep1));
639 binop(Iop_CmpLT32U, cc_dep1, cc_dep2));
645 binop(Iop_CmpLE32U, cc_dep1, cc_dep2))
882 # undef binop macro
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-js-typed-lowering.cc 21 binop(NULL),
35 const Operator* binop; member in class:JSTypedLoweringTester
108 return reduce(Binop(op, Parameter(left_type, 0), Parameter(right_type, 1)));
111 Node* Binop(const Operator* op, Node* left, Node* right) {
205 Node* add = R.Binop(R.javascript.Add(), p0, p1);
222 Node* add = R.Binop(R.javascript.Add(), p0, p1);
249 Node* add = R.Binop(ops[k], p0, p1);
319 Node* add = R.Binop(R.ops[k], p0, p1);
379 Node* add = R.Binop(R.ops[k], p0, p1);
651 Node* cmp = R.Binop(ops[k], p0, p1)
883 Node* binop; member in class:BinopEffectsTester
    [all...]
  /external/valgrind/main/coregrind/
m_translate.c 413 if (e->Iex.Binop.arg1->tag != Iex_RdTmp) goto case3;
414 if (!get_SP_delta(e->Iex.Binop.arg1->Iex.RdTmp.tmp, &delta)) goto case3;
415 if (e->Iex.Binop.arg2->tag != Iex_Const) goto case3;
416 if (!IS_ADD_OR_SUB(e->Iex.Binop.op)) goto case3;
417 con = GET_CONST(e->Iex.Binop.arg2->Iex.Const.con);
419 if (IS_ADD(e->Iex.Binop.op)) {
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
storage.c 631 e.Cex.Binop.op = op;
632 e.Cex.Binop.ixL = ixL;
633 e.Cex.Binop.ixR = ixR;
724 ML_(ppCfiExpr)(src, e->Cex.Binop.ixL);
726 ppCfiBinop(e->Cex.Binop.op);
728 ML_(ppCfiExpr)(src, e->Cex.Binop.ixR);
    [all...]
priv_storage.h 390 } Binop;
    [all...]
debuginfo.c     [all...]
readdwarf.c     [all...]
  /external/valgrind/main/memcheck/
mc_translate.c 430 #define binop(_op, _arg1, _arg2) IRExpr_Binop((_op),(_arg1),(_arg2)) macro
476 return binop(Iop_64HLto128, z64, z64);
493 return assignNew('V', mce, Ity_I8, binop(Iop_And8, a1, a2));
499 return assignNew('V', mce, Ity_I16, binop(Iop_And16, a1, a2));
505 return assignNew('V', mce, Ity_I32, binop(Iop_And32, a1, a2));
511 return assignNew('V', mce, Ity_I64, binop(Iop_And64, a1, a2));
517 return assignNew('V', mce, Ity_V128, binop(Iop_AndV128, a1, a2));
523 return assignNew('V', mce, Ity_V256, binop(Iop_AndV256, a1, a2));
531 return assignNew('V', mce, Ity_I8, binop(Iop_Or8, a1, a2));
537 return assignNew('V', mce, Ity_I16, binop(Iop_Or16, a1, a2))
    [all...]
  /external/valgrind/main/VEX/
test_main.c 715 #define binop(_op, _arg1, _arg2) IRExpr_Binop((_op),(_arg1),(_arg2)) macro
743 return assignNew(mce, Ity_I8, binop(Iop_And8, a1, a2));
749 return assignNew(mce, Ity_I16, binop(Iop_And16, a1, a2));
755 return assignNew(mce, Ity_I32, binop(Iop_And32, a1, a2));
761 return assignNew(mce, Ity_I64, binop(Iop_And64, a1, a2));
767 return assignNew(mce, Ity_V128, binop(Iop_AndV128, a1, a2));
775 return assignNew(mce, Ity_I8, binop(Iop_Or8, a1, a2));
781 return assignNew(mce, Ity_I16, binop(Iop_Or16, a1, a2));
787 return assignNew(mce, Ity_I32, binop(Iop_Or32, a1, a2));
793 return assignNew(mce, Ity_I64, binop(Iop_Or64, a1, a2))
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 404 /* Primitive operations that are used in Unop, Binop, Triop and Qop
    [all...]

Completed in 272 milliseconds