Home
last modified time | relevance | path

Searched refs:sbIn (Results 1 – 8 of 8) sorted by relevance

/external/valgrind/main/exp-sgcheck/
Dh_main.c609 IRSB* sbIn, in h_instrument() argument
640 pce.sb = deepCopyIRSBExceptStmts(sbIn); in h_instrument()
648 for (i = 0; i < sbIn->tyenv->types_used; i++) { in h_instrument()
654 tl_assert( VG_(sizeXA)( pce.qmpMap ) == sbIn->tyenv->types_used ); in h_instrument()
666 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in h_instrument()
667 IRStmt* st = sbIn->stmts[i]; in h_instrument()
670 stmt( 'C', &pce, sbIn->stmts[i] ); in h_instrument()
676 tl_assert(sbIn->stmts_used > 0); in h_instrument()
678 tl_assert(i < sbIn->stmts_used); in h_instrument()
679 tl_assert(sbIn->stmts[i]->tag == Ist_IMark); in h_instrument()
[all …]
Dh_main.h72 IRSB* sbIn,
/external/valgrind/main/exp-bbv/
Dbbv_main.c348 IRSB* sbIn, VexGuestLayout* layout, in bbv_instrument() argument
368 sbOut = deepCopyIRSBExceptStmts(sbIn); in bbv_instrument()
372 while ( (i < sbIn->stmts_used) && (sbIn->stmts[i]->tag!=Ist_IMark)) { in bbv_instrument()
373 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in bbv_instrument()
378 tl_assert(sbIn->stmts_used > 0); in bbv_instrument()
379 st = sbIn->stmts[i]; in bbv_instrument()
422 while(i < sbIn->stmts_used) { in bbv_instrument()
423 st=sbIn->stmts[i]; in bbv_instrument()
/external/valgrind/main/callgrind/
Dmain.c860 void CLG_(collectBlockInfo)(IRSB* sbIn, in CLG_()
876 if (!sbIn) return; in CLG_()
878 for (i = 0; i < sbIn->stmts_used; i++) { in CLG_()
879 st = sbIn->stmts[i]; in CLG_()
953 IRSB* sbIn, in CLG_()
965 IRTypeEnv* tyenv = sbIn->tyenv; in CLG_()
976 return sbIn; in CLG_()
982 clgs.sbOut = deepCopyIRSBExceptStmts(sbIn); in CLG_()
986 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in CLG_()
987 addStmtToIRSB( clgs.sbOut, sbIn->stmts[i] ); in CLG_()
[all …]
/external/valgrind/main/cachegrind/
Dcg_main.c609 SB_info* get_SB_info(IRSB* sbIn, Addr origAddr) in get_SB_info() argument
617 for (i = 0; i < sbIn->stmts_used; i++) { in get_SB_info()
618 st = sbIn->stmts[i]; in get_SB_info()
1050 IRSB* sbIn, in cg_instrument() argument
1060 IRTypeEnv* tyenv = sbIn->tyenv; in cg_instrument()
1069 cgs.sbOut = deepCopyIRSBExceptStmts(sbIn); in cg_instrument()
1073 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in cg_instrument()
1074 addStmtToIRSB( cgs.sbOut, sbIn->stmts[i] ); in cg_instrument()
1079 tl_assert(sbIn->stmts_used > 0); in cg_instrument()
1080 tl_assert(i < sbIn->stmts_used); in cg_instrument()
[all …]
/external/valgrind/main/lackey/
Dlk_main.c648 IRSB* sbIn, in lk_instrument() argument
658 IRTypeEnv* tyenv = sbIn->tyenv; in lk_instrument()
669 sbOut = deepCopyIRSBExceptStmts(sbIn); in lk_instrument()
673 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in lk_instrument()
674 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in lk_instrument()
700 for (/*use current i*/; i < sbIn->stmts_used; i++) { in lk_instrument()
701 IRStmt* st = sbIn->stmts[i]; in lk_instrument()
/external/valgrind/main/exp-dhat/
Ddh_main.c874 IRSB* sbIn, in dh_instrument() argument
882 IRTypeEnv* tyenv = sbIn->tyenv; in dh_instrument()
891 sbOut = deepCopyIRSBExceptStmts(sbIn); in dh_instrument()
895 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) { in dh_instrument()
896 addStmtToIRSB( sbOut, sbIn->stmts[i] ); in dh_instrument()
900 for (/*use current i*/; i < sbIn->stmts_used; i++) { in dh_instrument()
901 IRStmt* st = sbIn->stmts[i]; in dh_instrument()
/external/valgrind/main/massif/
Dms_main.c2051 static IRSB* ms_instrument2( IRSB* sbIn ) in ms_instrument2() argument
2061 sbOut = deepCopyIRSBExceptStmts(sbIn); in ms_instrument2()
2063 for (i = 0; i < sbIn->stmts_used; i++) { in ms_instrument2()
2064 IRStmt* st = sbIn->stmts[i]; in ms_instrument2()
2089 IRSB* sbIn, in ms_instrument() argument
2103 if (clo_time_unit == TimeI) { return ms_instrument2(sbIn); } in ms_instrument()
2104 else if (clo_time_unit == TimeMS) { return sbIn; } in ms_instrument()
2105 else if (clo_time_unit == TimeB) { return sbIn; } in ms_instrument()