Searched defs:is_valid (Results 1 - 23 of 23) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A Dregister_zero.hpp61 assert(is_valid(), "invalid register");
64 bool is_valid() const { function in class:RegisterImpl
96 assert(is_valid(), "invalid register");
99 bool is_valid() const { function in class:FloatRegisterImpl
H A Dframe_zero.cpp275 bool is_valid = istate->self_link() == istate; local
282 if (is_valid && !strcmp(field, "_method")) {
285 else if (is_valid && !strcmp(field, "_bcp") && istate->bcp()) {
300 if (!is_valid)
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dregister_x86.hpp65 int encoding() const { assert(is_valid(), "invalid register"); return (intptr_t)this; }
66 bool is_valid() const { return 0 <= (intptr_t)this && (intptr_t)this < number_of_registers; } function in class:RegisterImpl
119 int encoding() const { assert(is_valid(), "invalid register"); return (intptr_t)this; }
120 bool is_valid() const { return 0 <= (intptr_t)this && (intptr_t)this < number_of_registers; } function in class:FloatRegisterImpl
161 int encoding() const { assert(is_valid(), err_msg("invalid register (%d)", (int)(intptr_t)this )); return (intptr_t)this; }
162 bool is_valid() const { return 0 <= (intptr_t)this && (intptr_t)this < number_of_registers; } function in class:XMMRegisterImpl
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp97 static bool is_valid(Name n) { function in class:VALUE_OBJ_CLASS_SPEC
102 return is_valid(n) && !is_stack(n);
136 } else if (r->is_valid()) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp72 JvmtiRawMonitor::is_valid() { function in class:JvmtiRawMonitor
H A DjvmtiImpl.cpp277 bool JvmtiBreakpoint::is_valid() { function in class:JvmtiBreakpoint
H A DjvmtiEnvBase.cpp117 JvmtiEnvBase::is_valid() { function in class:JvmtiEnvBase
279 if (env->is_valid()) {
373 if (prefix_count == 0 || !is_valid()) {
468 if (callbacks != NULL && is_valid()) {
H A DjvmtiTagMap.cpp1781 bool is_valid() const { return _valid; } function in class:VALUE_OBJ_CLASS_SPEC
1876 assert(_basic_context.is_valid(), "invalid");
1883 assert(_advanced_context.is_valid(), "invalid");
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp104 } else if (!is_valid()) {
112 bool is_valid() const { return ((intptr_t) this) != BAD; } function in class:VMRegImpl
114 bool is_reg() const { return is_valid() && !is_stack(); }
222 return (_first->is_valid()) && (_first->value() + 1 == _second->value());
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.hpp83 bool is_valid() const { return _gen != NULL; } function in class:VALUE_OBJ_CLASS_SPEC
H A Dbytecode.hpp238 bool is_valid() const { return is_invokeinterface() || function in class:Bytecode_invoke
248 // Helper to skip verification. Used is_valid() to check if the result is really an invoke
271 bool is_valid() const { return is_getfield() || function in class:Bytecode_field
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.hpp100 bool is_valid() const { function in class:VALUE_OBJ_CLASS_SPEC
H A DperfData.hpp307 inline bool is_valid() { return _valuep != NULL; } function in class:PerfData
392 if (is_valid()) *(jlong*)_valuep = initial_value;
413 if (is_valid()) *(jlong*)_valuep = initial_value;
515 if (is_valid()) set_string(initial_value);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.cpp270 bool ObjArrayTask::is_valid() const { function in class:ObjArrayTask
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.hpp268 bool is_valid(ciProfileData* current) { return current != NULL; } function in class:ciMethodData
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.hpp49 bool is_valid() { return _is_valid; } function in class:MethodLivenessResult
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp133 bool is_valid() const { return _origin != NONE; } function in class:VALUE_OBJ_CLASS_SPEC
219 bool is_valid() const { return _fault != NO_FAULT; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.hpp122 bool is_valid() const { return _src_region_idx > 0; } function in class:SplitInfo
167 return _src_region_idx == region_idx && is_valid();
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.hpp1432 bool is_valid(ProfileData* current) { return current != NULL; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dregister_sparc.hpp71 int encoding() const { assert(is_valid(), "invalid register"); return value(); }
75 bool is_valid() const { return (0 <= (value()&0x7F) && (value()&0x7F) < number_of_registers); } function in class:RegisterImpl
240 int encoding() const { assert(is_valid(), "invalid register"); return value(); }
264 bool is_valid() const { return 0 <= value() && value() < number_of_registers; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp179 bool is_valid() const { return start() != NULL; } function in class:IRScope
297 bool is_valid() const { return top_scope()->is_valid(); } function in class:IR
H A Dc1_LIR.hpp354 bool is_valid() const { return kind_field() != illegal_value; } function in class:LIR_OprDesc
2246 assert(opr->is_valid(), "should not call this otherwise");
2263 if (address->_base->is_valid()) {
2268 if (address->_index->is_valid()) {
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp328 bool is_valid(int id) const { return id < length(); } function in class:ParScanThreadStateSet
616 assert(_state_set->is_valid(worker_id), "Should not have been called");

Completed in 126 milliseconds