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

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_life.java91 boolean new_state = (!old_state && count == 3) || (old_state && (count == 2 || count == 3));
92 if (!changed && new_state != old_state) {
95 next[row_offset + col] = new_state;
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp758 bool BlockBegin::try_merge(ValueStack* new_state) { argument
775 new_state = new_state->copy(ValueStack::BlockBeginState, bci());
778 MethodLivenessResult liveness = new_state->scope()->method()->liveness_at_bci(bci());
780 assert((int)liveness.size() == new_state->locals_size(), "error in use of liveness");
782 for_each_local_value(new_state, index, new_value) {
784 new_state->invalidate_local(index);
793 for_each_stack_value(new_state, index, new_value) {
794 new_state->setup_phi_for_stack(this, index);
795 TRACE_PHI(tty->print_cr("creating phi-function %c%d for stack %d", new_state
[all...]
/openjdk10/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp326 static bool set_should_compile_new_jobs(jint new_state) { argument
328 jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
329 return (old == (1-new_state));
/openjdk10/hotspot/src/share/vm/aot/
H A DaotCompiledMethod.cpp156 bool AOTCompiledMethod::make_not_entrant_helper(int new_state) { argument
165 if (*_state_adr == new_state) {
173 *_state_adr = new_state;
180 if (new_state == not_entrant && method() != NULL) {
196 const char *new_state_str = (new_state == not_entrant) ? "not entrant" : "not used";
H A DaotCompiledMethod.hpp121 bool make_not_entrant_helper(int new_state);
/openjdk10/hotspot/src/share/vm/opto/
H A Dc2compiler.cpp92 int new_state = (successful) ? initialized : failed; local
93 set_state(new_state);
/openjdk10/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1473 SharkState *new_state = current_state(); local
1474 SharkState *old_state = new_state->copy();
1475 new_state->replace_all(old_object, new_object);
1484 old_state, new_state);
1492 new_state, old_state);
/openjdk10/hotspot/src/share/vm/oops/
H A DmethodData.hpp181 void set_trap_state(int new_state) { argument
184 _header._struct._flags = (new_state << trap_shift) | old_flags;
433 void set_trap_state(int new_state) { argument
434 data()->set_trap_state(new_state);
/openjdk10/hotspot/src/cpu/s390/vm/
H A DmacroAssembler_s390.hpp779 void set_thread_state(JavaThreadState new_state);
H A DmacroAssembler_s390.cpp3860 void MacroAssembler::set_thread_state(JavaThreadState new_state) {
3865 store_const(Address(Z_thread, JavaThread::thread_state_offset()), new_state, Z_R0, false);

Completed in 120 milliseconds