Searched defs:is_bb (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp1181 bool is_bb = tsux->bci() < stream()->cur_bci() || fsux->bci() < stream()->cur_bci(); local
1182 Instruction *i = append(new If(x, cond, false, y, tsux, fsux, is_bb ? state_before : NULL, is_bb));
1296 bool is_bb = tsux->bci() < bci() || fsux->bci() < bci(); local
1297 ValueStack* state_before = is_bb ? copy_state_before() : NULL;
1298 append(new If(ipop(), If::eql, true, key, tsux, fsux, state_before, is_bb));
1338 bool is_bb = tsux->bci() < bci() || fsux->bci() < bci();
1339 ValueStack* state_before = is_bb ? copy_state_before() : NULL;
1340 append(new If(ipop(), If::eql, true, key, tsux, fsux, state_before, is_bb));

Completed in 42 milliseconds