• Home
  • Raw
  • Download

Lines Matching refs:IRStmt

1155 void ppIRStmt ( IRStmt* s )  in ppIRStmt()
1616 IRStmt* IRStmt_NoOp ( void ) in IRStmt_NoOp()
1619 static IRStmt static_closure; in IRStmt_NoOp()
1623 IRStmt* IRStmt_IMark ( Addr64 addr, Int len, UChar delta ) { in IRStmt_IMark()
1624 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_IMark()
1631 IRStmt* IRStmt_AbiHint ( IRExpr* base, Int len, IRExpr* nia ) { in IRStmt_AbiHint()
1632 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_AbiHint()
1639 IRStmt* IRStmt_Put ( Int off, IRExpr* data ) { in IRStmt_Put()
1640 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Put()
1646 IRStmt* IRStmt_PutI ( IRRegArray* descr, IRExpr* ix, in IRStmt_PutI()
1648 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_PutI()
1656 IRStmt* IRStmt_WrTmp ( IRTemp tmp, IRExpr* data ) { in IRStmt_WrTmp()
1657 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_WrTmp()
1663 IRStmt* IRStmt_Store ( IREndness end, IRExpr* addr, IRExpr* data ) { in IRStmt_Store()
1664 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Store()
1672 IRStmt* IRStmt_CAS ( IRCAS* cas ) { in IRStmt_CAS()
1673 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_CAS()
1678 IRStmt* IRStmt_LLSC ( IREndness end, in IRStmt_LLSC()
1680 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_LLSC()
1688 IRStmt* IRStmt_Dirty ( IRDirty* d ) in IRStmt_Dirty()
1690 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Dirty()
1695 IRStmt* IRStmt_MBE ( IRMBusEvent event ) in IRStmt_MBE()
1697 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_MBE()
1702 IRStmt* IRStmt_Exit ( IRExpr* guard, IRJumpKind jk, IRConst* dst ) { in IRStmt_Exit()
1703 IRStmt* s = LibVEX_Alloc(sizeof(IRStmt)); in IRStmt_Exit()
1732 bb->stmts = LibVEX_Alloc(bb->stmts_size * sizeof(IRStmt*)); in emptyIRSB()
1881 IRStmt* deepCopyIRStmt ( IRStmt* s ) in deepCopyIRStmt()
1946 IRStmt** sts2; in deepCopyIRSB()
1949 sts2 = LibVEX_Alloc(bb2->stmts_used * sizeof(IRStmt*)); in deepCopyIRSB()
2611 void addStmtToIRSB ( IRSB* bb, IRStmt* st ) in addStmtToIRSB()
2615 IRStmt** stmts2 = LibVEX_Alloc(2 * bb->stmts_size * sizeof(IRStmt*)); in addStmtToIRSB()
2761 Bool isFlatIRStmt ( IRStmt* st ) in isFlatIRStmt()
2873 void sanityCheckFail ( IRSB* bb, IRStmt* stmt, HChar* what ) in sanityCheckFail()
2924 void useBeforeDef_Temp ( IRSB* bb, IRStmt* stmt, IRTemp tmp, Int* def_counts ) in useBeforeDef_Temp()
2933 void useBeforeDef_Expr ( IRSB* bb, IRStmt* stmt, IRExpr* expr, Int* def_counts ) in useBeforeDef_Expr()
2983 void useBeforeDef_Stmt ( IRSB* bb, IRStmt* stmt, Int* def_counts ) in useBeforeDef_Stmt()
3043 void tcExpr ( IRSB* bb, IRStmt* stmt, IRExpr* expr, IRType gWordTy ) in tcExpr()
3246 void tcStmt ( IRSB* bb, IRStmt* stmt, IRType gWordTy ) in tcStmt()
3445 IRStmt* stmt; in sanityCheckIRSB()