8143072: [JVMCI] Port JVMCI to AArch64

Reviewed-by: gdub, rschatz, twisti, kvn
This commit is contained in:
Andrew Haley 2015-12-23 20:19:42 -10:00 committed by Christian Thalinger
parent 453650389f
commit cee2a179e6
99 changed files with 1350 additions and 386 deletions

View file

@ -1005,9 +1005,9 @@ WB_ENTRY(void, WB_ReadReservedMemory(JNIEnv* env, jobject o))
WB_END
WB_ENTRY(jstring, WB_GetCPUFeatures(JNIEnv* env, jobject o))
const char* cpu_features = VM_Version::cpu_features();
const char* features = VM_Version::features_string();
ThreadToNativeFromVM ttn(thread);
jstring features_string = env->NewStringUTF(cpu_features);
jstring features_string = env->NewStringUTF(features);
CHECK_JNI_EXCEPTION_(env, NULL);