aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/prims
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/prims')
-rw-r--r--src/share/vm/prims/jniCheck.cpp3
-rw-r--r--src/share/vm/prims/jni_md.h3
-rw-r--r--src/share/vm/prims/jvmtiClassFileReconstituter.cpp3
-rw-r--r--src/share/vm/prims/methodHandles.hpp3
4 files changed, 12 insertions, 0 deletions
diff --git a/src/share/vm/prims/jniCheck.cpp b/src/share/vm/prims/jniCheck.cpp
index ad738b85e..32692669b 100644
--- a/src/share/vm/prims/jniCheck.cpp
+++ b/src/share/vm/prims/jniCheck.cpp
@@ -39,6 +39,9 @@
#ifdef TARGET_ARCH_x86
# include "jniTypes_x86.hpp"
#endif
+#ifdef TARGET_ARCH_aarch64
+# include "jniTypes_aarch64.hpp"
+#endif
#ifdef TARGET_ARCH_sparc
# include "jniTypes_sparc.hpp"
#endif
diff --git a/src/share/vm/prims/jni_md.h b/src/share/vm/prims/jni_md.h
index 7fa582911..6209a6644 100644
--- a/src/share/vm/prims/jni_md.h
+++ b/src/share/vm/prims/jni_md.h
@@ -27,6 +27,9 @@
#ifdef TARGET_ARCH_x86
# include "jni_x86.h"
#endif
+#ifdef TARGET_ARCH_aarch64
+# include "jni_aarch64.h"
+#endif
#ifdef TARGET_ARCH_sparc
# include "jni_sparc.h"
#endif
diff --git a/src/share/vm/prims/jvmtiClassFileReconstituter.cpp b/src/share/vm/prims/jvmtiClassFileReconstituter.cpp
index aec2b4104..e4fc052e4 100644
--- a/src/share/vm/prims/jvmtiClassFileReconstituter.cpp
+++ b/src/share/vm/prims/jvmtiClassFileReconstituter.cpp
@@ -31,6 +31,9 @@
#ifdef TARGET_ARCH_x86
# include "bytes_x86.hpp"
#endif
+#ifdef TARGET_ARCH_aarch64
+# include "bytes_aarch64.hpp"
+#endif
#ifdef TARGET_ARCH_sparc
# include "bytes_sparc.hpp"
#endif
diff --git a/src/share/vm/prims/methodHandles.hpp b/src/share/vm/prims/methodHandles.hpp
index 2e45bac1c..6f6d4edd4 100644
--- a/src/share/vm/prims/methodHandles.hpp
+++ b/src/share/vm/prims/methodHandles.hpp
@@ -183,6 +183,9 @@ public:
#ifdef TARGET_ARCH_x86
# include "methodHandles_x86.hpp"
#endif
+#ifdef TARGET_ARCH_aarch64
+# include "methodHandles_aarch64.hpp"
+#endif
#ifdef TARGET_ARCH_sparc
# include "methodHandles_sparc.hpp"
#endif