Searched refs:eql (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessEnvironment.java241 int beg, end, eql;
245 (eql = envblock.indexOf('=' , beg+1)) != -1);
248 if (eql < end)
249 theEnvironment.put(envblock.substring(beg, eql),
250 envblock.substring(eql+1,end));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp39 case eql: return eql;
47 return eql;
53 case eql: return neq;
54 case neq: return eql;
61 return eql;
305 return cond() == eql || cond() == neq;
477 case If::eql: return x == y ? cond_true : cond_false;
490 case If::eql: return x == y ? cond_true : cond_false;
505 case If::eql
[all...]
H A Dc1_Canonicalizer.cpp614 case If::eql: return x == y;
644 case If::eql: sux = x->sux_for(true); break;
731 if (x->cond() == Instruction::eql) {
767 set_canonical(new If(x->tag(), If::eql, true, key, x->sux_at(0), x->default_sux(), x->state_before(), x->is_safepoint()));
798 set_canonical(new If(x->tag(), If::eql, true, key, x->sux_at(0), x->default_sux(), x->state_before(), x->is_safepoint()));
H A Dc1_GraphBuilder.cpp1298 append(new If(ipop(), If::eql, true, key, tsux, fsux, state_before, is_bb));
1340 append(new If(ipop(), If::eql, true, key, tsux, fsux, state_before, is_bb));
2643 case Bytecodes::_ifeq : if_zero(intType , If::eql); break;
2649 case Bytecodes::_if_icmpeq : if_same(intType , If::eql); break;
2655 case Bytecodes::_if_acmpeq : if_same(objectType, If::eql); break;
2688 case Bytecodes::_ifnull : if_null(objectType, If::eql); break;
H A Dc1_InstructionPrinter.cpp54 case If::eql: return "==";
H A Dc1_LIRGenerator.hpp409 case If::eql: l = lir_cond_equal; break;
H A Dc1_Instruction.hpp354 eql, neq, lss, leq, gtr, geq enumerator in enum:Instruction::Condition
H A Dc1_LIRGenerator.cpp711 case If::eql: return NULL;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp1070 // for longs, only conditions "eql", "neq", "lss", "geq" are valid;
1091 (cond == If::eql || cond == If::neq)) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1213 // for longs, only conditions "eql", "neq", "lss", "geq" are valid;
1223 if (tag == longTag && yin->is_constant() && yin->get_jlong_constant() == 0 && (cond == If::eql || cond == If::neq)) {

Completed in 768 milliseconds