Lines Matching full:irsb
1351 void ppIRSB ( IRSB* bb )
1354 vex_printf("IRSB {\n");
1841 /* Constructors -- IRSB */
1843 IRSB* emptyIRSB ( void )
1845 IRSB* bb = LibVEX_Alloc(sizeof(IRSB));
2073 IRSB* deepCopyIRSB ( IRSB* bb )
2077 IRSB* bb2 = deepCopyIRSBExceptStmts(bb);
2086 IRSB* deepCopyIRSBExceptStmts ( IRSB* bb )
2088 IRSB* bb2 = emptyIRSB();
2863 void addStmtToIRSB ( IRSB* bb, IRStmt* st )
3133 void sanityCheckFail ( IRSB* bb, IRStmt* stmt, HChar* what )
3184 void useBeforeDef_Temp ( IRSB* bb, IRStmt* stmt, IRTemp tmp, Int* def_counts )
3193 void useBeforeDef_Expr ( IRSB* bb, IRStmt* stmt, IRExpr* expr, Int* def_counts )
3247 void useBeforeDef_Stmt ( IRSB* bb, IRStmt* stmt, Int* def_counts )
3309 void tcExpr ( IRSB* bb, IRStmt* stmt, IRExpr* expr, IRType gWordTy )
3514 void tcStmt ( IRSB* bb, IRStmt* stmt, IRType gWordTy )
3733 void sanityCheckIRSB ( IRSB* bb, HChar* caller,