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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp740 bool BlockBegin::try_merge(ValueStack* new_state) { argument
757 new_state = new_state->copy(ValueStack::BlockBeginState, bci());
760 MethodLivenessResult liveness = new_state->scope()->method()->liveness_at_bci(bci());
762 assert((int)liveness.size() == new_state->locals_size(), "error in use of liveness");
764 for_each_local_value(new_state, index, new_value) {
766 new_state->invalidate_local(index);
775 for_each_stack_value(new_state, index, new_value) {
776 new_state->setup_phi_for_stack(this, index);
777 TRACE_PHI(tty->print_cr("creating phi-function %c%d for stack %d", new_state
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp391 static bool set_should_compile_new_jobs(jint new_state) { argument
393 jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
394 return (old == (1-new_state));
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.hpp169 void set_trap_state(int new_state) { argument
172 _header._struct._flags = (new_state << trap_shift) | old_flags;
382 void set_trap_state(int new_state) {
383 data()->set_trap_state(new_state);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1439 SharkState *new_state = current_state(); local
1440 SharkState *old_state = new_state->copy();
1441 new_state->replace_all(old_object, new_object);
1450 old_state, new_state);
1458 new_state, old_state);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c2256 Atom *new_state; /* new _net_wm_state value */ local
2282 new_state = calloc(AWT_NET_N_KNOWN_STATES, sizeof(Atom));
2286 new_state = calloc(nitems + AWT_NET_N_KNOWN_STATES, sizeof(Atom));
2309 new_state[new_nitems++] = old_state[i];
2318 new_state[new_nitems] = _XA_NET_WM_STATE_MAXIMIZED_HORZ;
2325 new_state[new_nitems] = _XA_NET_WM_STATE_MAXIMIZED_VERT;
2333 (unsigned char *)new_state, new_nitems);
2335 XFree(new_state);
2485 Atom new_state = _XA_NET_WM_STATE_ABOVE; local
2505 data[0] = new_state;
[all...]

Completed in 68 milliseconds