mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8264774: Implementation of Foreign Function and Memory API (Incubator)
Co-authored-by: Paul Sandoz <psandoz@openjdk.org> Co-authored-by: Jorn Vernee <jvernee@openjdk.org> Co-authored-by: Vladimir Ivanov <vlivanov@openjdk.org> Co-authored-by: Athijegannathan Sundararajan <sundar@openjdk.org> Co-authored-by: Chris Hegarty <chegar@openjdk.org> Reviewed-by: psandoz, chegar, mchung, vlivanov
This commit is contained in:
parent
71425ddfb4
commit
a223189b06
219 changed files with 10936 additions and 5695 deletions
|
@ -1043,7 +1043,6 @@ class jdk_internal_invoke_NativeEntryPoint: AllStatic {
|
|||
friend class JavaClasses;
|
||||
|
||||
private:
|
||||
static int _addr_offset; // type is jlong
|
||||
static int _shadow_space_offset;
|
||||
static int _argMoves_offset;
|
||||
static int _returnMoves_offset;
|
||||
|
@ -1057,7 +1056,6 @@ class jdk_internal_invoke_NativeEntryPoint: AllStatic {
|
|||
static void serialize_offsets(SerializeClosure* f) NOT_CDS_RETURN;
|
||||
|
||||
// Accessors
|
||||
static address addr(oop entry);
|
||||
static jint shadow_space(oop entry);
|
||||
static oop argMoves(oop entry);
|
||||
static oop returnMoves(oop entry);
|
||||
|
@ -1073,7 +1071,6 @@ class jdk_internal_invoke_NativeEntryPoint: AllStatic {
|
|||
static bool is_instance(oop obj);
|
||||
|
||||
// Accessors for code generation:
|
||||
static int addr_offset_in_bytes() { return _addr_offset; }
|
||||
static int shadow_space_offset_in_bytes() { return _shadow_space_offset; }
|
||||
static int argMoves_offset_in_bytes() { return _argMoves_offset; }
|
||||
static int returnMoves_offset_in_bytes() { return _returnMoves_offset; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue