< prev index next > src/hotspot/cpu/riscv/continuationHelper_riscv.inline.hpp
Print this page
inline address ContinuationHelper::Frame::real_pc(const frame& f) {
address* pc_addr = &(((address*) f.sp())[-1]);
return *pc_addr;
}
- inline void ContinuationHelper::Frame::patch_pc(const frame& f, address pc) {
+ inline void ContinuationHelper::Frame::patch_pc(const frame& f, address pc, bool callee_augmented) {
address* pc_addr = &(((address*) f.sp())[-1]);
*pc_addr = pc;
}
inline intptr_t* ContinuationHelper::InterpretedFrame::frame_top(const frame& f, InterpreterOopMap* mask) { // inclusive; this will be copied with the frame
< prev index next >