diff src/cpu/x86/vm/frame_x86.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 5fc51c1ecdeb 47bc9800972c
line wrap: on
line diff
--- a/src/cpu/x86/vm/frame_x86.cpp	Fri Feb 22 10:16:51 2013 -0800
+++ b/src/cpu/x86/vm/frame_x86.cpp	Tue Feb 26 14:09:52 2013 +0100
@@ -91,6 +91,12 @@
         return false;
       }
     }
+
+    // Could just be some random pointer within the codeBlob
+    if (!_cb->code_contains(_pc)) {
+      return false;
+    }
+
     // Entry frame checks
     if (is_entry_frame()) {
       // an entry frame must have a valid fp.