< prev index next > src/hotspot/cpu/riscv/frame_riscv.hpp
Print this page
/*
- * Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2026, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2022, Huawei Technologies Co., Ltd. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
intptr_t* ptr_at_addr(int offset) const {
return (intptr_t*) addr_at(offset);
}
public:
+ // Support for scalarized inline type calling convention
+ static intptr_t* repair_sender_sp(nmethod* nm, intptr_t* sp, intptr_t** saved_fp_addr);
+ bool was_augmented_on_entry(int& real_size) const;
+
// Constructors
frame(intptr_t* ptr_sp, intptr_t* ptr_fp, address pc);
frame(intptr_t* ptr_sp, intptr_t* unextended_sp, intptr_t* ptr_fp, address pc);
< prev index next >