Searched refs:tsux (Results 1 - 6 of 6) 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...]
H A Dc1_Instruction.hpp1827 If(Value x, Condition cond, bool unordered_is_true, Value y, BlockBegin* tsux, BlockBegin* fsux, ValueStack* state_before, bool is_safepoint)
1840 s->append(tsux);
1851 BlockBegin* tsux() const { return sux_for(true); }
1890 IfInstanceOf(ciKlass* klass, Value obj, bool test_is_instance, int instanceof_bci, BlockBegin* tsux, BlockBegin* fsux)
1900 s->append(tsux);
1920 BlockBegin* tsux() const { return sux_for(true); }
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp1114 __ branch(lir_cond(cond), right->type(), x->tsux(), x->usux());
1116 __ branch(lir_cond(cond), right->type(), x->tsux());
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1248 __ branch(lir_cond(cond), right->type(), x->tsux(), x->usux());
1250 __ branch(lir_cond(cond), right->type(), x->tsux());

Completed in 59 milliseconds