Skip to content

Commit 6b1ff4f

Browse files
committedApr 14, 2022
Split out ContinuationEntry and ContinuationWrapper classes
Reviewed-by: rpressler
1 parent 08b89d5 commit 6b1ff4f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+851
-467
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*
23+
*/
24+
25+
#ifndef CPU_AARCH64_CONTINUATIONENTRY_AARCH64_INLINE_HPP
26+
#define CPU_AARCH64_CONTINUATIONENTRY_AARCH64_INLINE_HPP
27+
28+
#include "runtime/continuationEntry.hpp"
29+
30+
#include "code/codeCache.hpp"
31+
#include "runtime/frame.inline.hpp"
32+
#include "runtime/registerMap.hpp"
33+
34+
inline frame ContinuationEntry::to_frame() const {
35+
static CodeBlob* cb = CodeCache::find_blob(entry_pc());
36+
return frame(entry_sp(), entry_sp(), entry_fp(), entry_pc(), cb);
37+
}
38+
39+
inline intptr_t* ContinuationEntry::entry_fp() const {
40+
return (intptr_t*)((address)this + size());
41+
}
42+
43+
inline void ContinuationEntry::update_register_map(RegisterMap* map) const {
44+
intptr_t** fp = (intptr_t**)(bottom_sender_sp() - frame::sender_sp_offset);
45+
frame::update_map_with_saved_link(map, fp);
46+
}
47+
48+
49+
#endif // CPU_AARCH64_CONTINUATIONENTRY_AARCH64_INLINE_HPP

‎src/hotspot/cpu/aarch64/continuationFreezeThaw_aarch64.inline.hpp

+15-3
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,26 @@
2222
*
2323
*/
2424

25-
#ifndef CPU_AARCH64_CONTINUATION_FREEZE_THAW_AARCH64_INLINE_HPP
26-
#define CPU_AARCH64_CONTINUATION_FREEZE_THAW_AARCH64_INLINE_HPP
25+
#ifndef CPU_AARCH64_CONTINUATIONFREEZETHAW_AARCH64_INLINE_HPP
26+
#define CPU_AARCH64_CONTINUATIONFREEZETHAW_AARCH64_INLINE_HPP
2727

2828
#include "code/codeBlob.inline.hpp"
2929
#include "oops/stackChunkOop.inline.hpp"
3030
#include "runtime/frame.hpp"
3131
#include "runtime/frame.inline.hpp"
3232

33+
34+
inline void patch_callee_link(const frame& f, intptr_t* fp) {
35+
DEBUG_ONLY(intptr_t* orig = *ContinuationHelper::Frame::callee_link_address(f));
36+
*ContinuationHelper::Frame::callee_link_address(f) = fp;
37+
}
38+
39+
inline void patch_callee_link_relative(const frame& f, intptr_t* fp) {
40+
intptr_t* la = (intptr_t*)ContinuationHelper::Frame::callee_link_address(f);
41+
intptr_t new_value = fp - la;
42+
*la = new_value;
43+
}
44+
3345
////// Freeze
3446

3547
// Fast path
@@ -275,4 +287,4 @@ inline void ThawBase::set_interpreter_frame_bottom(const frame& f, intptr_t* bot
275287
*(intptr_t**)f.addr_at(frame::interpreter_frame_locals_offset) = bottom - 1;
276288
}
277289

278-
#endif // CPU_AARCH64_CONTINUATION_FREEZE_THAW_AARCH64_INLINE_HPP
290+
#endif // CPU_AARCH64_CONTINUATIONFREEZETHAW_AARCH64_INLINE_HPP

0 commit comments

Comments
 (0)
Please sign in to comment.