Home
last modified time | relevance | path

Searched refs:syned (Results 1 – 17 of 17) sorted by relevance

/external/valgrind/main/VEX/priv/
Dhost_amd64_defs.h463 Bool syned; member
469 Bool syned; member
506 Bool syned; member
513 Bool syned; member
690 extern AMD64Instr* AMD64Instr_MulL ( Bool syned, AMD64RM* );
691 extern AMD64Instr* AMD64Instr_Div ( Bool syned, Int sz, AMD64RM* );
697 extern AMD64Instr* AMD64Instr_MovxLQ ( Bool syned, HReg src, HReg dst );
698 extern AMD64Instr* AMD64Instr_LoadEX ( UChar szSmall, Bool syned,
Dhost_ppc_defs.c396 PPCRH* PPCRH_Imm ( Bool syned, UShort imm16 ) { in PPCRH_Imm() argument
399 op->Prh.Imm.syned = syned; in PPCRH_Imm()
403 if (syned) in PPCRH_Imm()
405 vassert(syned == True || syned == False); in PPCRH_Imm()
418 if (op->Prh.Imm.syned) in ppPPCRH()
774 PPCInstr* PPCInstr_Cmp ( Bool syned, Bool sz32, in PPCInstr_Cmp() argument
778 i->Pin.Cmp.syned = syned; in PPCInstr_Cmp()
793 PPCInstr* PPCInstr_MulL ( Bool syned, Bool hi, Bool sz32, in PPCInstr_MulL() argument
797 i->Pin.MulL.syned = syned; in PPCInstr_MulL()
805 if (!hi) vassert(!syned); in PPCInstr_MulL()
[all …]
Dhost_x86_defs.h422 Bool syned; member
427 Bool syned; member
464 Bool syned; member
630 extern X86Instr* X86Instr_MulL ( Bool syned, X86RM* );
631 extern X86Instr* X86Instr_Div ( Bool syned, X86RM* );
637 extern X86Instr* X86Instr_LoadEX ( UChar szSmall, Bool syned,
Dhost_ppc_defs.h243 Bool syned; member
541 Bool syned; member
554 Bool syned; /* meaningless if hi32==False */ member
564 Bool syned; member
674 Bool syned; member
796 extern PPCInstr* PPCInstr_MulL ( Bool syned, Bool hi32, Bool sz32, HReg, HReg, HReg );
797 extern PPCInstr* PPCInstr_Div ( Bool extended, Bool syned, Bool sz32, HReg dst, HReg srcL, H…
820 extern PPCInstr* PPCInstr_FpCftI ( Bool fromI, Bool int32, Bool syned,
Dhost_ppc_isel.c359 Bool syned, IRExpr* e );
361 Bool syned, IRExpr* e );
1290 Bool syned = toBool((e->Iex.Binop.op == Iop_DivS32) || (e->Iex.Binop.op == Iop_DivS32E)); in iselWordExpr_R_wrk() local
1298 syned, in iselWordExpr_R_wrk()
1308 Bool syned = toBool((e->Iex.Binop.op == Iop_DivS64) ||(e->Iex.Binop.op == Iop_DivS64E)); in iselWordExpr_R_wrk() local
1318 syned, in iselWordExpr_R_wrk()
1329 Bool syned = False; in iselWordExpr_R_wrk() local
1334 addInstr(env, PPCInstr_MulL(syned, False/*lo32*/, sz32, in iselWordExpr_R_wrk()
1346 Bool syned = toBool(e->Iex.Binop.op == Iop_MullS32); in iselWordExpr_R_wrk() local
1352 addInstr(env, PPCInstr_MulL(syned, in iselWordExpr_R_wrk()
[all …]
Dhost_amd64_defs.c704 AMD64Instr* AMD64Instr_MulL ( Bool syned, AMD64RM* src ) { in AMD64Instr_MulL() argument
707 i->Ain.MulL.syned = syned; in AMD64Instr_MulL()
711 AMD64Instr* AMD64Instr_Div ( Bool syned, Int sz, AMD64RM* src ) { in AMD64Instr_Div() argument
714 i->Ain.Div.syned = syned; in AMD64Instr_Div()
762 AMD64Instr* AMD64Instr_MovxLQ ( Bool syned, HReg src, HReg dst ) { in AMD64Instr_MovxLQ() argument
765 i->Ain.MovxLQ.syned = syned; in AMD64Instr_MovxLQ()
770 AMD64Instr* AMD64Instr_LoadEX ( UChar szSmall, Bool syned, in AMD64Instr_LoadEX() argument
775 i->Ain.LoadEX.syned = syned; in AMD64Instr_LoadEX()
1115 vex_printf("%cmulq ", i->Ain.MulL.syned ? 's' : 'u'); in ppAMD64Instr()
1120 i->Ain.Div.syned ? 's' : 'u', in ppAMD64Instr()
[all …]
Dhost_x86_defs.c611 X86Instr* X86Instr_MulL ( Bool syned, X86RM* src ) { in X86Instr_MulL() argument
614 i->Xin.MulL.syned = syned; in X86Instr_MulL()
618 X86Instr* X86Instr_Div ( Bool syned, X86RM* src ) { in X86Instr_Div() argument
621 i->Xin.Div.syned = syned; in X86Instr_Div()
667 X86Instr* X86Instr_LoadEX ( UChar szSmall, Bool syned, in X86Instr_LoadEX() argument
672 i->Xin.LoadEX.syned = syned; in X86Instr_LoadEX()
928 vex_printf("%cmull ", i->Xin.MulL.syned ? 's' : 'u'); in ppX86Instr()
932 vex_printf("%cdivl ", i->Xin.Div.syned ? 's' : 'u'); in ppX86Instr()
983 i->Xin.LoadEX.syned ? 's' : 'z', in ppX86Instr()
2220 subopc = i->Xin.MulL.syned ? 5 : 4; in emit_X86Instr()
[all …]
Dmain_util.c262 Int base, Bool syned, Bool hexcaps ) in convert_int() argument
270 if (syned) { in convert_int()
Dhost_arm_defs.h810 Bool syned; /* True: I32 is signed. False: I32 is unsigned */ member
942 extern ARMInstr* ARMInstr_VCvtID ( Bool iToD, Bool syned,
Dhost_arm_defs.c1319 ARMInstr* ARMInstr_VCvtID ( Bool iToD, Bool syned, in ARMInstr_VCvtID() argument
1324 i->ARMin.VCvtID.syned = syned; in ARMInstr_VCvtID()
1743 nm = i->ARMin.VCvtID.syned ? "fsitod" : "fuitod"; in ppARMInstr()
1745 nm = i->ARMin.VCvtID.syned ? "ftosid" : "ftouid"; in ppARMInstr()
3243 Bool syned = i->ARMin.VCvtID.syned; in emit_ARMInstr() local
3244 if (iToD && syned) { in emit_ARMInstr()
3254 if (iToD && (!syned)) { in emit_ARMInstr()
3264 if ((!iToD) && syned) { in emit_ARMInstr()
3274 if ((!iToD) && (!syned)) { in emit_ARMInstr()
Dguest_arm_toIR.c11300 UInt syned = (insn28 >> 7) & 1; in decode_CP10_CP11_instruction() local
11301 if (syned) { in decode_CP10_CP11_instruction()
11326 UInt syned = (insn28 >> 16) & 1; in decode_CP10_CP11_instruction() local
11330 if (syned) { in decode_CP10_CP11_instruction()
11777 UInt syned = (insn28 >> 7) & 1; in decode_CP10_CP11_instruction() local
11780 if (syned) { in decode_CP10_CP11_instruction()
11810 UInt syned = (insn28 >> 16) & 1; in decode_CP10_CP11_instruction() local
11814 if (syned) { in decode_CP10_CP11_instruction()
16807 Bool syned = False; in disInstr_THUMB_WRK() local
16818 nm = "ldrsb"; syned = True; break; in disInstr_THUMB_WRK()
[all …]
Dhost_amd64_isel.c1197 Bool syned = toBool(e->Iex.Binop.op == Iop_DivModS64to32); in iselIntExpr_R_wrk() local
1205 addInstr(env, AMD64Instr_Div(syned, 4, rmRight)); in iselIntExpr_R_wrk()
2475 Bool syned = toBool(e->Iex.Binop.op == Iop_MullS64); in iselInt128Expr_wrk() local
2479 addInstr(env, AMD64Instr_MulL(syned, rmLeft)); in iselInt128Expr_wrk()
2496 Bool syned = toBool(e->Iex.Binop.op == Iop_DivModS128to64); in iselInt128Expr_wrk() local
2501 addInstr(env, AMD64Instr_Div(syned, 8, rmRight)); in iselInt128Expr_wrk()
Dhost_x86_isel.c2082 Bool syned = toBool(e->Iex.Binop.op == Iop_MullS32); in iselInt64Expr_wrk() local
2086 addInstr(env, X86Instr_MulL(syned, rmLeft)); in iselInt64Expr_wrk()
2103 Bool syned = toBool(e->Iex.Binop.op == Iop_DivModS64to32); in iselInt64Expr_wrk() local
2108 addInstr(env, X86Instr_Div(syned, rmRight)); in iselInt64Expr_wrk()
Dguest_x86_toIR.c2716 static void codegen_mulL_A_D ( Int sz, Bool syned, in codegen_mulL_A_D() argument
2729 IROp mulOp = syned ? Iop_MullS32 : Iop_MullU32; in codegen_mulL_A_D()
2730 UInt tBaseOp = syned ? X86G_CC_OP_SMULB : X86G_CC_OP_UMULB; in codegen_mulL_A_D()
2743 IROp mulOp = syned ? Iop_MullS16 : Iop_MullU16; in codegen_mulL_A_D()
2744 UInt tBaseOp = syned ? X86G_CC_OP_SMULB : X86G_CC_OP_UMULB; in codegen_mulL_A_D()
2757 IROp mulOp = syned ? Iop_MullS8 : Iop_MullU8; in codegen_mulL_A_D()
2758 UInt tBaseOp = syned ? X86G_CC_OP_SMULB : X86G_CC_OP_UMULB; in codegen_mulL_A_D()
2769 DIP("%s%c %s\n", syned ? "imul" : "mul", nameISize(sz), tmp_txt); in codegen_mulL_A_D()
Dguest_amd64_toIR.c3638 static void codegen_mulL_A_D ( Int sz, Bool syned, in codegen_mulL_A_D() argument
3651 IROp mulOp = syned ? Iop_MullS64 : Iop_MullU64; in codegen_mulL_A_D()
3652 UInt tBaseOp = syned ? AMD64G_CC_OP_SMULB : AMD64G_CC_OP_UMULB; in codegen_mulL_A_D()
3665 IROp mulOp = syned ? Iop_MullS32 : Iop_MullU32; in codegen_mulL_A_D()
3666 UInt tBaseOp = syned ? AMD64G_CC_OP_SMULB : AMD64G_CC_OP_UMULB; in codegen_mulL_A_D()
3679 IROp mulOp = syned ? Iop_MullS16 : Iop_MullU16; in codegen_mulL_A_D()
3680 UInt tBaseOp = syned ? AMD64G_CC_OP_SMULB : AMD64G_CC_OP_UMULB; in codegen_mulL_A_D()
3693 IROp mulOp = syned ? Iop_MullS8 : Iop_MullU8; in codegen_mulL_A_D()
3694 UInt tBaseOp = syned ? AMD64G_CC_OP_SMULB : AMD64G_CC_OP_UMULB; in codegen_mulL_A_D()
3706 DIP("%s%c %s\n", syned ? "imul" : "mul", nameISize(sz), tmp_txt); in codegen_mulL_A_D()
Dhost_arm_isel.c1247 Bool syned = e->Iex.Binop.op == Iop_F64toI32S; in iselIntExpr_R_wrk() local
1252 addInstr(env, ARMInstr_VCvtID(False/*!iToD*/, syned, in iselIntExpr_R_wrk()
5375 Bool syned = e->Iex.Unop.op == Iop_I32StoF64; in iselDblExpr_wrk() local
5379 addInstr(env, ARMInstr_VCvtID(True/*iToD*/, syned, in iselDblExpr_wrk()
/external/valgrind/main/memcheck/
Dmc_translate.c935 Bool syned = cmp_op == Iop_CmpORD64S || cmp_op == Iop_CmpORD32S; in doCmpORD() local
962 if (syned && isZero(yy)) { in doCmpORD()