Skip to content

Commit

Permalink
Remove CRIU Interpreter
Browse files Browse the repository at this point in the history
- Remove CRIUBytcodeInterpreterCompressed
- Remove CRIUBytcodeInterpreterFull
- Add J9VM_CRIU_TRANSITION_TO_DEBUG_INTERPRETER flag
- Add criuRestoreCheckForDebugInterpreterRequest hook
- Set transition flag if -XDump or -XTrace is specified
- checkTransitionToDebugInterpreter becomes infallible
- Remove unnecessary nls messages
- Call checkTransitionToDebugInterpreter after restore hooks

Issues: #19835
Signed-off-by: Nathan Henderson <[email protected]>
  • Loading branch information
ThanHenderson committed Sep 17, 2024
1 parent cf5af08 commit bb81832
Show file tree
Hide file tree
Showing 27 changed files with 57 additions and 277 deletions.
20 changes: 2 additions & 18 deletions runtime/makelib/targets.mk.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -537,21 +537,13 @@ CLANG_CXXFLAGS+=-std=c++0x -D_CRT_SUPPRESS_RESTRICT -DVS12AndHigher
CLANG_CXXFLAGS+=-D_M_X64
</#if>
endif
# special handling MHInterpreterFull.cpp, MHInterpreterCompressed.cpp, BytecodeInterpreterFull.cpp, BytecodeInterpreterCompressed.cpp, CRIUBytecodeInterpreterFull.cpp, CRIUBytecodeInterpreterCompressed.cpp, DebugBytecodeInterpreterFull.cpp and DebugBytecodeInterpreterCompressed.cpp
# special handling MHInterpreterFull.cpp, MHInterpreterCompressed.cpp, BytecodeInterpreterFull.cpp, BytecodeInterpreterCompressed.cpp, DebugBytecodeInterpreterFull.cpp and DebugBytecodeInterpreterCompressed.cpp
BytecodeInterpreterFull$(UMA_DOT_O):BytecodeInterpreterFull.cpp
$(CLANG_CXX) $(CLANG_CXXFLAGS) -c $< -o $@

BytecodeInterpreterCompressed$(UMA_DOT_O):BytecodeInterpreterCompressed.cpp
$(CLANG_CXX) $(CLANG_CXXFLAGS) -c $< -o $@

ifneq ($(J9VM_OPT_CRIU_SUPPORT),)
CRIUBytecodeInterpreterFull$(UMA_DOT_O):CRIUBytecodeInterpreterFull.cpp
$(CLANG_CXX) $(CLANG_CXXFLAGS) -c $< -o $@

CRIUBytecodeInterpreterCompressed$(UMA_DOT_O):CRIUBytecodeInterpreterCompressed.cpp
$(CLANG_CXX) $(CLANG_CXXFLAGS) -c $< -o $@
endif

DebugBytecodeInterpreterFull$(UMA_DOT_O):DebugBytecodeInterpreterFull.cpp
$(CLANG_CXX) $(CLANG_CXXFLAGS) -c $< -o $@

Expand Down Expand Up @@ -582,7 +574,7 @@ SharedService$(UMA_DOT_O):SharedService.c

<#if uma.spec.processor.ppc>
ifndef USE_PPC_GCC
# special handling BytecodeInterpreterFull.cpp, BytecodeInterpreterCompressed.cpp, CRIUBytecodeInterpreterFull.cpp, CRIUBytecodeInterpreterCompressed.cpp, DebugBytecodeInterpreterFull.cpp and DebugBytecodeInterpreterCompressed.cpp
# special handling BytecodeInterpreterFull.cpp, BytecodeInterpreterCompressed.cpp, DebugBytecodeInterpreterFull.cpp and DebugBytecodeInterpreterCompressed.cpp
FLAGS_TO_REMOVE += -O3
NEW_OPTIMIZATION_FLAG=-O2 -qdebug=lincomm:ptranl:tfbagg
<#if uma.spec.type.linux>
Expand All @@ -597,14 +589,6 @@ BytecodeInterpreterFull$(UMA_DOT_O):BytecodeInterpreterFull.cpp
BytecodeInterpreterCompressed$(UMA_DOT_O):BytecodeInterpreterCompressed.cpp
$(CXX) $(SPECIALCXXFLAGS) $(NEW_OPTIMIZATION_FLAG) -c $<

