Lines Matching refs:IRStmt
1253 void ppIRStmt ( IRStmt* s ) in ppIRStmt()
1735 IRStmt* IRStmt_NoOp ( void ) in IRStmt_NoOp()
1738 static IRStmt static_closure; in IRStmt_NoOp()
1742 IRStmt* IRStmt_IMark ( Addr64 addr, Int len, UChar delta ) { in IRStmt_IMark()
1743 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_IMark()
1750 IRStmt* IRStmt_AbiHint ( IRExpr* base, Int len, IRExpr* nia ) { in IRStmt_AbiHint()
1751 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_AbiHint()
1758 IRStmt* IRStmt_Put ( Int off, IRExpr* data ) { in IRStmt_Put()
1759 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Put()
1765 IRStmt* IRStmt_PutI ( IRPutI* details ) { in IRStmt_PutI()
1766 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_PutI()
1771 IRStmt* IRStmt_WrTmp ( IRTemp tmp, IRExpr* data ) { in IRStmt_WrTmp()
1772 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_WrTmp()
1778 IRStmt* IRStmt_Store ( IREndness end, IRExpr* addr, IRExpr* data ) { in IRStmt_Store()
1779 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Store()
1787 IRStmt* IRStmt_CAS ( IRCAS* cas ) { in IRStmt_CAS()
1788 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_CAS()
1793 IRStmt* IRStmt_LLSC ( IREndness end, in IRStmt_LLSC()
1795 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_LLSC()
1803 IRStmt* IRStmt_Dirty ( IRDirty* d ) in IRStmt_Dirty()
1805 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Dirty()
1810 IRStmt* IRStmt_MBE ( IRMBusEvent event ) in IRStmt_MBE()
1812 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_MBE()
1817 IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst, in IRStmt_Exit()
1819 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Exit()
1849 bb->stmts = LibVEX_Alloc(bb->stmts_size * sizeof(IRStmt*)); in emptyIRSB()
2013 IRStmt* deepCopyIRStmt ( IRStmt* s ) in deepCopyIRStmt()
2076 IRStmt** sts2; in deepCopyIRSB()
2079 sts2 = LibVEX_Alloc(bb2->stmts_used * sizeof(IRStmt*)); in deepCopyIRSB()
2863 void addStmtToIRSB ( IRSB* bb, IRStmt* st ) in addStmtToIRSB()
2867 IRStmt** stmts2 = LibVEX_Alloc(2 * bb->stmts_size * sizeof(IRStmt*)); in addStmtToIRSB()
3015 Bool isFlatIRStmt ( IRStmt* st ) in isFlatIRStmt()
3133 void sanityCheckFail ( IRSB* bb, IRStmt* stmt, HChar* what ) in sanityCheckFail()
3184 void useBeforeDef_Temp ( IRSB* bb, IRStmt* stmt, IRTemp tmp, Int* def_counts ) in useBeforeDef_Temp()
3193 void useBeforeDef_Expr ( IRSB* bb, IRStmt* stmt, IRExpr* expr, Int* def_counts ) in useBeforeDef_Expr()
3247 void useBeforeDef_Stmt ( IRSB* bb, IRStmt* stmt, Int* def_counts ) in useBeforeDef_Stmt()
3309 void tcExpr ( IRSB* bb, IRStmt* stmt, IRExpr* expr, IRType gWordTy ) in tcExpr()
3514 void tcStmt ( IRSB* bb, IRStmt* stmt, IRType gWordTy ) in tcStmt()
3737 IRStmt* stmt; in sanityCheckIRSB()