8287044: Loom: Incorrect StackChunk::pc accessors

Reviewed-by: rpressler, coleenp
This commit is contained in:
Aleksey Shipilev 2022-05-23 05:40:34 +00:00
parent c156bcc599
commit 9008cfad45
3 changed files with 8 additions and 8 deletions

View file

@ -1168,8 +1168,8 @@ class jdk_internal_vm_StackChunk: AllStatic {
static inline int sp(oop chunk);
static inline void set_sp(oop chunk, int value);
static inline void set_sp(HeapWord* chunk, int value); // used while allocating
static inline intptr_t pc(oop chunk);
static inline void set_pc(oop chunk, intptr_t value);
static inline address pc(oop chunk);
static inline void set_pc(oop chunk, address value);
static inline int argsize(oop chunk);
static inline void set_argsize(oop chunk, int value);
static inline uint8_t flags(oop chunk);