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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp679 // equal to x->tsux() or x->fsux(). Furthermore, nan_sux equals either
688 BlockBegin* tsux = NULL; local
690 if (lss_sux == eql_sux) { cond = If::leq; tsux = lss_sux; fsux = gtr_sux; }
691 else if (lss_sux == gtr_sux) { cond = If::neq; tsux = lss_sux; fsux = eql_sux; }
692 else if (eql_sux == gtr_sux) { cond = If::geq; tsux = eql_sux; fsux = lss_sux; }
694 If* canon = new If(cmp->x(), cond, nan_sux == tsux, cmp->y(), tsux, fsux, cmp->state_before(), x->is_safepoint());
736 BlockBegin* sux = x->tsux();
H A Dc1_Optimizer.cpp109 BlockBegin* t_block = if_->tsux();
423 BlockBegin* tsux = if_->tsux(); local
429 BlockBegin* tblock = tval->compare(cond, con, tsux, fsux);
430 BlockBegin* fblock = fval->compare(cond, con, tsux, fsux);
H A Dc1_GraphBuilder.cpp1179 BlockBegin* tsux = block_at(stream()->get_dest()); local
1181 bool is_bb = tsux->bci() < stream()->cur_bci() || fsux->bci() < stream()->cur_bci();
1182 Instruction *i = append(new If(x, cond, false, y, tsux, fsux, is_bb ? state_before : NULL, is_bb));
1185 (i->as_Goto()->sux_at(0) == tsux && i->as_Goto()->is_safepoint() == tsux->bci() < stream()->cur_bci()) ||
1200 if (if_node->tsux() == fsux) {
1216 if (goto_node->default_sux() == tsux) {
1294 BlockBegin* tsux = block_at(bci() + sw.dest_offset_at(0)); local
1296 bool is_bb = tsux->bci() < bci() || fsux->bci() < bci();
1298 append(new If(ipop(), If::eql, true, key, tsux, fsu
[all...]

Completed in 82 milliseconds