Searched refs:aot_flag (Results 1 - 2 of 2) sorted by relevance

/openjdk9/hotspot/src/share/vm/aot/
H A DaotCodeHeap.hpp154 void verify_flag(bool aot_flag, bool flag, const char* name);
155 void verify_flag(int aot_flag, int flag, const char* name);
H A DaotCodeHeap.cpp110 void AOTLib::verify_flag(bool aot_flag, bool flag, const char* name) { argument
111 if (_valid && aot_flag != flag) {
112 handle_config_error("Shared file %s error: %s has different value '%s' from current '%s'", _name, name , (aot_flag ? "true" : "false"), (flag ? "true" : "false"));
116 void AOTLib::verify_flag(int aot_flag, int flag, const char* name) { argument
117 if (_valid && aot_flag != flag) {
118 handle_config_error("Shared file %s error: %s has different value '%d' from current '%d'", _name, name , aot_flag, flag);

Completed in 164 milliseconds