mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
6950617: Zero/Shark interface updates
Zero needs a couple of new methods to allow Shark to access the new frame anchor field. Reviewed-by: twisti
This commit is contained in:
parent
4d6c5d6fef
commit
399d1f6a5f
4 changed files with 17 additions and 0 deletions
|
@ -36,6 +36,10 @@ bool frame::is_interpreted_frame() const {
|
|||
return zeroframe()->is_interpreter_frame();
|
||||
}
|
||||
|
||||
bool frame::is_fake_stub_frame() const {
|
||||
return zeroframe()->is_fake_stub_frame();
|
||||
}
|
||||
|
||||
frame frame::sender_for_entry_frame(RegisterMap *map) const {
|
||||
assert(zeroframe()->is_entry_frame(), "wrong type of frame");
|
||||
assert(map != NULL, "map must be set");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue