Lines Matching defs:cfg
376 if( t->isa_rawptr() && C->cfg()->_raw_oops.member(def) ) {
417 static void do_liveness( PhaseRegAlloc *regalloc, PhaseCFG *cfg, Block_List *worklist, int max_reg_ints, Arena *A, Dict *safehash ) {
418 int *live = NEW_ARENA_ARRAY(A, int, (cfg->_num_blocks+1) * max_reg_ints);
419 int *tmp_live = &live[cfg->_num_blocks * max_reg_ints];
420 Node *root = cfg->C->root();
427 memset( live, 0, cfg->_num_blocks * (max_reg_ints<<LogBytesPerInt) );
430 worklist->push(cfg->_bbs[root->in(i)->_idx]);
541 worklist->push(cfg->_bbs[b->pred(l)->_idx]);
548 for( i=1; i<cfg->_num_blocks; i++ ) {
549 Block *b = cfg->_blocks[i];
557 if( i == cfg->_num_blocks )
564 for( i=1; i<cfg->_num_blocks; i++ )
565 worklist->push(cfg->_blocks[i]);