ifneq ($(J9VM_OPT_CRIU_SUPPORT),)
CRIUBytecodeInterpreterFull$(UMA_DOT_O):CRIUBytecodeInterpreterFull.cpp
$(CXX) $(SPECIALCXXFLAGS) $(NEW_OPTIMIZATION_FLAG) -c $<

CRIUBytecodeInterpreterCompressed$(UMA_DOT_O):CRIUBytecodeInterpreterCompressed.cpp
$(CXX) $(SPECIALCXXFLAGS) $(NEW_OPTIMIZATION_FLAG) -c $<
endif

DebugBytecodeInterpreterFull$(UMA_DOT_O):DebugBytecodeInterpreterFull.cpp
$(CXX) $(SPECIALCXXFLAGS) $(NEW_OPTIMIZATION_FLAG) -c $<

Expand Down
10 changes: 1 addition & 9 deletions runtime/makelib/targets.mk.linux.inc.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -532,22 +532,14 @@ bcverify$(UMA_DOT_O) : bcverify.c

ifdef USE_PPC_GCC

# special handling MHInterpreterFull.cpp, MHInterpreterCompressed.cpp, BytecodeInterpreterFull.cpp, BytecodeInterpreterCompressed.cpp, CRIUBytecodeInterpreterFull.cpp, CRIUBytecodeInterpreterCompressed.cpp, DebugBytecodeInterpreterFull.cpp and DebugBytecodeInterpreterCompressed.cpp
# special handling MHInterpreterFull.cpp, MHInterpreterCompressed.cpp, BytecodeInterpreterFull.cpp, BytecodeInterpreterCompressed.cpp, DebugBytecodeInterpreterFull.cpp and DebugBytecodeInterpreterCompressed.cpp

BytecodeInterpreterFull$(UMA_DOT_O) : BytecodeInterpreterFull.cpp
$(PPC_GCC_CXX) $(PPC_GCC_CXXFLAGS) -c $<

BytecodeInterpreterCompressed$(UMA_DOT_O) : BytecodeInterpreterCompressed.cpp
$(PPC_GCC_CXX) $(PPC_GCC_CXXFLAGS) -c $<

ifneq ($(J9VM_OPT_CRIU_SUPPORT),)
CRIUBytecodeInterpreterFull$(UMA_DOT_O) : CRIUBytecodeInterpreterFull.cpp
$(PPC_GCC_CXX) $(PPC_GCC_CXXFLAGS) -c $<

CRIUBytecodeInterpreterCompressed$(UMA_DOT_O) : CRIUBytecodeInterpreterCompressed.cpp
$(PPC_GCC_CXX) $(PPC_GCC_CXXFLAGS) -c $<
endif

