mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
Merge
This commit is contained in:
commit
ab7a29cdcc
51 changed files with 1539 additions and 386 deletions
|
@ -276,6 +276,15 @@ int compiledVFrame::raw_bci() const {
|
|||
return scope()->bci();
|
||||
}
|
||||
|
||||
bool compiledVFrame::should_reexecute() const {
|
||||
if (scope() == NULL) {
|
||||
// native nmethods have no scope the method/bci is implied
|
||||
nmethod* nm = code();
|
||||
assert(nm->is_native_method(), "must be native");
|
||||
return false;
|
||||
}
|
||||
return scope()->should_reexecute();
|
||||
}
|
||||
|
||||
vframe* compiledVFrame::sender() const {
|
||||
const frame f = fr();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue