comparison src/cpu/sparc/vm/frame_sparc.cpp @ 8106:ec2eddfed950

8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity Reviewed-by: kvn, sla
author rbackman
date Tue, 26 Feb 2013 14:09:52 +0100
parents 59c790074993
children f36e073d56a4
comparison
equal deleted inserted replaced
8105:94478a033036 8106:ec2eddfed950
214 if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) { 214 if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) {
215 return false; 215 return false;
216 } 216 }
217 } 217 }
218 218
219 // Could just be some random pointer within the codeBlob
220 if (!_cb->code_contains(_pc)) {
221 return false;
222 }
223
219 // Entry frame checks 224 // Entry frame checks
220 if (is_entry_frame()) { 225 if (is_entry_frame()) {
221 // an entry frame must have a valid fp. 226 // an entry frame must have a valid fp.
222 227
223 if (!fp_safe) { 228 if (!fp_safe) {