src/hotspot/share/gc/shared/collectedHeap.cpp
changeset 49851 9082914ccaf2
parent 49754 ee93c1087584
child 49945 9425445633cf
equal deleted inserted replaced
49850:e286fa159ff1 49851:9082914ccaf2
   168   return result;
   168   return result;
   169 }
   169 }
   170 
   170 
   171 bool CollectedHeap::request_concurrent_phase(const char* phase) {
   171 bool CollectedHeap::request_concurrent_phase(const char* phase) {
   172   return false;
   172   return false;
       
   173 }
       
   174 
       
   175 bool CollectedHeap::is_oop(oop object) const {
       
   176   if (!check_obj_alignment(object)) {
       
   177     return false;
       
   178   }
       
   179 
       
   180   if (!is_in_reserved(object)) {
       
   181     return false;
       
   182   }
       
   183 
       
   184   if (is_in_reserved(object->klass_or_null())) {
       
   185     return false;
       
   186   }
       
   187 
       
   188   return true;
   173 }
   189 }
   174 
   190 
   175 // Memory state functions.
   191 // Memory state functions.
   176 
   192 
   177 
   193