DebugBytecodeInterpreterFull$(UMA_DOT_O) : DebugBytecodeInterpreterFull.cpp
$(PPC_GCC_CXX) $(PPC_GCC_CXXFLAGS) -c $<

Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=The check for the transition to the debug interpreter failed
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Value specified to --sun-misc-unsafe-memory-access not recognized: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_ca.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=La comprovaci\u00f3 de la transici\u00f3 a l'int\u00e8rpret de depuraci\u00f3 ha fallat
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Valor especificat a --sun-misc-unsafe-memory-access no reconegut: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_cs.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Kontrola p\u0159echodu na interpret lad\u011bn\u00ed se nezda\u0159ila
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Hodnota ur\u010den\u00e1 pro --sun-misc-unsafe-memory-access nebyla rozpozn\u00e1na: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_de.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Die Pr\u00fcfung auf den \u00dcbergang zum Debug-Interpreter ist fehlgeschlagen
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Der f\u00fcr --sun-misc-unsafe-memory-access angegebene Wert wurde nicht erkannt: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_es.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Fall\u00f3 la comprobaci\u00f3n de la transici\u00f3n al int\u00e9rprete de depuraci\u00f3n
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Valor especificado a --sun-misc-unsafe-memory-access no reconocido: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_fr.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=La v\u00e9rification du passage \u00e0 l'interpr\u00e9teur de d\u00e9bogage a \u00e9chou\u00e9
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Valeur sp\u00e9cifi\u00e9e dans --sun-misc-unsafe-memory-access non reconnue : '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_hu.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=A hibakeres\u0151 \u00e9rtelmez\u0151re val\u00f3 \u00e1t\u00e1ll\u00e1s ellen\u0151rz\u00e9se nem siker\u00fclt
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=--sun-misc-unsafe-memory-access nem ismeri fel a megadott \u00e9rt\u00e9ket: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_it.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Il controllo per il passaggio all'interprete di debug \u00e8 fallito
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Valore specificato per --sun-misc-unsafe-memory-access non riconosciuto: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_ja.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=\u30c7\u30d0\u30c3\u30b0\u30fb\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3078\u306e\u79fb\u884c\u30c1\u30a7\u30c3\u30af\u306b\u5931\u6557
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=--sun-misc-unsafe-memory-access\u306b\u6307\u5b9a\u3055\u308c\u305f\u5024\u304c\u8a8d\u8b58\u3055\u308c\u307e\u305b\u3093: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_ko.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=\ub514\ubc84\uadf8 \uc778\ud130\ud504\ub9ac\ud130\ub85c\uc758 \uc804\ud658 \ud655\uc778\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=--sun-misc-unsafe-memory-access\uc5d0 \uc9c0\uc815\ub41c \uac12\uc774 \uc778\uc2dd\ub418\uc9c0 \uc54a\uc74c: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_pl.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Sprawdzenie przej\u015bcia do interpretera debugowania nie powiod\u0142o si\u0119
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Warto\u015b\u0107 okre\u015blona w --sun-misc-unsafe-memory-access nie zosta\u0142a rozpoznana: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_pt_BR.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=A verifica\u00e7\u00e3o da transi\u00e7\u00e3o para o interpretador de depura\u00e7\u00e3o falhou
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Valor especificado para --sun-misc-unsafe-memory-access n\u00e3o reconhecido: '%s'
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_ru.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2396,13 +2396,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 \u043a \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u043e\u043c\u0443 \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0442\u043e\u0440\u0443 \u043d\u0435 \u0443\u0434\u0430\u043b\u0430\u0441\u044c
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u0434\u043b\u044f --sun-misc-unsafe-memory-access \u043d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043e: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_sk.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Kontrola prechodu na interpret ladenia zlyhala
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Hodnota zadan\u00e1 pre --sun-misc-unsafe-memory-access nebola rozpoznan\u00e1: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
7 changes: 0 additions & 7 deletions runtime/nls/j9vm/j9vm_sl.nls
Original file line number Diff line number Diff line change
Expand Up @@ -2395,13 +2395,6 @@ J9NLS_VM_DEPRECATED_OPTION.system_action=The JVM will print a deprecation warnin
J9NLS_VM_DEPRECATED_OPTION.user_response=Remove the command line option from the command line.
# END NON-TRANSLATABLE

J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED=Preverjanje prehoda na tolma\u010d za odpravljanje napak ni uspelo
# START NON-TRANSLATABLE
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.explanation=checkTransitionToDebugInterpreter failed.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.system_action=The JVM will throw a JVMRestoreException.
J9NLS_VM_CRIU_CHECK_TRANSITION_TO_DEBUG_INTERPRETER_FAILED.user_response=View CRIU documentation to determine how to resolve the error.
# END NON-TRANSLATABLE

J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE=Vrednost, dolo\u010dena za --sun-misc-unsafe-memory-access ni prepoznana: ' %s '
# START NON-TRANSLATABLE
J9NLS_VM_UNRECOGNISED_SUN_MISC_UNSAFE_MEMORY_ACCESS_VALUE.sample_input_1=disallow
Expand Down
Loading

0 comments on commit bb81832

Please sign in to comment.