comparison src/share/vm/runtime/frame.cpp @ 1692:d2ede61b7a12

6976186: integrate Shark HotSpot changes Summary: Shark is a JIT compiler for Zero that uses the LLVM compiler infrastructure. Reviewed-by: kvn, twisti Contributed-by: Gary Benson <gbenson@redhat.com>
author twisti
date Wed, 11 Aug 2010 05:51:21 -0700
parents 126ea7725993
children da877bdc9000
comparison
equal deleted inserted replaced
1691:4a665be40fd3 1692:d2ede61b7a12
1098 oops_interpreted_do(f, map, use_interpreter_oop_map_cache); 1098 oops_interpreted_do(f, map, use_interpreter_oop_map_cache);
1099 } else if (is_entry_frame()) { 1099 } else if (is_entry_frame()) {
1100 oops_entry_do(f, map); 1100 oops_entry_do(f, map);
1101 } else if (CodeCache::contains(pc())) { 1101 } else if (CodeCache::contains(pc())) {
1102 oops_code_blob_do(f, cf, map); 1102 oops_code_blob_do(f, cf, map);
1103 #ifdef SHARK
1104 } else if (is_fake_stub_frame()) {
1105 // nothing to do
1106 #endif // SHARK
1103 } else { 1107 } else {
1104 ShouldNotReachHere(); 1108 ShouldNotReachHere();
1105 } 1109 }
1106 } 1110 }
1107 1111