Searched defs:sameIRValue (Results 1 - 1 of 1) sorted by relevance

/external/valgrind/main/memcheck/
H A Dmc_translate.c6302 static Bool sameIRValue ( IRExpr* e1, IRExpr* e2 ) function
6311 && sameIRValue(e1->Iex.Binop.arg1, e2->Iex.Binop.arg1)
6312 && sameIRValue(e1->Iex.Binop.arg2, e2->Iex.Binop.arg2);
6315 && sameIRValue(e1->Iex.Unop.arg, e2->Iex.Unop.arg);
6319 return sameIRValue( e1->Iex.ITE.cond, e2->Iex.ITE.cond )
6320 && sameIRValue( e1->Iex.ITE.iftrue, e2->Iex.ITE.iftrue )
6321 && sameIRValue( e1->Iex.ITE.iffalse, e2->Iex.ITE.iffalse );
6338 VG_(printf)("mc_translate.c: sameIRValue: unhandled: ");
6340 VG_(tool_panic)("memcheck:sameIRValue");
6356 if (pp->entry == entry && sameIRValue(p
[all...]

Completed in 145 milliseconds