mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8312579: [JVMCI] JVMCI support for virtual Vector API objects
Reviewed-by: dnsimon, never
This commit is contained in:
parent
44576a7cca
commit
271417a0e1
7 changed files with 49 additions and 15 deletions
|
@ -453,7 +453,7 @@ void Modules::define_module(Handle module, jboolean is_open, jstring version,
|
|||
ClassLoader::add_to_exploded_build_list(THREAD, module_symbol);
|
||||
}
|
||||
|
||||
#ifdef COMPILER2
|
||||
#if COMPILER2_OR_JVMCI
|
||||
// Special handling of jdk.incubator.vector
|
||||
if (strcmp(module_name, "jdk.incubator.vector") == 0) {
|
||||
if (FLAG_IS_DEFAULT(EnableVectorSupport)) {
|
||||
|
@ -473,7 +473,7 @@ void Modules::define_module(Handle module, jboolean is_open, jstring version,
|
|||
log_info(compilation)("EnableVectorAggressiveReboxing=%s", (EnableVectorAggressiveReboxing ? "true" : "false"));
|
||||
log_info(compilation)("UseVectorStubs=%s", (UseVectorStubs ? "true" : "false"));
|
||||
}
|
||||
#endif // COMPILER2
|
||||
#endif // COMPILER2_OR_JVMCI
|
||||
}
|
||||
|
||||
#if INCLUDE_CDS_JAVA_HEAP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue