Lines Matching refs:IRStmt

1631 void ppIRStmt ( const IRStmt* s )  in ppIRStmt()
2195 IRStmt* IRStmt_NoOp ( void ) in IRStmt_NoOp()
2198 static IRStmt static_closure; in IRStmt_NoOp()
2202 IRStmt* IRStmt_IMark ( Addr addr, UInt len, UChar delta ) { in IRStmt_IMark()
2203 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_IMark()
2210 IRStmt* IRStmt_AbiHint ( IRExpr* base, Int len, IRExpr* nia ) { in IRStmt_AbiHint()
2211 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_AbiHint()
2218 IRStmt* IRStmt_Put ( Int off, IRExpr* data ) { in IRStmt_Put()
2219 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_Put()
2225 IRStmt* IRStmt_PutI ( IRPutI* details ) { in IRStmt_PutI()
2226 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_PutI()
2231 IRStmt* IRStmt_WrTmp ( IRTemp tmp, IRExpr* data ) { in IRStmt_WrTmp()
2232 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_WrTmp()
2238 IRStmt* IRStmt_Store ( IREndness end, IRExpr* addr, IRExpr* data ) { in IRStmt_Store()
2239 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_Store()
2247 IRStmt* IRStmt_StoreG ( IREndness end, IRExpr* addr, IRExpr* data, in IRStmt_StoreG()
2249 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_StoreG()
2255 IRStmt* IRStmt_LoadG ( IREndness end, IRLoadGOp cvt, IRTemp dst, in IRStmt_LoadG()
2257 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_LoadG()
2262 IRStmt* IRStmt_CAS ( IRCAS* cas ) { in IRStmt_CAS()
2263 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_CAS()
2268 IRStmt* IRStmt_LLSC ( IREndness end, in IRStmt_LLSC()
2270 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_LLSC()
2278 IRStmt* IRStmt_Dirty ( IRDirty* d ) in IRStmt_Dirty()
2280 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_Dirty()
2285 IRStmt* IRStmt_MBE ( IRMBusEvent event ) in IRStmt_MBE()
2287 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_MBE()
2292 IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst, in IRStmt_Exit()
2294 IRStmt* s = LibVEX_Alloc_inline(sizeof(IRStmt)); in IRStmt_Exit()
2324 bb->stmts = LibVEX_Alloc_inline(bb->stmts_size * sizeof(IRStmt*)); in emptyIRSB()
2501 IRStmt* deepCopyIRStmt ( const IRStmt* s ) in deepCopyIRStmt()
2578 IRStmt** sts2; in deepCopyIRSB()
2581 sts2 = LibVEX_Alloc_inline(bb2->stmts_used * sizeof(IRStmt*)); in deepCopyIRSB()
3622 void addStmtToIRSB ( IRSB* bb, IRStmt* st ) in addStmtToIRSB()
3626 IRStmt** stmts2 = LibVEX_Alloc_inline(2 * bb->stmts_size * sizeof(IRStmt*)); in addStmtToIRSB()
3805 Bool isFlatIRStmt ( const IRStmt* st ) in isFlatIRStmt()
3933 void sanityCheckFail ( const IRSB* bb, const IRStmt* stmt, const HChar* what ) in sanityCheckFail()
3984 void useBeforeDef_Temp ( const IRSB* bb, const IRStmt* stmt, IRTemp tmp, in useBeforeDef_Temp()
3994 void useBeforeDef_Expr ( const IRSB* bb, const IRStmt* stmt, in useBeforeDef_Expr()
4058 void useBeforeDef_Stmt ( const IRSB* bb, const IRStmt* stmt, Int* def_counts ) in useBeforeDef_Stmt()
4141 void tcExpr ( const IRSB* bb, const IRStmt* stmt, const IRExpr* expr, in tcExpr()
4350 void tcStmt ( const IRSB* bb, const IRStmt* stmt, IRType gWordTy ) in tcStmt()
4663 const IRStmt* stmt; in sanityCheckIRSB()