Searched refs:_state (Results 1 - 25 of 48) sorted by relevance

12

/openjdk9/hotspot/src/share/vm/gc/g1/
H A DconcurrentMarkThread.hpp51 volatile State _state; member in class:ConcurrentMarkThread
70 void set_idle() { assert(_state != Started, "must not be starting a new cycle"); _state = Idle; }
71 bool idle() { return _state == Idle; }
72 void set_started() { assert(_state == Idle, "cycle in progress"); _state = Started; }
73 bool started() { return _state == Started; }
74 void set_in_progress() { assert(_state == Started, "must be starting a cycle"); _state = InProgress; }
75 bool in_progress() { return _state
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java32 private int _state; field in class:CellTypeState
76 _state = state;
80 return new CellTypeState(_state);
131 public boolean isBottom() { return _state == 0; }
132 public boolean isLive() { return ((_state & live_bits_mask) != 0); }
139 if (isInfoTop() && ((_state & info_mask) != info_mask)) {
143 if (isInfoBottom() && ((_state & info_mask) != 0)) {
149 public boolean isAddress() { return ((_state & bits_mask) == addr_bit); }
150 public boolean isReference() { return ((_state & bits_mask) == ref_bit); }
151 public boolean isValue() { return ((_state
[all...]
/openjdk9/hotspot/src/share/vm/shark/
H A DsharkIntrinsics.hpp41 : SharkTargetInvariants(state, target), _state(state) {}
44 SharkState* _state; member in class:SharkIntrinsics
48 return _state;
H A DsharkFunction.cpp148 _state(block->current_state()->copy()),
158 SharkState* _state; member in class:DeferredZeroCheck
173 return _state;
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/util/
H A DDOMStreamReader.java113 protected int _state; field in class:DOMStreamReader
229 _state = START_DOCUMENT;
326 if (_state == START_ELEMENT)
335 if (_state == START_ELEMENT) {
347 if (_state == START_ELEMENT) {
363 if (_state == START_ELEMENT) {
371 if (_state == START_ELEMENT) {
379 if (_state == START_ELEMENT) {
386 if (_state == START_ELEMENT) {
393 if (_state
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java121 protected int _state; field in class:DOMStreamReader
237 _state = START_DOCUMENT;
334 if (_state == START_ELEMENT)
343 if (_state == START_ELEMENT) {
355 if (_state == START_ELEMENT) {
371 if (_state == START_ELEMENT) {
379 if (_state == START_ELEMENT) {
387 if (_state == START_ELEMENT) {
394 if (_state == START_ELEMENT) {
401 if (_state
[all...]
/openjdk9/hotspot/src/share/vm/runtime/
H A DosThread.cpp43 switch (_state) {
53 default: st->print("unknown state %d", _state); break;
H A Dsafepoint.hpp94 static volatile SynchronizeState _state; // Threads might read this flag directly, without acquiring the Threads_lock member in class:SafepointSynchronize
146 inline static bool is_at_safepoint() { return _state == _synchronized; }
147 inline static bool is_synchronizing() { return _state == _synchronizing; }
151 return (_state != _not_synchronized);
184 static void set_is_at_safepoint() { _state = _synchronized; }
185 static void set_is_not_at_safepoint() { _state = _not_synchronized; }
188 static address address_of_state() { return (address)&_state; }
H A DosThread.hpp67 volatile ThreadState _state; // Thread state *hint* member in class:OSThread
77 void set_state(ThreadState state) { _state = state; }
78 ThreadState get_state() { return _state; }
H A Dsafepoint.cpp74 SafepointSynchronize::SynchronizeState volatile SafepointSynchronize::_state = SafepointSynchronize::_not_synchronized; member in class:SafepointSynchronize::SafepointSynchronize
108 assert( _state == _not_synchronized, "trying to safepoint synchronize with wrong state");
148 // the safepoint _state to see if we must block. If the
179 _state = _synchronizing;
377 _state = _synchronized;
473 assert(_state == _synchronized, "must be synchronized before ending safepoint synchronization");
477 _state = _not_synchronized;
1337 if (_state == _not_synchronized) {
1339 } else if (_state == _synchronizing || _state
[all...]
H A Dos.hpp910 volatile State _state; member in class:os::SuspendResume
919 SuspendResume() : _state(SR_RUNNING) { }
921 State state() const { return _state; }
944 return _state == SR_RUNNING;
948 return _state == SR_SUSPEND_REQUEST;
952 return _state == SR_SUSPENDED;
/openjdk9/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp91 unsigned int _state; member in class:VALUE_OBJ_CLASS_SPEC
142 s._state = state;
179 bool is_bottom() const { return _state == 0; }
180 bool is_live() const { return ((_state & live_bits_mask) != 0); }
187 if (is_info_top() && ((_state & info_mask) != info_mask)) {
191 if (is_info_bottom() && ((_state & info_mask) != 0)) {
197 bool is_address() const { return ((_state & bits_mask) == addr_bit); }
198 bool is_reference() const { return ((_state & bits_mask) == ref_bit); }
199 bool is_value() const { return ((_state & bits_mask) == val_bit); }
200 bool is_uninit() const { return ((_state
265 CellTypeState* _state; // State (vars, stack) at entry. member in class:BasicBlock
313 CellTypeState *_state; // list of states member in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DpsPromotionLAB.cpp62 _state = needs_flush;
64 _state = zero_size;
73 assert(_state != flushed, "Attempt to flush PLAB twice");
78 if (_state == zero_size)
102 _state = flushed;
122 assert(_state != flushed, "Attempt to flush PLAB twice");
125 if (_state == zero_size)
H A DpsPromotionLAB.hpp53 LabState _state; member in class:PSPromotionLAB
62 PSPromotionLAB() : _top(NULL), _bottom(NULL), _end(NULL), _state(zero_size) { }
75 bool is_flushed() { return _state == flushed; }
118 // assert(_state != flushed, "Sanity");
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DInterfaceEntry.java310 return _state;
315 _state = new Vector ();
320 if (_state == null)
321 _state = new Vector ();
323 for (Enumeration e = _state.elements (); e.hasMoreElements ();)
326 _state.addElement (state);
351 private Vector _state = null; field in class:InterfaceEntry
/openjdk9/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp352 JvmtiThreadState* _state; member in class:VM_UpdateForPopTopFrame
357 _state = state;
363 JavaThread* jt = _state->get_thread();
365 _state->update_for_pop_top_frame();
376 JvmtiThreadState* _state; member in class:VM_SetFramePop
383 _state = state;
393 JavaThread* jt = _state->get_thread();
395 int frame_number = _state->count_frames() - _depth;
396 _state->env_thread_state((JvmtiEnvBase*)_env)->set_frame_pop(frame_number);
597 JvmtiThreadState *_state; member in class:VM_GetFrameCount
[all...]
H A DjvmtiThreadState.hpp412 JvmtiThreadState *_state; member in class:RedefineVerifyMark
418 JvmtiThreadState *state) : _state(state), _scratch_class(*scratch_class)
420 _state->set_class_versions_map(the_class, scratch_class);
429 _state->clear_class_versions_map();
/openjdk9/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dvm_version_solaris_sparc.cpp115 } _state; member in class:PICL::UniqueValueVisitor
118 UniqueValueVisitor(PICL* picl) : _picl(picl), _state(INITIAL) { }
120 assert(_state == ASSIGNED, "Precondition");
124 assert(_state == INITIAL, "Precondition");
126 _state = ASSIGNED;
128 bool is_initial() { return _state == INITIAL; }
129 bool is_assigned() { return _state == ASSIGNED; }
130 bool is_inconsistent() { return _state == INCONSISTENT; }
131 void set_inconsistent() { _state = INCONSISTENT; }
/openjdk9/hotspot/src/share/vm/code/
H A Dnmethod.hpp114 volatile unsigned char _state; // {in_use, not_entrant, zombie, unloaded} member in class:nmethod
306 bool is_in_use() const { return _state == in_use; }
307 bool is_alive() const { unsigned char s = _state; return s < zombie; }
308 bool is_not_entrant() const { return _state == not_entrant; }
309 bool is_zombie() const { return _state == zombie; }
310 bool is_unloaded() const { return _state == unloaded; }
334 return _state;
440 // this nmethod based on the current value of _state.
576 static int state_offset() { return offset_of(nmethod, _state); }
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/util/xml/impl/
H A DXMLStreamWriterImpl.java66 private int _state = 0; field in class:XMLStreamWriterImpl
152 if (_state > 0) {
155 _state = STATE_XML_DECL;
216 _state = STATE_ELEMENT;
347 _state = 0;
586 int _state; field in class:XMLStreamWriterImpl.Element
617 return _state;
626 _state = state;
/openjdk9/hotspot/src/share/vm/aot/
H A DaotCodeHeap.cpp299 _code_to_aot[code_id]._state = invalid;
316 if (_code_to_aot[code_id]._state == invalid) {
322 if (Atomic::cmpxchg(in_use, (jint*)&_code_to_aot[code_id]._state, not_set) != not_set) {
380 guarantee(_code_to_aot[code_id]._state != invalid, "stub %s can't be invalidated", full_name);
384 if (Atomic::cmpxchg(in_use, (jint*)&_code_to_aot[code_id]._state, not_set) != not_set) {
385 fatal("stab '%s' code state is %d", full_name, _code_to_aot[code_id]._state);
659 if (Atomic::cmpxchg(invalid, (jint*)&_code_to_aot[code_id]._state, not_set) != not_set) {
660 if (_code_to_aot[code_id]._state == in_use) {
740 if (_code_to_aot[code_id]._state == invalid) {
766 if (_code_to_aot[index]._state !
[all...]
/openjdk9/hotspot/src/share/vm/opto/
H A DidealKit.cpp54 DEBUG_ONLY(_state = new (C->node_arena()) GrowableArray<int>(C->node_arena(), init_size, 0, 0));
95 DEBUG_ONLY(if (push_new_state) _state->push(IfThenS));
105 DEBUG_ONLY(_state->pop());
108 DEBUG_ONLY(_state->push(ElseS));
150 DEBUG_ONLY(_state->pop());
181 DEBUG_ONLY(_state->push(LoopS));
196 DEBUG_ONLY(_state->pop());
290 DEBUG_ONLY(_state->push(BlockS));
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp190 ValueStack* _state; // the current execution state member in class:VALUE_OBJ_CLASS_SPEC
202 ValueStack* state() const { return _state; }
203 void set_state(ValueStack* state) { _state = state; }
329 set_inline_cleanup_info(_block, _last, _state);
337 _state = inline_cleanup_state();
H A Dc1_ValueMap.cpp318 ValueStack * _state; member in class:LoopInvariantCodeMotion
346 _state = block_end->state_before();
348 if (!_state) {
352 _state = block_end->state();
417 cur->set_state_before(_state->copy());
420 cur->set_exception_state(_state->copy());
/openjdk9/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp533 StateVector* _state; member in class:ciTypeFlow::Block
563 StateVector* state() const { return _state; }
593 int stack_size() const { return _state->stack_size(); }
594 int monitor_count() const { return _state->monitor_count(); }
595 ciType* local_type_at(int i) const { return _state->local_type_at(i); }
596 ciType* stack_type_at(int i) const { return _state->stack_type_at(i); }
609 LocalSet* def_locals() { return _state->def_locals(); }
610 const LocalSet* def_locals() const { return _state->def_locals(); }
651 _state->copy_into(copy);

Completed in 303 milliseconds

12