Lines Matching refs:bbIn
4613 IRSB* bbIn, in hg_instrument() argument
4639 bbOut->tyenv = deepCopyIRTypeEnv(bbIn->tyenv); in hg_instrument()
4640 bbOut->next = deepCopyIRExpr(bbIn->next); in hg_instrument()
4641 bbOut->jumpkind = bbIn->jumpkind; in hg_instrument()
4642 bbOut->offsIP = bbIn->offsIP; in hg_instrument()
4646 while (i < bbIn->stmts_used && bbIn->stmts[i]->tag != Ist_IMark) { in hg_instrument()
4647 addStmtToIRSB( bbOut, bbIn->stmts[i] ); in hg_instrument()
4652 tl_assert(bbIn->stmts_used > 0); in hg_instrument()
4653 tl_assert(i < bbIn->stmts_used); in hg_instrument()
4654 st = bbIn->stmts[i]; in hg_instrument()
4659 for (/*use current i*/; i < bbIn->stmts_used; i++) { in hg_instrument()
4660 st = bbIn->stmts[i]; in hg_instrument()
4719 * sizeofIRType(typeOfIRExpr(bbIn->tyenv, cas->dataLo)), in hg_instrument()
4735 dataTy = typeOfIRTemp(bbIn->tyenv, st->Ist.LLSC.result); in hg_instrument()
4758 sizeofIRType(typeOfIRExpr(bbIn->tyenv, st->Ist.Store.data)), in hg_instrument()
4770 IRType type = typeOfIRExpr(bbIn->tyenv, data); in hg_instrument()