src/hotspot/share/jvmci/jvmciCompiler.cpp
changeset 58177 4932dce35882
parent 58095 adc72cd1d1f2
child 58679 9c3209ff7550
child 59056 15936b142f86
equal deleted inserted replaced
58176:470af058bd5f 58177:4932dce35882
   121     JVMCIObject receiver = runtime->get_HotSpotJVMCIRuntime(JVMCIENV);
   121     JVMCIObject receiver = runtime->get_HotSpotJVMCIRuntime(JVMCIENV);
   122     objArrayHandle excludeModules(thread, HotSpotJVMCI::HotSpotJVMCIRuntime::excludeFromJVMCICompilation(JVMCIENV, HotSpotJVMCI::resolve(receiver)));
   122     objArrayHandle excludeModules(thread, HotSpotJVMCI::HotSpotJVMCIRuntime::excludeFromJVMCICompilation(JVMCIENV, HotSpotJVMCI::resolve(receiver)));
   123     if (excludeModules.not_null()) {
   123     if (excludeModules.not_null()) {
   124       ModuleEntry* moduleEntry = method->method_holder()->module();
   124       ModuleEntry* moduleEntry = method->method_holder()->module();
   125       for (int i = 0; i < excludeModules->length(); i++) {
   125       for (int i = 0; i < excludeModules->length(); i++) {
   126         if (oopDesc::equals(excludeModules->obj_at(i), moduleEntry->module())) {
   126         if (excludeModules->obj_at(i) == moduleEntry->module()) {
   127           return true;
   127           return true;
   128         }
   128         }
   129       }
   129       }
   130     }
   130     }
   131   }
   131   }