Home
last modified time | relevance | path

Searched refs:Pct_TRUE (Results 1 – 3 of 3) sorted by relevance

/external/valgrind/main/VEX/priv/
Dhost_ppc_isel.c1476 PPCCondCode cc = mk_PPCCondCode( Pct_TRUE, Pcf_7LT ); in iselWordExpr_R_wrk()
2138 PPCCondCode cc = mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselWordExpr_R_wrk()
2530 return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
2553 return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
2600 case Iop_CmpEQ32: return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
2603 return mk_PPCCondCode( Pct_TRUE, Pcf_7LT ); in iselCondCode_wrk()
2650 case Iop_CmpEQ64: return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
2652 case Iop_CmpLT64U: return mk_PPCCondCode( Pct_TRUE, Pcf_7LT ); in iselCondCode_wrk()
2668 return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
2901 PPCCondCode cc = mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselInt64Expr_wrk()
[all …]
Dhost_ppc_defs.h173 Pct_TRUE = 0xC, /* associated PPCCondFlag must not be Pcf_NONE */ enumerator
Dhost_ppc_defs.c282 return (cond.test == Pct_TRUE) ? "cr7.so=1" : "cr7.so=0"; in showPPCCondCode()
284 return (cond.test == Pct_TRUE) ? "cr7.eq=1" : "cr7.eq=0"; in showPPCCondCode()
286 return (cond.test == Pct_TRUE) ? "cr7.gt=1" : "cr7.gt=0"; in showPPCCondCode()
288 return (cond.test == Pct_TRUE) ? "cr7.lt=1" : "cr7.lt=0"; in showPPCCondCode()
313 return (ct == Pct_TRUE) ? Pct_FALSE : Pct_TRUE; in invertCondTest()