Searched refs:_is_complete (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp47 bool _is_complete; member in class:CompileTask
75 bool is_complete() const { return _is_complete; }
86 void mark_complete() { _is_complete = true; }
H A DcompileBroker.cpp283 _is_complete = false;
339 bool_to_str(_is_complete), bool_to_str(_is_success));
575 // Note: "_is_complete" is about to be set, but is not.
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.hpp997 int _is_complete; member in class:InitializeNode
1033 bool is_complete() { return _is_complete != Incomplete; }
1034 bool is_complete_with_arraycopy() { return (_is_complete & WithArraycopy) != 0; }
1038 void set_complete_with_arraycopy() { _is_complete = Complete | WithArraycopy; }
H A Dmemnode.cpp3010 : _is_complete(Incomplete), _does_not_escape(false),
3048 _is_complete = Complete;

Completed in 87 milliseconds