Searched refs:sbIn (Results 1 – 8 of 8) sorted by relevance
/external/valgrind/main/exp-sgcheck/ |
D | h_main.c | 609 IRSB* sbIn, in h_instrument() argument 639 pce.sb = deepCopyIRSBExceptStmts(sbIn); in h_instrument() 647 for (i = 0; i < sbIn->tyenv->types_used; i++) { in h_instrument() 653 tl_assert( VG_(sizeXA)( pce.qmpMap ) == sbIn->tyenv->types_used ); in h_instrument() 665 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in h_instrument() 666 IRStmt* st = sbIn->stmts[i]; in h_instrument() 669 stmt( 'C', &pce, sbIn->stmts[i] ); in h_instrument() 675 tl_assert(sbIn->stmts_used > 0); in h_instrument() 677 tl_assert(i < sbIn->stmts_used); in h_instrument() 678 tl_assert(sbIn->stmts[i]->tag == Ist_IMark); in h_instrument() [all …]
|
D | h_main.h | 72 IRSB* sbIn,
|
/external/valgrind/main/exp-bbv/ |
D | bbv_main.c | 348 IRSB* sbIn, VexGuestLayout* layout, in bbv_instrument() argument 367 sbOut = deepCopyIRSBExceptStmts(sbIn); in bbv_instrument() 371 while ( (i < sbIn->stmts_used) && (sbIn->stmts[i]->tag!=Ist_IMark)) { in bbv_instrument() 372 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in bbv_instrument() 377 tl_assert(sbIn->stmts_used > 0); in bbv_instrument() 378 st = sbIn->stmts[i]; in bbv_instrument() 421 while(i < sbIn->stmts_used) { in bbv_instrument() 422 st=sbIn->stmts[i]; in bbv_instrument()
|
/external/valgrind/main/callgrind/ |
D | main.c | 816 void CLG_(collectBlockInfo)(IRSB* sbIn, in CLG_() 832 if (!sbIn) return; in CLG_() 834 for (i = 0; i < sbIn->stmts_used; i++) { in CLG_() 835 st = sbIn->stmts[i]; in CLG_() 909 IRSB* sbIn, in CLG_() 931 return sbIn; in CLG_() 937 clgs.sbOut = deepCopyIRSBExceptStmts(sbIn); in CLG_() 941 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in CLG_() 942 addStmtToIRSB( clgs.sbOut, sbIn->stmts[i] ); in CLG_() 947 CLG_ASSERT(sbIn->stmts_used >0); in CLG_() [all …]
|
/external/valgrind/main/cachegrind/ |
D | cg_main.c | 577 SB_info* get_SB_info(IRSB* sbIn, Addr origAddr) in get_SB_info() argument 585 for (i = 0; i < sbIn->stmts_used; i++) { in get_SB_info() 586 st = sbIn->stmts[i]; in get_SB_info() 952 IRSB* sbIn, in cg_instrument() argument 961 IRTypeEnv* tyenv = sbIn->tyenv; in cg_instrument() 970 cgs.sbOut = deepCopyIRSBExceptStmts(sbIn); in cg_instrument() 974 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in cg_instrument() 975 addStmtToIRSB( cgs.sbOut, sbIn->stmts[i] ); in cg_instrument() 980 tl_assert(sbIn->stmts_used > 0); in cg_instrument() 981 tl_assert(i < sbIn->stmts_used); in cg_instrument() [all …]
|
/external/valgrind/main/lackey/ |
D | lk_main.c | 603 IRSB* sbIn, in lk_instrument() argument 613 IRTypeEnv* tyenv = sbIn->tyenv; in lk_instrument() 624 sbOut = deepCopyIRSBExceptStmts(sbIn); in lk_instrument() 628 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in lk_instrument() 629 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in lk_instrument() 655 for (/*use current i*/; i < sbIn->stmts_used; i++) { in lk_instrument() 656 IRStmt* st = sbIn->stmts[i]; in lk_instrument()
|
/external/valgrind/main/exp-dhat/ |
D | dh_main.c | 874 IRSB* sbIn, in dh_instrument() argument 881 IRTypeEnv* tyenv = sbIn->tyenv; in dh_instrument() 890 sbOut = deepCopyIRSBExceptStmts(sbIn); in dh_instrument() 894 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in dh_instrument() 895 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in dh_instrument() 899 for (/*use current i*/; i < sbIn->stmts_used; i++) { in dh_instrument() 900 IRStmt* st = sbIn->stmts[i]; in dh_instrument()
|
/external/valgrind/main/massif/ |
D | ms_main.c | 2079 static IRSB* ms_instrument2( IRSB* sbIn ) in ms_instrument2() argument 2089 sbOut = deepCopyIRSBExceptStmts(sbIn); in ms_instrument2() 2091 for (i = 0; i < sbIn->stmts_used; i++) { in ms_instrument2() 2092 IRStmt* st = sbIn->stmts[i]; in ms_instrument2() 2117 IRSB* sbIn, in ms_instrument() argument 2130 if (clo_time_unit == TimeI) { return ms_instrument2(sbIn); } in ms_instrument() 2131 else if (clo_time_unit == TimeMS) { return sbIn; } in ms_instrument() 2132 else if (clo_time_unit == TimeB) { return sbIn; } in ms_instrument()
|