Home
last modified time | relevance | path

Searched refs:Cex (Results 1 – 5 of 5) sorted by relevance

/external/valgrind/coregrind/m_debuginfo/
Dstorage.c848 e.Cex.Deref.ixAddr = ixAddr; in ML_()
856 e.Cex.Const.con = con; in ML_()
864 e.Cex.Unop.op = op; in ML_()
865 e.Cex.Unop.ix = ix; in ML_()
873 e.Cex.Binop.op = op; in ML_()
874 e.Cex.Binop.ixL = ixL; in ML_()
875 e.Cex.Binop.ixR = ixR; in ML_()
883 e.Cex.CfiReg.reg = reg; in ML_()
891 e.Cex.DwReg.reg = reg; in ML_()
961 ML_(ppCfiExpr)(src, e->Cex.Deref.ixAddr); in ML_()
[all …]
Ddebuginfo.c2444 w = evalCfiExpr( exprs, e->Cex.Unop.ix, eec, ok ); in evalCfiExpr()
2446 switch (e->Cex.Unop.op) { in evalCfiExpr()
2454 wL = evalCfiExpr( exprs, e->Cex.Binop.ixL, eec, ok ); in evalCfiExpr()
2456 wR = evalCfiExpr( exprs, e->Cex.Binop.ixR, eec, ok ); in evalCfiExpr()
2458 switch (e->Cex.Binop.op) { in evalCfiExpr()
2475 switch (e->Cex.CfiReg.reg) { in evalCfiExpr()
2512 return e->Cex.Const.con; in evalCfiExpr()
2514 a = evalCfiExpr( exprs, e->Cex.Deref.ixAddr, eec, ok ); in evalCfiExpr()
Dreaddwarf.c2485 cpA = copy_convert_CfiExpr_tree( dstxa, srcuc, src->Cex.Deref.ixAddr ); in copy_convert_CfiExpr_tree()
2490 return ML_(CfiExpr_Const)( dstxa, src->Cex.Const.con ); in copy_convert_CfiExpr_tree()
2492 cpL = copy_convert_CfiExpr_tree( dstxa, srcuc, src->Cex.Binop.ixL ); in copy_convert_CfiExpr_tree()
2493 cpR = copy_convert_CfiExpr_tree( dstxa, srcuc, src->Cex.Binop.ixR ); in copy_convert_CfiExpr_tree()
2497 return ML_(CfiExpr_Binop)( dstxa, src->Cex.Binop.op, cpL, cpR ); in copy_convert_CfiExpr_tree()
2505 dwreg = src->Cex.DwReg.reg; in copy_convert_CfiExpr_tree()
Dpriv_storage.h450 Cex; member
Dreadexidx.c666 if (e->Cex.CfiReg.reg == Creg_ARM_R7) { in setCFAfromCFIR()