java.properties 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  1. #Sat Jul 22 02:17:23 EDT 2017
  2. JNCK049=JNI error in %s\: va_list reuse detected
  3. JNCK048=JNI error in %s\: Ineligible receiver
  4. JNCK047=JNI error in %s\: Incorrect clazz argument
  5. JNCK046=JNI error in %1$s\: Method has wrong return type ('%2$c')
  6. JNCK045=JNI error in %s\: Method is not static
  7. JNCK044=JNI error in %s\: Method is static
  8. JNCK043=JNI error in %1$s\: Argument \#%2$d; unable to find %3$s
  9. JNCK042=JNI error in %1$s\: Argument \#%2$d is not a subclass of %3$s
  10. SHRC189=\# AOT Methods \= %d
  11. JNCK041=JNI error in %1$s\: Argument \#%2$d is out of range for a %3$s (0x%4$x > 0x%5$x)
  12. SHRC188=AOT bytes \= %d
  13. JNCK040=JNI error in %1$s\: Argument \#%2$d is out of range for a %3$s (0x%4$x < 0x%5$x)
  14. SHRC187=Disable storing of AOT data in the shared cache
  15. SHRC186=\tPartition %.*s in ModContext %.*s
  16. SHRC185=\tModContext %.*s
  17. SHRC184=\tPartition %.*s
  18. SHRC183=Cannot create hashtable in ScopeManagerImpl
  19. SHRC182=Cannot create monitor in ScopeManagerImpl
  20. SHRC181=Cannot enter ScopeManagerImpl hashtable mutex
  21. SHRC180=Cannot allocate memory for hashtable entry in ScopeManagerImpl
  22. JNCK039=JNI error in %1$s\: Argument \#%2$d is NULL
  23. JNCK038=JNI error in %1$s\: Argument \#%2$d (0x%3$p) is not a valid object reference. It's type is\: %4$s\n
  24. JNCK037=JNI error in %1$s\: Argument \#%2$d (0x%3$p) is not a local reference. Its type is\: %4$s
  25. JNCK036=JNI error in %1$s\: Argument \#%2$d (0x%3$p) is not a weak global reference. Its type is\: %4$s
  26. JNCK035=JNI error in %1$s\: Argument \#%2$d (0x%3$p) is not a global reference. Its type is\: %4$s
  27. JNCK034=JNI error in %1$s\: Argument \#%2$d is not a %3$s
  28. JNCK033=JNI error in %1$s\: Argument \#%2$d is not a jarray
  29. JNCK032=JNI error in %1$s\: Argument \#%2$d is not a jobjectArray
  30. SHRC179=The ROMClass segment has been corrupted. Error reading ROMClass at 0x%p
  31. JNCK031=JNI error in %1$s\: Argument \#%2$d is NULL
  32. SHRC178=Ignoring noIncrementalUpdates option due to use of singleJVM option
  33. JNCK030=JNI error in %s\: This function cannot be called while GC is disabled (it was probably called from a JVMPI or JVMTI event)
  34. SHRC177=Cannot run safemode due to use of singleJVM option
  35. SHRC176=String invariant relocation enabled
  36. SHRC175=Make the cache persist beyond reboots (Win only)
  37. SHRC174=Enable optimizations for single JVM use
  38. SHRC173=Set the directory for JVM control files (advanced)
  39. SHRC172=Cannot create cache of requested size due to Operating System restrictions
  40. SHRC171=z/OS cannot create cache of requested size\: Please check your z/OS system BPXPRMxx settings
  41. SHRC170=Specify name of shared cache\n \t(Use %%u to substitute username)
  42. JNCK029=JNI error in %s\: This function cannot be called inside of a critical section
  43. JNCK028=JNI error in %s\: This function cannot be called when an exception is pending
  44. ZIPS001=Unable to open %s (Missing export)
  45. JNCK027=JNI error in %s\: JNIEnv is not the JNIEnv for the active thread
  46. ZIPS000=Unable to open %1$s (%2$s)
  47. JNCK026=JNI error in %s\: JNIEnv does not appear to be a valid thread, or memory has been corrupted, or this is not a J9 virtual machine
  48. JNCK025=Use -Xcheck\:jni\:nonfatal to continue running when errors are detected.
  49. JNCK024=JNI error detected. Aborting.
  50. JNCK023=JNI error detected. Continuing...
  51. JNCK022=freed local reference
  52. SHRC169=Change detected in %2$.*1$s...\n \t...marked %3$d cached classes stale
  53. JNCK021=local reference in another thread
  54. SHRC168=Total shared class bytes read\=%1$lld. Total bytes stored\=%2$d
  55. JNCK020=debugger reference
  56. SHRC167=Disables class sharing
  57. SHRC166=Attached to cache "%1$s", size\=%2$d bytes
  58. SHRC165=[-Xshareclasses Helper API verbose output enabled]
  59. SHRC164=[-Xshareclasses verbose I/O output enabled]
  60. SHRC163=[-Xshareclasses verbose output enabled]
  61. SHRC162=The wait for the creation mutex while opening shared memory has timed out
  62. SHRC161=The wait for the creation mutex while creating shared memory has timed out
  63. SHRC160=The wait for the creation mutex while opening semaphore has timed out
  64. JNCK019=weak global reference
  65. JNCK018=global reference
  66. JNCK017=local reference
  67. JNCK016=NULL
  68. JNCK015=\thelp print this screen
  69. JNCK014=\tpedantic perform more thorough, but slower checks
  70. JNCK013=\tnovalist do not check for va_list reuse
  71. JNCK012=\tnoadvice do not display advice
  72. SHRC159=Opened shared class cache "%1$s"
  73. JNCK011=\tnowarn do not display warnings
  74. SHRC158=Created shared class cache "%1$s"
  75. JNCK010=\tnonfatal do not exit when errors are detected
  76. SHRC157=Unable to allocate %1$d bytes of shared memory requested \n \tSuccessfully allocated maximum shared memory permitted (%2$d bytes) \n \t(To increase available shared memory, modify system SHMMAX value)
  77. SHRC156=Error copying groupname into cache name
  78. SHRC155=Error copying username into cache name
  79. SHRC154=Escape character %.*s not valid for cache name
  80. SHRC153=Specify name of shared cache\n \t(Use %%g to substitute groupname and %%u for username)
  81. SHRC152=Always start JVM regardless of errors/warnings
  82. SHRC151=Suppress all messages
  83. SHRC150=Enable helper API verbose output
  84. JNCK009=\tnobounds do not perform bounds checking on strings and arrays
  85. JNCK008=\ttrace trace all JNI functions
  86. JNCK007=\tverbose trace certain JNI functions and activities
  87. JNCK006=\tall check application and system classes
  88. JNCK005=Usage\: -Xcheck\:jni\:[option[,option[,...]]]
  89. JNCK004=jnichk - JNI Check utility for J9, Version %s
  90. JNCK003=JNI check utility\: unable to allocate VM local storage
  91. JNCK002=JNI check utility\: unable to hook event
  92. SHRC149=Enable verbose find/store output
  93. JNCK001=JNI check utility installed. Use -Xcheck\:jni\:help for usage
  94. SHRC148=Allow group access to cache (user is default)
  95. JNCK000=-Xcheck\:jni\: unrecognized option --> '%s'
  96. SHRC147=Character %.*s not valid for cache name
  97. SHRC146=Finding class %1$s in shared cache for class-loader id %2$d with Token %4$.*3$s...
  98. SHRC145=Finding class %1$s in shared cache for class-loader id %2$d with URL %4$.*3$s...
  99. SHRC144=Storing class %2$.*1$s in shared cache for class-loader id %3$d with Token %5$.*4$s...
  100. SHRC143=Storing class %2$.*1$s in shared cache for class-loader id %3$d with URL %5$.*4$s...
  101. SHRC142=\tat 0x%1$p\t\t%2$x \!\= %3$x
  102. SHRC141=mismatched bytes\:
  103. SHRC140=size\:\t%1$d\t\t\t%2$d\n
  104. SHRC139=\n\tROMClass being stored\tROMClass in cache
  105. SHRC138=Found more than one orphan ROMClass for %.*s
  106. SHRC499=Placeholder, not used
  107. SHRC137=SAFE MODE\: Warning\: ROMClass %.*s does not match ROMClass in cache
  108. SHRC498=Placeholder, not used
  109. SHRC136=Cannot create monitor in SH_ROMClassManagerImpl
  110. SHRC497=Placeholder, not used
  111. SHRC135=Failed to create hashtable in SH_ROMClassManagerImpl
  112. SHRC496=Failed to update %1$s attached data for address 0x%2$p, reason\: %3$s
  113. SHRC134=Failed to create pool in SH_ROMClassManagerImpl
  114. SHRC495=Failed to store %1$s attached data for address 0x%2$p, reason\: %3$s
  115. SHRC133=Cannot enter ROMClassManager hashtable mutex
  116. SHRC494=Failed to find %1$s attached data for address 0x%2$p, reason\: %3$s
  117. SHRC132=Cannot allocate memory for hashtable entry in ROMClassManagerImpl
  118. SHRC493=Failed to find %1$s attached data for %8$.*7$s.%4$.*3$s%6$.*5$s, reason\: %2$s
  119. SHRC131=Cannot allocate memory for linked list item in ROMClassManagerImpl
  120. SHRC492=Failed to update %1$s attached data for %8$.*7$s.%4$.*3$s%6$.*5$s, reason\: %2$s
  121. SHRC130=Attempt to allocate while commit is still pending
  122. SHRC491=Failed to store %1$s attached data for %8$.*7$s.%4$.*3$s%6$.*5$s, reason\: %2$s
  123. SHRC490=Force discovery of a corrupt shared classes cache
  124. SHRC129=Attempt to set readerCount to -1\!
  125. SHRC128=SH_CompositeCache\:\:exitMutex failed with return code %d. Warning\: your cache may be corrupt.
  126. SHRC489=If opened cache is marked corrupt, trigger a cache dump event
  127. SHRC127=SH_CompositeCache\:\:enterMutex failed with return code %d. Warning\: your cache may be corrupt.
  128. SHRC488=Total of -Xscminaot and -Xscminjitdata values should not be greater than available cache size
  129. SHRC126=Request made to add too many items to ClasspathItem
  130. SHRC487=Maximum space for JIT data bytes %*c\= %d
  131. SHRC125=Could not allocate memory for string buffer in SH_CacheMap
  132. SHRC486=Reserved space for JIT data bytes %*c\= %d
  133. SHRC124=Cache is %1$d%% full\n
  134. SHRC485=Maximum space for AOT bytes %*c\= %d
  135. SHRC123=%% Stale classes \= %1$d%%\n
  136. SHRC484=Reserved space for AOT bytes %*c\= %d
  137. SHRC122=\# Stale classes \= %d
  138. SHRC483=cache refresh failed
  139. SHRC121=\# Tokens \= %d
  140. SHRC482=address is not in cache
  141. SHRC120=\# URLs \= %d
  142. SHRC481=cache is corrupt
  143. SHRC480=too many updates while reading
  144. EXEL099=\ -Xrealtime -Xnortsj enable soft realtime
  145. EXEL098=\ -Xgcpolicy\:metronome enable soft realtime
  146. EXEL097=\ -Xrealtime enable soft realtime
  147. EXEL096=\ -Xgcpolicy\:metronome enable realtime extensions
  148. EXEL095=\ -Xrealtime enable realtime extensions
  149. EXEL094=\ -Xcompressedrefs use compressed heap references
  150. EXEL093=The following options control global VM configuration\:
  151. EXEL092=\n -Xdump[\:option,...] control dumps use -Xdump\:help for more details
  152. SHRC119=\# Classpaths \= %d
  153. EXEL091=\n -Xcheck[\:option[\:...]] control checking use -Xcheck\:help for more details
  154. SHRC118=\# ROMClasses \= %d
  155. EXEL090=\ -Xscmaxaot<x> set maximum shared classes cache space allowed for AOT data to <x>
  156. SHRC479=memory allocation of %d bytes failed
  157. SHRC117=Metadata %% used \= %1$d%%\n
  158. SHRC478=data size %d larger than available %d
  159. SHRC116=Metadata bytes \= %d
  160. SHRC477=no space in cache for %d bytes
  161. SHRC115=ROMClass bytes \= %d
  162. SHRC476=data already exists
  163. SHRC114=free bytes \= %d
  164. SHRC475=no data exists
  165. SHRC113=cache size \= %d
  166. SHRC474=enterReadMutex failed
  167. SHRC112=allocation pointer \= 0x%p\n
  168. SHRC473=enterWriteMutex failed
  169. SHRC111=end address \= 0x%p
  170. SHRC472=no access to resource
  171. SHRC110=\nbase address \= 0x%p
  172. SHRC471=Failed to update %1$s attached data for %8$.*7$s.%4$.*3$s%6$.*5$s, reason\:%2$s
  173. SHRC470=Updated %1$s attached data for %7$.*6$s.%3$.*2$s%5$.*4$s
  174. EXEL089=\ -Xscminaot<x> set minimum shared classes cache space reserved for AOT data to <x>
  175. MECK002=An error occurred creating the call site data structure. Call site information will not be displayed
  176. EXEL087=\ -Xjni\:<options> set JNI options
  177. MECK001=Unrecognized -Xcheck\:memory option\: %s
  178. EXEL086=\n -Xtrace[\:option,...] control tracing use -Xtrace\:help for more details
  179. MECK000=An error occurred initializing the -Xcheck\:memory utility
  180. EXEL085=\nWARNING\: The command line argument "%s" has been deprecated.\nWARNING\: Use "-jxe <path>" instead.\n
  181. EXEL084=Unable to make a backup copy of file\: %s
  182. EXEL083=Could not open file\: %s
  183. EXEL082=\ -Xlp<x> set the large page size to <x>
  184. SHRC109=\!STALE\!
  185. EXEL081=java version "%1$s/%2$s"
  186. SHRC108=\t%.*s
  187. EXEL080=java version "%s"
  188. SHRC469=Failed to store 1$s attached data for %8$.*7$s.%4$.*3$s%6$.*5$s, reason\:%2$s
  189. SHRC107=\t%.*s
  190. SHRC468=Stored %1$s attached data for %7$.*6$s.%3$.*2$s%5$.*4$s
  191. SHRC106=%1$d\: 0x%2$p TOKEN
  192. SHRC467=Failed to find %1$s attached data for %8$.*7$s.%4$.*3$s.%6$.*5$s, reason\:%2$s
  193. SHRC105=%1$d\: 0x%2$p URL
  194. SHRC466=Found %1$s attached data for %7$.*6$s.%3$.*2$s%5$.*4$s
  195. SHRC104=%1$d\: 0x%2$p CLASSPATH
  196. SHRC465=[-Xshareclasses JIT data verbose output enabled]
  197. SHRC103=\tToken 0x%p
  198. SHRC464=Enable JIT data verbose output
  199. SHRC102=\tURL 0x%p
  200. SHRC463=-Xscmaxjitdata value is greater than -Xscmx value, so it has been set to unlimited
  201. SHRC101=\tIndex %1$d in classpath 0x%2$p
  202. SHRC462=-Xscminjitdata value is greater than -Xscmx value, so it has been set to equal -Xscmx value
  203. SHRC100=%1$d\: 0x%2$p ROMCLASS\: %4$.*3$s at 0x%5$p.
  204. SHRC461=-Xscminjitdata value should not be greater than -Xscmaxjitdata value
  205. SHRC460=Disable storing of JIT data in the shared cache
  206. EXEL079=\ -Xscmx<x> set size of new shared class cache to <x>
  207. EXEL078=\ -Xshareclasses[\:options] Enable class data sharing (use help for details)\n
  208. EXEL077=\ -Xssi<x> set java thread stack increment to <x>
  209. EXEL076=JIT - %s\n
  210. EXEL075=\ -Xquickstart improve startup time by delaying optimizations
  211. EXEL074=Unable to redirect console to\: %1$s\:%2$d
  212. EXEL073=Internal VM error\: Failed to create Java VM
  213. EXEL072=VM startup error\: Out of memory
  214. EXEL071=Failed to find main class name
  215. EXEL070=ROM image is wrong version
  216. SHRC459=Disables class sharing and utility APIs
  217. SHRC458=Disables class sharing without disabling utility APIs
  218. SHRC457=Invalid cache name, the cache name "%.*s" contains only whitespace or is empty
  219. SHRC456=Force discovery of a change to the VM build id
  220. SHRC455=Force verification of the string table on startup
  221. SHRC454=Disable checking if the current SysV semaphore id is the same as the cached SysV semaphore id
  222. SHRC453=List all elements in cache, including orphan classes
  223. SHRC452=Disable memory protection of the read/write area (string table)
  224. SHRC451=Data start field in cache header is not valid. Data start address in cache header is\: 0x%p.
  225. SHRC450=Data length field in cache header is not valid. Data length in cache header is \: %u.
  226. EXEL069=Failed to find ROM image
  227. EXEL068=Internal VM error\: Failed to set array element for %s
  228. EXEL067=Internal VM error\: Failed to create java/lang/String for argument %s
  229. EXEL066=Internal VM error\: Failed to create byte array for argument %s
  230. EXEL065=Internal VM error\: Failed to create argument array
  231. EXEL064=The method main must be declared public, static and void.
  232. EXEL063=Class %s does not implement main()
  233. EXEL062=Internal VM error\: Out of memory converting string to UTF characters for class name %s
  234. EXEL061=Internal VM error\: Failed to create java/lang/String for class name %s
  235. EXEL060=Internal VM error\: Failed to create byte array for class name %s
  236. SHRC449=Padding is non zero. Padding bytes in cache header are\: %u.
  237. SHRC448=Cache size field in cache header is not valid. Cache size in cache header is\: 0x%x.
  238. SHRC447=Cache header eyecatcher is not valid. Address of eyecatcher string in cache header\: 0x%p.
  239. SHRC446=Failed to acquire header write lock during cache startup with error code\: %d.
  240. SHRC445=Size of cache is too small to be useful. Invalid cache size\: 0x%x.
  241. SHRC444=Read corrupt data for cache entry header 0x%p (invalid item length)
  242. SHRC443=Cache CRC is incorrect indicating a corrupt cache. Incorrect cache CRC\: 0x%x.
  243. SHRC442=Shared cache "%s" is corrupt. Corruption code is %d. Corrupt value is 0x%p. No new JVMs will be allowed to connect to the cache.\n \tExisting JVMs can continue to function, but cannot update the cache.
  244. SHRC441=-XscmaxJIT value is greater than -Xscmx value, so it has been set to unlimited
  245. SHRC440=-XscminJIT value is greater than -Xscmx value, so it has been set to equal -Xscmx value
  246. EXEL059=Internal VM error\: Failed to find class java/lang/String
  247. EXEL058=Internal VM error\: Out of memory
  248. EXEL056=IBM is a registered trademark of IBM Corp.\nJava and all Java-based marks and logos are trademarks or registered\ntrademarks of Sun Microsystems, Inc.\n
  249. EXEL055=Target\: %s
  250. EXEL054=(c) Copyright IBM Corp. 1991, %s All Rights Reserved
  251. EXEL053=Licensed Materials - Property of IBM\n\nJ9 - VM for the Java(TM) platform, Version %s
  252. EXEL052=\nWARNING\: The command line argument "%s" has been deprecated.\nWARNING\: Use the -X equivalent.
  253. EXEL051=\nWARNING\: The command line argument "%s" has been deprecated.\nWARNING\: Use "-classpath <path>" or "-cp <path>".
  254. EXEL050=\ -Xrdbginfo\:<host>\:<port> enable remote debug information server
  255. SHRC439=-XscminJIT value should not be greater than -XscmaxJIT value
  256. SHRC438=Disable storing of JIT data in the shared cache
  257. SHRC799=The maximum allowed JIT data space should not be greater than the softmx limit %d set on shared cache usage.
  258. SHRC437=Error releasing shared class cache file header read lock
  259. SHRC798=The maximum allowed AOT space should not be greater than the softmx limit %d set on shared cache usage.
  260. SHRC436=Error acquiring shared class cache file header write lock
  261. SHRC797=The minimum reserved JIT data space should not be greater than the softmx limit %d set on shared cache usage.
  262. SHRC435=-Xitsn%2$u uses %1$u bytes of memory, which is larger than the shared classes cache size of %3$u bytes
  263. SHRC796=The minimum reserved AOT space should not be greater than the softmx limit %d set on shared cache usage.
  264. SHRC434=Value\=%d passed by -Xitsn option is outside of the range of prime number values supported by the VM. Supported range \= 0 - %u
  265. SHRC795=The sum of minimum reserved AOT bytes %d and minumum reserved JIT data bytes %d should not be greater than the softmx bytes %d.
  266. SHRC433=\tfor ROMClass %2$.*1$s at 0x%3$p.
  267. SHRC794=Adjust the maximum shared classes cache space allowed for JIT data to <size>.
  268. SHRC432=\ Signature\: %2$.*1$s Address\: 0x%3$p
  269. J9CL040=Unable to allocate memory for new JNI global reference
  270. SHRC793=Adjust the minimum shared classes cache space reserved for JIT data to <size>.
  271. SHRC431=%1$d\: 0x%2$p JITPROFILE\: %4$.*3$s
  272. SHRC792=Adjust the maximum shared classes cache space allowed for AOT data to <size>.
  273. SHRC430=Failed to remove current generation of shared class cache "%s"
  274. SHRC791=Adjust the minimum shared classes cache space reserved for AOT data to <size>.
  275. SHRC790=Adjust the softmx size in the cache to <size>.
  276. EXEL049=\ -Xdbginfo\:<symbol file path> enable debug info server
  277. EXEL048=\ -Xrunjdwp\:<options> enable debug, JDWP standard options
  278. EXEL047=\n -Xdbg\:<options> enable debug, JDWP standard options
  279. EXEL046=\ -Xlp enable large page support
  280. EXEL045=\ -Xnocompactgc disable compaction
  281. EXEL044=\ -Xcompactgc enable compaction
  282. EXEL043=\ -Xcompactexplicitgc enable compaction on every system GC
  283. EXEL042=\ -Xnocompactexplicitgc disable compaction on a system GC
  284. J9CL039=Timestamp is invalid when retrieving JVM CPU usage info.
  285. EXEL041=\ -Xalwaysclassgc enable dynamic class unloading on every GC
  286. J9CL038=Error retrieving JVM CPU usage information.
  287. EXEL040=\ -Xclassgc enable dynamic class unloading
  288. SHRC429=Failed to remove older generation of shared class cache "%s"
  289. J9CL037=Cannot retrieve JVM CPU usage information when -XX\:-EnableCPUMonitor has been specified.
  290. SHRC428=Removed older generation of shared class cache "%s"
  291. J9CL036=loading constraint violation\: %2$.*1$s not visible from %4$.*3$s
  292. SHRC789=The softmx bytes is set to %u.
  293. SHRC427=Modifier used to print detailed cache statistics
  294. J9CL035=Private interface methods require invokespecial
  295. SHRC788=The maximum allowed JIT data bytes is set to %d.
  296. SHRC426=\# JCL Entries %*c\= %d
  297. J9CL034=%1$d\: Failed retrieving %2$s Info. %3$s
  298. SHRC787=The minimum reserved JIT data bytes is set to %d.
  299. SHRC425=\# Java Objects %*c\= %d
  300. J9CL033=Could not register %s as bootstrap library. Error code \= %zu
  301. SHRC786=The maximum allowed AOT bytes is set to %d.
  302. SHRC424=\# JIT Profiles %*c\= %d
  303. J9CL032=%1$d\: Failed to retrieve %2$s Info.
  304. SHRC785=The minimum reserved AOT bytes is set to %d.
  305. SHRC423=\# JIT Hints %*c\= %d
  306. J9CL031=Could not register dbgwrapper.dll as bootstrap library. Error code \= %zu
  307. SHRC784=Cannot set the minimum reserved AOT and/or JIT data space as requested. The softmx limit set on shared cache usage, or total cache size is not big enough.
  308. SHRC422=\# AOT Thunks %*c\= %d
  309. J9CL030=Unable to allocate memory for tenant native data
  310. SHRC783=The maximum allowed JIT data space should not be greater than the softmx limit of %u bytes set on shared cache usage.
  311. SHRC421=\# AOT Class Hierarchy %*c\= %d
  312. SHRC782=The size of maximum JIT data space should not be smaller than the JIT bytes (%d) that is already stored in the cache.
  313. SHRC420=\# AOT Data Entries %*c\= %d
  314. SHRC781=The maximum allowed AOT space should not be greater than the softmx limit of %u bytes set on shared cache usage.
  315. SHRC780=The size of maximum AOT space should not be smaller than the AOT bytes (%d) that is already stored in the cache.
  316. EXEL039=\ -Xnoclassgc disable dynamic class unloading
  317. EXEL038=\ -Xgcthreads<x> set number of GC threads
  318. EXEL037=\nArguments to the following options are expressed as decimal numbers.\n
  319. EXEL036=\ -Xmaxf<x> maximum percentage of heap free after GC
  320. EXEL035=\ -Xminf<x> minimum percentage of heap free after GC
  321. EXEL034=A value of 0.3 represents a request of 30%%\n
  322. EXEL033=\nArguments to the following options are expressed as a decimal from 0 to 1.
  323. EXEL032=\ -Xmaxe<x> set maximum size for heap expansion to <x>
  324. J9CL029=malformed/unmappable characters found
  325. EXEL031=\ -Xmine<x> set minimum size for heap expansion to <x>
  326. J9CL028=Internal error while reading zip file, Error Code %d
  327. EXEL030=\ -Xss<x> set thread stack size to <x>
  328. SHRC419=Class LocalVariableTable bytes %*c\= %u
  329. J9CL027=Zip file read error
  330. SHRC418=Byte data bytes %*c\= %d
  331. J9CL026=Unable to allocate memory for HTTP post content
  332. SHRC779=The minimum reserved JIT data space should not be greater than the maximum allowed JIT data space.
  333. SHRC417=JCL data bytes %*c\= %d
  334. J9CL025=Unable to allocate memory for HTTP response headers
  335. SHRC778=The minimum reserved AOT space should not be greater than the maximum allowed AOT space.
  336. SHRC416=ReadWrite bytes %*c\= %d
  337. J9CL024=Out of memory
  338. SHRC777=The softmx limit for shared cache usage is smaller than the minimum feasible value %u bytes.
  339. SHRC415=Java Object bytes %*c\= %d
  340. J9CL023=Not enough memory available to read record
  341. SHRC776=The softmx limit for shared cache usage is smaller than the number of bytes %u in shared cache already in use.
  342. SHRC414=JIT profile bytes %*c\= %d
  343. J9CL022=Not enough memory to list record stores
  344. SHRC775=The softmx limit set for shared cache usage is greater than the total cache size %u bytes. It will be set equal to the total cache size.
  345. SHRC413=JIT hint bytes %*c\= %d
  346. J9CL021=Not enough memory to create index list
  347. SHRC774=The space for JIT data in shared cache "%s" is full.
  348. SHRC412=AOT thunk bytes %*c\= %d
  349. J9CL020=Not enough memory to read locale data
  350. SHRC773=The space for AOT data in shared cache "%s" is full.
  351. SHRC411=AOT class hierarchy bytes %*c\= %d
  352. SHRC772=The softmx limit for shared cache "%s" usage is reached. Use option "%s" to increase the softmx limit.
  353. SHRC410=AOT data bytes %*c\= %d
  354. SHRC771=Enable memory protection of partially filled pages. On z/OS it is equivalent to 'partialpagesonstartup'.
  355. SHRC770=The JVM has disabled protecting partially filled pages. If '-Xshareclasses\:mprotect\=onfind' is specified, it is also ignored.
  356. EXEL029=\ -Xss<x> set maximum java thread stack size to <x>
  357. EXEL028=\ -Xiss<x> set initial java thread stack size to <x>
  358. EXEL027=\ -Xmso<x> set OS thread stack size to <x>
  359. EXEL026=\ -Xmrx<x> set maximum size of remembered set to <x>
  360. EXEL025=\ -Xmr<x> set remembered set size to <x>
  361. EXEL024=\ -Xmx<x> set memory maximum to <x>
  362. EXEL023=\ -Xms<x> set initial memory size to <x>
  363. EXEL022=\ -Xms<x> set old space size to <x>
  364. J9CL019=Cannot allocate SIOCGIFCONF buffer
  365. EXEL021=\ -Xmoi<x> set old space increment to <x>
  366. J9CL018=unable to allocate for timezone entry
  367. EXEL020=\ -Xmox<x> set maximum old space size to <x>
  368. SHRC409=AOT code bytes %*c\= %d
  369. J9CL017=unable to allocate for timezone resource
  370. SHRC408=cache generation %*.c\= %d\n
  371. J9CL016=unable to create new class path entry
  372. SHRC769=The JVM has enabled shared cache partial page protection as the existing shared cache was created with partial page protection enabled.
  373. SHRC407=runtime flags %*.c\= 0x%.16llX
  374. J9CL015=Failed to create stack trace (most likely due to lack of OS memory)
  375. SHRC768=Memory page protection on runtime data is successfully enabled
  376. SHRC406=metadata start address %*c\= 0x%p
  377. J9CL014=Invalid JCL Command line argument
  378. SHRC767=Memory page protection on runtime data and string read-write data is successfully enabled
  379. SHRC405=Failed to create a directory for the cache
  380. J9CL013=Failed to allocate OS monitor
  381. SHRC766=Memory page protection on runtime data and partially filled pages is successfully enabled
  382. SHRC404=Failed to get a directory for the cache
  383. SHRC765=Memory page protection on runtime data, string read-write data and partially filled pages is successfully enabled
  384. SHRC403=Class debug area used bytes %*c\= %u
  385. J9CL011=Failed to fork OS thread
  386. SHRC764=Unable to create shared memory of size %1$d bytes as requested \n \tAdjusted to maximum shared memory permitted (%2$d bytes) \n \t(To increase available shared memory, modify system SHMMAX value) \n \t If -Xscdmx is used, the debug attribute area is adjusted in proportion \n \t according to its original ratio to the -Xscmx value.
  387. SHRC402=JIT data bytes %*c\= %d
  388. J9CL010=Failed to allocate JNIEnv
  389. SHRC763=All shared classes sub-options in total should not be longer than %u chars.
  390. SHRC401=\# Zip caches %*c\= %d
  391. SHRC762=Error getting stats of the shared class cache file when verifying its group access permission.
  392. SHRC400=Zip cache bytes %*c\= %d
  393. SHRC761=Failed to set group access permission as requested by the 'groupAccess' sub-option on the shared cache snapshot file.
  394. SHRC760=Failed to set group access permission as requested by the 'groupAccess' sub-option on the shared memory control file associated with shared class cache.
  395. EXEL019=\ -Xmos<x> set initial old space size to <x>
  396. EXEL018=\ -Xmo<x> set initial/maximum old space size to <x>
  397. EXEL017=\ -Xmo<x> set old space size to <x>
  398. EXEL016=\ -Xmnx<x> set maximum new space size to <x>
  399. EXEL015=\ -Xmns<x> set initial new space size to <x>
  400. EXEL014=\ -Xmn<x> set initial/maximum new space size to <x>
  401. EXEL013=\ -Xmn<x> set new space size to <x>
  402. EXEL012=\ -Xmco<x> set ROM class segment increment to <x>
  403. J9CL009=Thread already started
  404. EXEL011=\ -Xmca<x> set RAM class segment increment to <x>
  405. J9CL008=nanosecond timeout value out of range
  406. EXEL010=Values suffixed with "k" (kilo) or "m" (mega) will be factored accordingly.\n
  407. J9CL007=timeout value is negative
  408. J9CL006=No pre-verify data for java/lang/Object
  409. SHRC759=Failed to set group access permission as requested by the 'groupAccess' sub-option on the semaphore control file associated with shared class cache.
  410. J9CL005=Incompatible class library version\: requires VM v%1$i, found v%2$i
  411. SHRC758=Failed to set group access permission as requested by the 'groupAccess' sub-option on the shared memory with shmid\=%d associated with shared class cache.
  412. J9CL004=Incompatible class library version\: expected JCL v%1$i, found v%2$i
  413. SHRC757=Failed to set group access permission as requested by the 'groupAccess' sub-option on the semaphore set with semid\=%d associated with shared class cache.
  414. J9CL003=Incompatible class library version\: JCL %1$x, VM %2$x
  415. SHRC756=Failed to set group access permission on the shared cache file as requested by the 'groupAccess' sub-option.
  416. J9CL002=Classes are from a non-J9 library, or an incorrectly reduced JXE
  417. SHRC755=\t invalidatedaot\tPrints only invalidated aot types in the shared cache.
  418. J9CL001=Try running with -jcl\:%s
  419. SHRC754=Recreation of shared memory control file is not allowed.
  420. J9CL000=Incompatible class library
  421. SHRC753=Failed to get the cache write mutex
  422. SHRC752=Failed to parse the method specification(s)
  423. SHRC751=Failed to parse the method specifications. No more than %d method specifications are allowed.
  424. SHRC750=No AOT methods match the method specification(s)
  425. EXEL009=\nArguments to the following options are expressed in bytes.
  426. EXEL008=\ -Xfuture enable strictest checks, anticipating future default
  427. EXEL007=\ -Xnoaot do not run precompiled code
  428. EXEL006=\ -Xnojit disable the JIT
  429. EXEL005=\ -Xint run interpreted only (equivalent to -Xnojit -Xnoaot)
  430. EXEL004=\n -Xrun<library>[\:options] load native agent library\n (deprecated in favor of -agentlib)\n
  431. EXEL003=\ -Xbootclasspath/a\:<path> append <path> to bootstrap classpath
  432. EXEL002=\ -Xbootclasspath/p\:<path> prepend <path> to bootstrap classpath
  433. EXEL001=\ -Xbootclasspath\:<path> set bootstrap classpath to <path>
  434. EXEL000=The following options are non-standard and subject to change without notice.\n
  435. SHRC749=Failed to find the AOT method(s)
  436. SHRC748=Failed to revalidate the AOT method(s)
  437. SHRC747=Failed to invalidate the AOT method(s)
  438. SHRC746=Found the %d AOT method(s)
  439. SHRC745=Revalidated the %d AOT method(s)
  440. SHRC744=Invalidated the %d AOT method(s)
  441. SHRC743=Invalid method specification(s) for option "%s"
  442. SHRC742=IMPORTANT\: You can pass in multiple method specifications separated by commas. Where an option value contains comma(s), it must be enclosed in curly braces. \n\tYou may need to enclose options in quotation marks to prevent the shell intercepting and fragmenting comma-separated command lines, e.g.\: \n\n\t"-Xshareclasses\:name\=Cache1,%s{java/util/*.*(),java/lang/Object.*(*)}" or\n\t-Xshareclasses\:name\=Cache1,%s'{java/util/*.*(),\!java/util/*.*()}'\n
  443. SHRC741=The format of <method_specification> is [\!]{*|[*]<packagename/classname>[*]}[.{*|[*]<methodname>[*]}][({*|[*]<parameters>[*]})], e.g.\:\n\n\t-Xshareclasses\:name\=Cache1,%sjava/util/HashMap.hash(Ljava/lang/Object;)\n
  444. SHRC740=Usage\: %s{<method_specification>[,<method_specification>]}
  445. SHRC739=INVALIDATED
  446. SHRC738=Print the AOT method(s) matching the method specification(s).\n\t<method_specification> is defined as\: [\!]{*|[*]<packagename/classname>[*]}[.{*|[*]<methodname>[*]}][({*|[*]<parameters>[*]})].
  447. SHRC737=Revalidate the AOT method(s) matching the method specification(s).
  448. SHRC736=Invalidate the AOT method(s) matching the method specification(s).
  449. SHRC735=Use a %d-bit JVM to perform the requested operation on the %d-bit shared cache "%s" as the %d-bit JVM cannot verify that the shared memory was created by the JVM
  450. SHRC734=Print the name of the shared class snapshot file that will be used.
  451. SHRC733=The JVM cannot store classpaths into the shared cache, since the cache was created with the '-Xshareclasses\:restrictClasspaths' option
  452. SHRC732=The JVM can store classpaths into the shared cache created with '-Xshareclasses\:restrictClasspaths' option
  453. SHRC731=The JVM has ignored '-Xshareclasses\:restrictClasspaths' option as the existing shared cache was created without '-Xshareclasses\:restrictClasspaths' option
  454. SHRC730=The JVM has created shared cache with '-Xshareclasses\:restrictClasspaths' option. Subsequent JVM invocations will not be able to store classpaths into the shared cache
  455. SHRC729=The snapshot was created by a different JVM build and doesn't match the running JVM
  456. SHRC728=Failed to read the non-persistent shared cache snapshot file "%s"
  457. SHRC727=An error has occurred in creating the new non-persistent shared cache
  458. SHRC726=Non-persistent shared cache "%s" already exists. It cannot be restored from the snapshot.
  459. SHRC725=The length of the non-persistent shared cache snapshot file "%s" is invalid. The length of the file is %lld bytes. A valid snapshot file is at least %d bytes and at most %lld bytes.
  460. SHRC724=Shared cache snapshot file "%s" does not exist
  461. SHRC723=The JVM could not check the permissions of the shared cache snapshot file "%s"
  462. SHRC722=The JVM does not permit access to the shared cache snapshot file "%s" because the JVM process's user ID and group ID are different from the shared cache snapshot file owner's user ID and group ID, and the JVM process's user ID does not belong to the shared cache snapshot file owner's group.
  463. SHRC721=The JVM is not configured to access the non-persistent shared cache snapshot file "%s". To open the file, use 'groupAccess' sub-option.
  464. SHRC720=Recreation of shared memory control file is not allowed when creating a snapshot of the cache
  465. SHRC719=Shared cache snapshot "%s" is destroyed
  466. SHRC718=Shared cache snapshot does not exist
  467. SHRC717=Failed to remove current generation of shared cache snapshot "%s"
  468. SHRC716=Failed to remove older generation of shared cache snapshot "%s"
  469. SHRC715=Removed older generation of shared cache snapshot "%s"
  470. SHRC714=No shared cache snapshots available
  471. SHRC713=Failed to get the length of the shared cache snapshot file "%s"
  472. SHRC712=Attempting to destroy all shared cache snapshots in cacheDir "%s"
  473. SHRC711=Failed to reposition the offset of the file descriptor in the non-persistent shared cache snapshot file "%s"
  474. SHRC710=Failed to write into the non-persistent shared cache snapshot file "%s"
  475. SHRC709=The JVM is creating a snapshot of the non-persistent shared cache "%s", but a snapshot file "%s" already exists and it will be overwritten
  476. SHRC708=Failed to truncate the existing non-persistent shared cache snapshot file "%s"
  477. SHRC707=Failed to acquire the mutex of cache "%s"
  478. SHRC706=Failed to acquire file lock on the shared cache snapshot file
  479. SHRC705=Platform error message\: %1$s
  480. SHRC704=Port layer error code \= %1$d
  481. SHRC703=Failed to open the shared cache snapshot file "%s"
  482. SHRC702=Failed to get a directory for the shared cache snapshot
  483. SHRC701=Failed to create a snapshot of non-persistent shared cache "%s"
  484. SHRC700=Snapshot of non-persistent shared cache "%s" has been created
  485. PCKD091=@Unpacked annotation on field %2$.*1$s in class %4$.*3$s is invalid\: @Unpacked field must not be declared static
  486. PCKD090=Annotations on field %2$.*1$s in class %4$.*3$s are invalid\: @Length annotation and @Unpacked annotation cannot be used together
  487. PCKD089=@Unpacked annotation on field %2$.*1$s in class %4$.*3$s is invalid\: Declaring class is not @Packed
  488. PCKD088=@Unpacked annotation on field %2$.*1$s in class %4$.*3$s is invalid\: The type of an @Unpacked field must be a @Packed class
  489. PCKD087=Packed object support is a new IBM enhancement for Java that is provided as a\ntechnology preview. The content is available subject to a disclaimer.\n\nDisclaimer\nThe code and application programming interfaces herein are technology preview\ninformation that may not be made generally available by IBM as or in a product.\nYou are permitted to use the information only for internal use for evaluation\npurposes and not for use in a production environment. IBM provides the\ninformation without obligation of support and "as is" without warranty of any\nkind.\n\nInformation regarding potential future products is intended to outline our general\nproduct direction and it should not be relied on in making a purchasing decision.\nThe information mentioned regarding potential future products is not a\ncommitment, promise, or legal obligation to deliver any material, code or\nfunctionality. Information about potential future products may not be incorporated\ninto any contract. The development, release, and timing of any future features or\nfunctionality described for our products remains at our sole discretion.\n
  490. PCKD086=@Packed array class "%.*s" cannot have a @Packed array member class.
  491. PCKD085=Unexpected method implementation found in @Packed array class "%.*s"
  492. PCKD084=@Packed array class "%.*s" cannot have any fields.
  493. PCKD083=@Packed array class "%.*s" must implement java/io/Serializable.
  494. PCKD082=@Packed array class "%.*s" must implement java/lang/Cloneable.
  495. PCKD081=@Packed array class "%.*s" is missing clone() method.
  496. PCKD080=@Packed array class "%.*s" is missing getLength() method.
  497. PCKD079=@Packed array class "%.*s" is missing at() method.
  498. IREL000=AOT code from %1$s.jar generated by version %2$s of the JVM is not compatible with the current version %3$s of the JVM.
  499. PCKD078=@Packed array class "%.*s" is missing allocate() method.
  500. PCKD077=@Packed array class "%.*s" is missing a private constructor.
  501. PCKD076=Incorrect signature for clone() method of @Packed array class "%.*s".
  502. PCKD075=Incorrect signature for getLength() method of @Packed array class "%.*s".
  503. PCKD074=Incorrect signature for at() method of @Packed array class "%.*s".
  504. PCKD073=Incorrect signature for allocate() method of @Packed array class "%.*s".
  505. PCKD072=@Packed array class "%.*s" cannot have more than one constructor.
  506. PCKD071=The constructor of @Packed array class "%.*s" must not require any arguments.
  507. PCKD070=The constructor of @Packed array class "%.*s" must be private.
  508. PCKD069=@Packed array class "%.*s" must directly extend PackedObject.
  509. PCKD068=@Packed array class "%.*s" must be public.
  510. PCKD067=@Packed array class "%.*s" must be final.
  511. PCKD066=The requested array length %1$lld (0x%2$llx) is too large.
  512. PCKD065=The requested array length is too large.
  513. PCKD064=Unable to get capacity of direct ByteBuffer.
  514. PCKD063=Unable to get address of direct ByteBuffer.
  515. PCKD062=Final @Packed class %.*s must not be empty.
  516. PCKD061=Final @Packed class must not be empty.
  517. PCKD060=@Length annotation on %2$.*1$s in %4$.*3$s is invalid\: @Length value must not be zero
  518. PORT048=Failed to create system dump because a non-regular file "%s" exists with the same name as the expected system dump file
  519. PORT047=Insufficient buffer memory while attempting to load a shared library
  520. PORT046=The executable could not be opened
  521. PORT045=Failed to allocate memory while retrieving system info.
  522. PORT044=Failed to allocate memory while retrieving hypervisor info.
  523. PORT043=%1$d\: Failed retrieving %2$s Info.
  524. PORT042=Unable to read /proc/sysinfo
  525. PORT041=HYPFS not mounted
  526. PORT040=HYPFS read failed
  527. PCKD059=The class is abstract.
  528. PCKD058=Error in nested field "%2$.*1$s" in class %4$.*3$s. The field's type must be a final packed array class.
  529. PCKD057=The class of a nested field must be a packed array class.
  530. PCKD056=Error in nested field "%2$.*1$s" in class %4$.*3$s. The field's class must be final and @Packed.
  531. PCKD055=The class of a nested field must be final and @Packed.
  532. PCKD054=The element class of a packed array class must be final and @Packed.
  533. PCKD053=The element class of packed array class %.*s must be final and @Packed.
  534. PCKD052=Class %2$.*1$s, subclass of %4$.*3$s, must be @Packed because it extends PackedObject.
  535. PCKD051=Superclass %2$.*1$s of @Packed class %4$.*3$s is invalid. A @Packed class must extend PackedObject or an abstract @Packed class.
  536. PCKD050=Superclass %2$.*1$s of @Packed class %4$.*3$s must be abstract.
  537. PORT039=HYPFS update failed
  538. PORT038=Malformed value for IBM_JAVA_HYPERVISOR_SETTINGS
  539. PORT037=Not running on a Hypervisor.
  540. PORT036=Unexpected return code from CSRSI service on z/OS
  541. PORT035=__malloc31 failed to allocate buffer on z/OS
  542. PORT034=Attempted to attach shared memory created in storage protection key %lu, but currently running in key %lu.
  543. PORT033=Failed to detect a Supported Hypervisor.
  544. PORT032=Hypervisor related operation failed.
  545. PORT031=The LE condition %s%i, which corresponds to a software-raised POSIX signal, was received
  546. PORT030=%s setting "%s" specifies that the core dump is to be piped to an external program. Attempting to rename either core or core.%d.\n
  547. PCKD049=The superclass of a @Packed class must be abstract.
  548. PCKD048=@Packed class %.*s has no superclass.
  549. PCKD047=@Packed class has no superclass.
  550. PCKD046=@Packed class must be declared abstract or final.
  551. PCKD045=@Packed class %.*s must be declared abstract or final.
  552. PCKD044=A packed array class is required for this operation.
  553. PCKD043=Class com.ibm.jvm.packed.PackedObject must be abstract and not @Packed.
  554. PCKD041=Cast type is larger than the original object.
  555. PCKD040=Array lengths are different.
  556. PORT029=Invalid handle. file handle\: %1$d.
  557. PORT028=mmap failed due to invalid mapping options.
  558. PORT027=mmap failed due to invalid memory protection parameter.
  559. PORT026=File specified is a directory
  560. PORT025=Invalid lock type for file lock operation. lockFlags\: %1$d
  561. PORT024=IEATDUMP failed because we couldn't allocate the dump dataset (check disk space and field permissions).
  562. PORT023=IEATDUMP failed because user-specified dump template was too long. Retrying dump with default template.
  563. PORT022=Appending .X&DS to user-specified dump template to enable multi-part dumps.
  564. PORT021=You have opened a stale System V shared semaphore\: file\:%1$s semid\:%2$d
  565. PORT020=You have opened a stale System V shared memory\: file\:%1$s shmid\:%2$d
  566. PCKD039=@Length annotation on %2$.*1$s in %4$.*3$s is invalid\: field must not be declared static
  567. PCKD038=Missing @Length annotation on %2$.*1$s in %4$.*3$s
  568. PCKD037=cannot create multi-dimensional @Packed array
  569. PCKD036=@Packed class cannot have instance synchronized methods.
  570. PCKD035=@Packed class %2$.*1$s cannot have instance synchronized method %4$.*3$s
  571. PCKD034=@Packed class cannot have final nested packed fields.
  572. PCKD033=@Packed class %2$.*1$s cannot have final nested packed field %4$.*3$s
  573. PCKD032=@Packed class cannot have transient fields.
  574. PCKD031=@Packed class %2$.*1$s cannot have transient field %4$.*3$s
  575. PCKD030=@Packed class cannot have volatile fields.
  576. PORT019=Unable to create directory %s. Shared classes will be disabled until this directory is created.
  577. PORT018=Operation Failed\: %1$d (%2$s failed\: %3$d)
  578. PORT017=Operation Failed\: %d
  579. PORT016=Internal Error %i
  580. PORT015=Unable to resolve shared library references - a prerequisite shared library may be missing
  581. PORT014=Failed to load dll as it was not found
  582. PORT013=Error loading shared library - the dll table could not be found
  583. PORT012=Error loading shared library due to the PACE bit being set
  584. PORT011=Unable to allocated memory while attempting to load a shared library
  585. PORT010=Permission to load the shared library was not granted
  586. CDRT002=Failing PC\: %1$p (offset %2$p), metaData \= %3$p
  587. CDRT001=Method\: %2$.*1$s.%4$.*3$s%6$.*5$s (%7$p)
  588. CDRT000=Unable to locate JIT stack map - aborting VM
  589. PCKD029=@Packed class %2$.*1$s cannot have volatile field %4$.*3$s
  590. PCKD028=@Packed class cannot implement interface.
  591. PCKD027=@Packed class %.*s should not implement interface.
  592. PCKD026=@Packed class must be declared final.
  593. PCKD025=@Packed class %.*s must be declared final.
  594. PCKD024=@Length annotation on %2$.*1$s in %4$.*3$s is invalid\: @Length value must be positive
  595. PCKD023=This function cannot operate on mixed @Packed objects.
  596. PCKD022=@Length annotation on %2$.*1$s in %4$.*3$s is invalid\: field type must be @Packed
  597. PCKD021=@Length annotation on %2$.*1$s in %4$.*3$s is invalid\: field type must be packed array
  598. PCKD020=@Length annotation on %2$.*1$s in %4$.*3$s is invalid\: declaring class is not @Packed
  599. PORT009=The specified shared library was not found
  600. PORT008=The module is not the correct architecture
  601. PORT007=The specified module is not a module
  602. PORT006=The format of the module is not correct
  603. PORT005=Could not load the shared library
  604. PORT004=Symbol resolution failure
  605. PORT003=Dependent module %s could not be loaded
  606. PORT002=Unknown error loading shared library
  607. PORT001=Failed to allocate memory while attempting to write to a file.
  608. PCKD019=Non @Packed class %.*s was previously registered as a @Packed class.
  609. PCKD018=@Packed class %.*s was previously registered as a non @Packed class.
  610. PCKD017=Cannot store into an array of @Packed type.
  611. PCKD016=Cannot assign to a nested field of a @Packed type.
  612. PCKD015=A @Packed class must extend PackedObject or an abstract @Packed class.
  613. PCKD014=Subclasses of com.ibm.jvm.packed.PackedObject must be @Packed.
  614. PCKD013=com.ibm.jvm.packed.PackedObject cannot be loaded by a non-system classloader.
  615. PCKD012=This operation is not valid on @Packed objects.
  616. PCKD011=Cannot copy between objects of different @Packed types.
  617. PCKD009=%2$.*1$s from @ImportPacked annotation in %4$.*3$s was previously registered as non @Packed class.
  618. PCKD008=Class does not match a previous @ImportPacked annotation.
  619. PCKD007=Cannot create an object via this API if the object's class is a mixed @Packed type
  620. J2JX110=The JAR file %s has already been converted
  621. PCKD004=Not a @Packed array object
  622. PCKD003=A @Packed array class is not valid for this operation.
  623. PCKD002=Not a native @Packed object
  624. PCKD001=Not a @Packed object
  625. PCKD000=Not a @Packed class
  626. SHRC099=%1$d\: 0x%2$p ORPHAN\: %4$.*3$s at 0x%5$p.
  627. SHRC098=\nCurrent statistics for cache "%s"\: \n
  628. SHRC097=Shared cache "%s" is corrupt. No new JVMs will be allowed to connect to the cache.\n \tExisting JVMs can continue to function, but cannot update the cache.
  629. SHRC096=Shared cache "%s" is full. Use -Xscmx to set cache size.
  630. SHRC095=Attempts to call markStale on shared cache items have failed
  631. SHRC094=Orphan found but local ROMClass passed to addROMClassToCache
  632. SHRC093=Detected unexpected termination of another JVM during update
  633. SHRC092=ADD failure when reading cache
  634. J2JX109=\ -E xxx\=yyy set system property xxx to value of environment variable yyy at runtime
  635. SHRC091=Read corrupt data for item 0x%p (invalid dataType)
  636. J2JX108=\ -g[\:lines,source,vars] generate a subset (lines, source, and/or vars) of debugging information inside of JXE
  637. SHRC090=Failed to get cache mutex in SH_CacheMap startup
  638. J2JX107=\ -g\:nosym embed debugging information inside JXE
  639. J2JX106=\ -g\:sym generate a .sym file for debugging, no debugging information inside of JXE
  640. J2JX105=\ -nog generate no debugging information for JXE
  641. J2JX104=\ -g same as -g\:sym
  642. J2JX103=Could not compile method\: %2$.*1$s/%4$.*3$s%6$.*5$s jitErr 0%7$x
  643. J2JX102=Could not compile native method\: %2$.*1$s/%4$.*3$s%6$.*5$s
  644. J2JX101=Could not compile abstract method\: %2$.*1$s/%4$.*3$s%6$.*5$s
  645. J2JX100=%s is not supported in this configuration
  646. SHRC089=Cannot create refresh mutex in SH_CacheMap
  647. SHRC088=Failed to create cache as ROMImageSegment in SH_CacheMap
  648. SHRC087=MarkStale failed during ClasspathManager\:\:update()
  649. SHRC086=Cannot enter ClasspathManager hashtable mutex
  650. SHRC085=Cannot allocate memory for linked list item header
  651. SHRC084=Cannot allocate memory for linked list item
  652. SHRC083=Cannot allocate memory for identifiedClasspaths array in SH_ClasspathManagerImpl2
  653. SHRC082=Cannot create identifiedMutex in SH_ClasspathManagerImpl2
  654. SHRC081=Cannot create cpeTableMutex in SH_ClasspathManagerImpl2
  655. SHRC080=Cannot allocate memory for hashtable entry
  656. SHRC079=Cannot create hashtable in SH_ClasspathManagerImpl2
  657. SHRC078=Failed to create linkedListHdr pool in SH_ClasspathManagerImpl2
  658. SHRC077=Failed to create linkedListImpl pool in SH_ClasspathManagerImpl2
  659. SHRC076=Finding class %1$s in shared cache for class-loader id %2$d...
  660. SHRC075=\ Failed.
  661. SHRC074=\ Succeeded.
  662. SHRC073=Storing class %2$.*1$s in shared cache for class-loader id %3$d with URL %5$.*4$s (index %6$d)...
  663. VIRT001=Unable to initialize the Hypervisor.
  664. SHRC072=Command-line option "%s" unrecognised
  665. VIRT000=Virtualization feature requested.
  666. SHRC071=Command-line option "%s" requires sub-option
  667. SHRC070=Incremental updates disabled
  668. SHRC069=Concurrent store contention reduction disabled
  669. SHRC068=Local caching of classpaths disabled
  670. SHRC067=Timestamp checking disabled
  671. SHRC066=Locking of local hashtables disabled
  672. SHRC065=Cannot allocate pool in shrinit
  673. SHRC064=Failed to create configMonitor in shrinit
  674. SHRC063=Cannot allocate memory for sharedClassConfig in shrinit
  675. SHRC062=Error copying username into default cache name
  676. SHRC061=Cache name should not be longer than 64 chars. Cache not created.
  677. SHRC060=Cannot allocate memory for string buffer in shrinit\:\:hookFindSharedClass
  678. JDTS000=Listening for transport dt_socket at address\: %d
  679. OFFC031=Offload\:Local natives properties file has invalid format {%s}.
  680. OFFC030=Offload\:Could not find local natives properties file {%s}.
  681. SHRC059=Cannot allocate memory for ClasspathItem in shrinit\:\:hookFindSharedClass
  682. SHRC058=Cannot allocate memory for ClasspathItem in shrinit\:\:hookStoreSharedClass
  683. SHRC057=Wrong parameters for expire option
  684. SHRC056=Command-line option "%s" unrecognised
  685. SHRC055=Disable incremental cache updates
  686. SHRC054=Disable algorithm to reduce store contention
  687. SHRC053=Disable local hashtable locking
  688. SHRC052=Disable local classpath caching
  689. SHRC051=Switch off dynamic updates
  690. OFFC029=Offload\:Failed to create offload manager.
  691. SHRC050=Enable verbose output
  692. OFFC028=Offload\:Failed to start local quarantine controller.
  693. OFFC027=Offload\:Connection information missing for remote isolation.
  694. OFFC026=Offload\:Invalid connection information for remote isolation.
  695. OFFC025=Offload\:Failed to start quarantine controller with url\=%s.
  696. J9VM156=-XX\:SharedCacheHardLimit\= is ignored if -Xshareclasses is not specified
  697. OFFC024=Offload\: JNI Isolation enabled for library group {%s}.
  698. J9VM155=Bad value for -Xpatch; patch path is not specified in the property %s\=%s
  699. OFFC023=Offload Trace\: Tuning Fork logging to %s
  700. J9VM154=Bad value for -Xpatch; value of the property %s is not specified
  701. OFFC022=Offload Trace utility installed. Use -Xoffload\:trace\:help for usage
  702. J9VM153=Switching to internal jimage reader as JVM is unable to use jimage library
  703. OFFC021=\ttuningfork\=device send tuningfork output to device.
  704. J9VM152=Failed to lookup symbol %s in jimage library
  705. OFFC020=\txml\=filename log JNI activity to filename.
  706. J9VM151=Failed to open jimage library
  707. J9VM150=-Xscsoftmx is ignored if -Xshareclasses is not specified
  708. SHRC049=Debug mode that checks all incoming bytecode
  709. SHRC048=List all elements in cache
  710. SHRC047=Print summary of cache statistics
  711. SHRC046=Display all shared caches and their statistics
  712. SHRC045=Destroy caches that have been unused for <t> mins
  713. SHRC044=OPTION_MODIFIED_EQUALS"<modContext>"
  714. SHRC043=Enable sharing of modifed bytecode\n \t<modContext> is user-descriptor describing type of modification\n \tJVMs using same <modContext> must use same modifications
  715. SHRC042=Destroy all shared caches
  716. SHRC041=Destroy shared cache (use name parm or default)
  717. OFFC019=Usage\: -Xoffload\:trace\:[option[,option[,...]]]
  718. SHRC040=Specify name of shared cache
  719. OFFC018=Offload Trace utility for J9, Version %s
  720. J9VM149=%s is no longer supported. Please add the required libraries/jar files to the classpath.
  721. OFFC017=\thelp print this screen
  722. J9VM148=%s is no longer supported. The endorsed-standards override mechanism is only supported via modules.
  723. OFFC016=\ttax\=spin|delay set the delay strategy.
  724. J9VM147=Cannot attach current thread
  725. OFFC015=\toutput\=device output to file, 'stdout', or 'stderr'
  726. J9VM146=invokeinterface of non-public method '%4$.*3$s%6$.*5$s' in %2$.*1$s
  727. OFFC014=\tdelay\=\#[ms|us] apply delay of \# milli/micro seconds to each JNI call
  728. J9VM145=%s is unsupported on z/OS.
  729. OFFC013=Usage\: -Xoffload\:sim\:[option[,option[,...]]]
  730. J9VM144=too many parameters\: 255 + 1
  731. OFFC012=Offload Simulator utility for J9, Version %s
  732. J9VM143=The command-line option %s is not supported in this version of the IBM SDK
  733. OFFC011=Offload Simulator\: Tuning Fork failed to initialize.
  734. J9VM142=The command-line option -Xrealtime is not supported in this version of the IBM SDK
  735. OFFC010=Unrecognized time units -> %s
  736. J9VM141=conflicting default methods for '%2$.*1$s%4$.*3$s' in %6$.*5$s from classes [%7$s]
  737. J9VM140=Caller is not annotated as @sun.reflect.CallerSensitive.
  738. SHRC039=Print general shared help
  739. SHRC038=Usage\:\n\njava -Xshareclasses[\:option,...]\n\n Valid options included (with a brief summary) are\:\n\n
  740. SHRC399=Data bytes %*c\= %d
  741. SHRC037=Incremental updates disabled
  742. SHRC398=\# AOT Methods %*c\= %d
  743. SHRC036=Concurrent store contention reduction disabled
  744. SHRC397=AOT bytes %*c\= %d
  745. SHRC035=Local caching of classpaths disabled
  746. SHRC396=%% Stale classes %*c\= %d%%\n
  747. SHRC034=Timestamp checking disabled
  748. SHRC395=\# Stale classes %*c\= %d
  749. SHRC033=Locking of local hashtables disabled
  750. SHRC394=\# Tokens %*c\= %d
  751. SHRC032=The Shared Class Cache you are attaching has wrong modification level.
  752. SHRC393=\# URLs %*c\= %d
  753. SHRC031=The Shared Class Cache you are attaching has incompatible JVM version.
  754. OFFC009=Offload\: Unrecoverable error, unable to hook event
  755. SHRC392=\# Classpaths %*c\= %d
  756. SHRC030=The Shared Class Cache you are attaching has an invalid header.
  757. OFFC008=Offload Simuator\: Invalid sleep time, please choose a time >\= 1 millisecond.
  758. J9VM139=Failed to create a thread\: retVal %1$zd, errno %2$zd (0x%3$zx), errno2 %4$zd (0x%5$zx)
  759. SHRC391=\# ROMClasses %*c\= %d
  760. OFFC007=Offload Simuator\: Clock frequency is %llu ticks/second, have_nanosleep\=%d
  761. J9VM138=The -Xdiagnosticscollector option is not supported by this JVM.
  762. SHRC390=Metadata %% used %*c\= %d%%
  763. OFFC006=Offload Simuator\: Logging JNI calls to %s.
  764. J9VM137=class %2$.*1$s has conflicting defaults for method %4$.*3$s%6$.*5$s
  765. OFFC005=Offload Simuator\: Delay tax using sleep.
  766. J9VM136=/proc/sys/kernel/core_pattern setting "%s" specifies a format string for renaming core dumps. The JVM may be unable to locate core dumps and rename them.
  767. OFFC004=Offload Simuator\: Delay tax using spin.
  768. J9VM135=/proc/sys/kernel/core_pattern setting "%s" specifies that core dumps are to be piped to an external program. The JVM may be unable to locate core dumps and rename them.
  769. OFFC003=Offload Simuator\: Applying %d microsecond tax to each JNI call.
  770. J9VM134=The system fullcore option is set to FALSE, system dumps may be truncated.
  771. OFFC002=Offload Simuator\: Applying %d millisecond tax to each JNI call.
  772. J9VM133=The system core size hard ulimit is set to %d, system dumps may be truncated.
  773. OFFC001=Offload simulator utility installed. Use -Xoffload\:sim\:help for usage
  774. J9VM132=Invalid lockword mode specified, java/lang/Class and java/lang/String cannot have lockwords when -Xtenant present\: %s
  775. OFFC000=-Xoffload\:sim\: unrecognized option --> '%s'
  776. J9VM131=Terminating process using CEE3AB2() with abend %1$u, reason %2$u, cleanup %3$u.
  777. J9VM130=Application resumed execution after handling an unrecoverable condition and illegally returned to, or called back into, Java (JIT'ed code)
  778. SHRC029=Not enough memory left on the system
  779. SHRC028=Permission Denied
  780. SHRC389=Metadata bytes %*c\= %d
  781. SHRC027=Shared cache name is too long
  782. SHRC388=ROMClass bytes %*c\= %d
  783. SHRC026=Cannot create cache of requested size\: Please check your SHMMAX and SHMMIN settings
  784. SHRC387=free bytes %*c\= %d
  785. SHRC025=error attaching shared memory
  786. SHRC386=cache size %*c\= %d
  787. SHRC024=shared memory detach error
  788. SHRC385=allocation pointer %*c\= 0x%p\n
  789. SHRC023=Cache does not exist
  790. SHRC384=end address %*c\= 0x%p
  791. SHRC022=Error creating shared memory region
  792. SHRC383=\nbase address %*c\= 0x%p
  793. SHRC021=An unknown error code has been returned
  794. SHRC382=Class debug area LocalVariableTable bytes %*c\= %u\n
  795. J9VM129=Application resumed execution after handling an unrecoverable condition and illegally returned to, or called back into, Java
  796. SHRC020=An error has occurred while opening semaphore
  797. SHRC381=Class LineNumberTable bytes %*c\= %u
  798. J9VM128=Java heap space
  799. SHRC380=Class debug area %% used %*c\= %u%%
  800. J9VM127=32-bit suballocator initial size can not be set to zero.
  801. J9VM126=32-bit suballocator commit size can not be set to zero.
  802. J9VM125=32-bit suballocator commit size is bigger than initial size. Commit size \= %1$u, initial size \= %2$u.
  803. J9VM124=Cannot define class %.*s - '%.*s' is a protected system package
  804. J9VM123=Attempting to run on a non-supported processor, JVM will terminate.
  805. J9VM122=Failed to get user32.dll address range required for -Xprotectcontiguous.
  806. J9VM121=-Xscmaxjitdata is ignored if -Xshareclasses is not specified
  807. J9VM120=-Xscminjitdata is ignored if -Xshareclasses is not specified
  808. SHRC019=request length is too small
  809. SHRC018=cannot allocate memory
  810. SHRC379=Class debug area size %*c\= %u
  811. SHRC017=Error code\: %d
  812. SHRC378=\nRelated command line options\:\n
  813. SHRC016=Shared Class Cache Error\:
  814. SHRC377=-Xscdmx value of %u bytes is greater than %u bytes of available free space. A value of %u bytes will be used for -Xscdmx instead.
  815. SHRC015=Shared Class Cache Error\: Invalid flag
  816. SHRC376=%1$d\: 0x%2$p ZIPCACHE\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  817. SHRC014=Shared cache "%s" semaphore remove failed
  818. SHRC375=The cache name is to long when the user name is included. There are %d bytes left in this buffer, and your user name is %d bytes.
  819. SHRC013=Shared cache "%s" memory remove failed
  820. SHRC374=Cache created with\:
  821. SHRC012=Cannot remove shared cache "%s" as there are JVMs still attached to the cache
  822. SHRC373=JIT data bytes \= %d
  823. SHRC011=Error\: Cannot open shared class cache
  824. SHRC372=\# Zip caches \= %d
  825. J9VM119=-Xscmaxjit is ignored if -Xshareclasses is not specified
  826. SHRC010=Shared cache "%s" is destroyed
  827. SHRC371=Zip cache bytes \= %d
  828. J9VM118=-Xscminjit is ignored if -Xshareclasses is not specified
  829. SHRC370=-Xnolinenumbers \= false
  830. J9VM117=-Xitsn is ignored if -Xshareclasses is not specified
  831. J9RI023=jvmri->TraceRegister, jvmri->TraceDeregister and TraceListener no longer supported, use new versions in JVMRAS_VERSION_1_5
  832. J9VM116=noLockword\:%.*s
  833. J9RI022=initialise JVMRI unable to allocate jvmri dump monitor
  834. J9VM115=lockword\:%.*s
  835. J9RI021=jvmri->RunDumpRoutine not supported.
  836. J9VM114=Lockword Mode\=%s
  837. J9RI020=jvmri->CreateThread unable to allocate private monitor
  838. J9VM113=-----------------------------
  839. J9VM112=Lockword Configuration
  840. J9VM111=Invalid lockword option specified\:%s
  841. J9VM110=Invalid lockword mode specified\:%s
  842. SHRC009=Shared cache opened\: %1$s size\: %2$d bytes
  843. SHRC008=Shared cache created\: %1$s size\: %2$d bytes
  844. SHRC369=-Xnolinenumbers \= true
  845. SHRC007=Failed to remove shared class cache "%s"
  846. SHRC368=Shutting down non debug enabled shared classes cache.
  847. SHRC006=Number of caches expired within last %1$d minutes is %2$d
  848. SHRC367=debug enabled \= false
  849. SHRC005=No shared class caches available
  850. SHRC366=debug enabled \= true
  851. J9RI019=jvmri->InjectOutOfMemory not supported.
  852. SHRC004=Cannot destroy cache "%s"
  853. SHRC365=Enables the storage of class debug information in the shared class.
  854. J9RI018=jvmri->NotifySignal raising signal %d.
  855. SHRC003=last detach time
  856. SHRC364=SH_OSCachesysv\:\:acquireWriteLock() call to j9shsem_wait on semid %d has failed with error %d.
  857. J9RI017=Can't allocate dump agent in jvmri->SetOutOfMemoryHook, function not registered.
  858. SHRC002=in use
  859. SHRC363=Cannot allocate api for shared classes in shrinit
  860. J9RI016=jvmri->SetOutOfMemoryHook called with NULL callback, function not registered.
  861. SHRC001=OS shmid
  862. SHRC362=Cannot allocate memory for ClasspathItem
  863. J9VM109=Unsupported operating system (%s)\: Windows XP or newer is required.
  864. J9RI015=jvmri->RunDumpRoutine\: componentId is out of bounds.
  865. SHRC000=Shared Cache
  866. SHRC361=Error while attaching to the shared memory during open/create
  867. J9VM108=-Xlog\:info,warn,error\n
  868. J9RI014=jvmri->RunDumpRoutine\: unable to retrieve component data.
  869. SHRC360=Failed to find byte data for key %.*s in shared cache...
  870. J9VM107=-Xlog\:error,warn
  871. J9RI013=jvmri->ReleaseRasInfo\: structure has unsupported type field.
  872. J9VM106=The info, warn, error, vital and config options can be combined with a ',' for example\:\n
  873. J9RI012=jvmri->ReleaseRasInfo called with NULL RasInfo structure.
  874. J9VM105=-Xlog\:config Log JVM configuration messages.\n
  875. J9RI011=RasInfo structure has unsupported type field.
  876. J9VM104=-Xlog\:vital Log JVM vital messages. This is turned on by default.
  877. J9RI010=jvmri->GetRasInfo unable to allocate memory.
  878. J9VM103=-Xlog\:error Log JVM error messages. This is turned on by default.
  879. J9VM102=-Xlog\:warn Log JVM warning messages.
  880. J9VM101=-Xlog\:info Log JVM informational messages.
  881. J9VM100=-Xlog\:all Log all JVM messages.
  882. SHRC359=Found byte data for key %.*s in shared cache...
  883. SHRC358=Failed to store byte data for key %.*s in shared cache.
  884. SHRC357=Stored byte data for key %.*s in shared cache.
  885. SHRC356=Failed to store AOT code for ROMMethod 0x%1$p in shared cache.
  886. J9RI009=jvmri->GetRasInfo unable to allocate memory.
  887. SHRC355=Stored AOT code for ROMMethod 0x%1$p in shared cache.
  888. J9RI008=jvmri->GetRasInfo unable to get components.
  889. SHRC354=Failed to find AOT code for ROMMethod 0x%1$p in shared cache.
  890. J9RI007=jvmri->GetRasInfo unable to allocate memory.
  891. SHRC353=Found AOT code for ROMMethod 0x%1$p in shared cache.
  892. J9RI006=jvmri->GetRasInfo called with NULL RasInfo structure.
  893. SHRC352=Failed to store class %2$.*1$s in shared cache for class-loader id %3$d with Token %5$.*4$s.
  894. J9RI005=jvmri->GetComponentDataArea component %s does not have dataArea under this vm.
  895. SHRC351=Stored class %2$.*1$s in shared cache for class-loader id %3$d with Token %5$.*4$s.
  896. J9RI004=jvmri->DynamicVerbosegc is not supported.
  897. SHRC350=Failed to store class %2$.*1$s in shared cache for class-loader id %3$d with URL %5$.*4$s.
  898. J9RI003=Can't allocate dump agent in jvmri->DumpRegister, function not registered.
  899. J9RI002=jvmri->DumpRegister called with NULL callback, function not registered.
  900. J9RI001=Internal error removing dump agent in jvmri->DumpDeregister, dump function may not have been deregistered.
  901. J9RI000=jvmri->CreateThread cannot allocate thread arguments memory
  902. SHRC349=Stored class %2$.*1$s in shared cache for class-loader id %3$d with URL %5$.*4$s.
  903. SHRC348=Failed to store class %2$.*1$s in shared cache for class-loader id %3$d with URL %5$.*4$s (index %6$d).
  904. SHRC347=Stored class %2$.*1$s in shared cache for class-loader id %3$d with URL %5$.*4$s (index %6$d).
  905. SHRC346=Failed to find class %1$s in shared cache for class-loader id %2$d with Token %4$.*3$s.
  906. SHRC345=Found class %1$s in shared cache for class-loader id %2$d with Token %4$.*3$s.
  907. SHRC344=Failed to find class %1$s in shared cache for class-loader id %2$d with URL %4$.*3$s.
  908. SHRC343=Found class %1$s in shared cache for class-loader id %2$d with URL %4$.*3$s.
  909. SHRC342=Failed to find class %1$s in shared cache for class-loader id %2$d.
  910. SHRC341=Found class %1$s in shared cache for class-loader id %2$d.
  911. SHRC340=Shared Cache CRC check failed. Stored CRC %1$x, calculated CRC %2$x
  912. SHRC339=Platform error message\: %1$s
  913. SHRC338=Port layer error code \= %1$d
  914. SHRC699=Failed to restore the non-persistent shared cache "%s" from the snapshot
  915. SHRC337=Platform error message\: %1$s
  916. SHRC698=Non-persistent shared cache "%s" has been restored successfully from the snapshot
  917. SHRC336=Port layer error code \= %1$d
  918. SHRC697=Failed to get a directory for the shared cache
  919. SHRC335=Error recovery failed\: Destroying shared semaphore has failed.
  920. SHRC696=Sub-options "%s" and "%s" are incompatible. Sub-option "%s" is ignored
  921. SHRC334=Error recovery failed\: Destroying shared memory has failed.
  922. J2SE000=-Djava.runtime.version=pwi3280sr4fp10-20170727_01 (SR4 FP10)
  923. SHRC695=Restore a new non-persistent shared cache from a snapshot
  924. SHRC333=Default memory page protection successfully enabled for cache
  925. SHRC694=Destroy all shared cache snapshots
  926. SHRC332=Data memory page protection successfully enabled for cache
  927. SHRC693=Destroy the snapshot of a shared cache (use name parm or default)
  928. SHRC331=Acquired a different semaphore than previously used with this cache
  929. SHRC692=Create a snapshot of an existing non-persistent shared cache
  930. SHRC330=SH_CompositeCacheImpl\:\:runExitCode failed to acquire the write area mutex (return code %d).
  931. SHRC691=Restrict Classpaths \= false
  932. SHRC690=Restrict Classpaths \= true
  933. JITM018=Large page size %1$zu%2$s %3$s is not a supported page size for the JIT codecache; using %4$zu%5$s %6$s instead
  934. JITM017=Large page size %1$zu%2$s %3$s is not a supported page size for the JIT codecache; using %4$zu%5$s instead
  935. JITM016=Large page size %1$zu%2$s is not a supported page size for the JIT codecache; using %3$zu%4$s %5$s instead
  936. JITM015=Large page size %1$zu%2$s is not a supported page size for the JIT codecache; using %3$zu%4$s instead
  937. JITM014=Extra comma characters are discovered in '-Xlp' option - ignored
  938. JITM013='%1$s' option is not complete, must specify '%2$s' parameter.
  939. JITM012=Value for '%s' is not correct
  940. JITM011=%s value specified is too large
  941. JITM010=%s must be followed by a number
  942. SHRC329=SH_CompositeCacheImpl\:\:enterReadWriteAreaMutex failed to acquire the string table mutex (return code %d).
  943. SHRC328=System V IPC reported the following error '%s'
  944. SHRC689=Allows a JVM to store classpaths in the cache created with "restrictClasspaths" option.
  945. SHRC327=SH_OSCachesysv\:\:acquireWriteLock() call to j9shsem_wait has failed with error %d.
  946. SHRC688=Classpaths can only be added by first JVM initializing the cache.
  947. SHRC326=Failed posting the shared classes cache user lock failed during initialization. Warning\: your cache may be corrupt. If you experience problems using the shared cache, you may need to destroy and re-create it.
  948. SHRC687=A new shared class cache cannot be created when running with -Xshareclasses\:readonly option
  949. SHRC325=Failed posting the shared classes cache header lock failed during initialization. Warning\: your cache may be corrupt. If you experience problems using the shared cache, you may need to destroy and re-create it.
  950. SHRC686=Failed to startup shared class cache. Continue without using it as -Xshareclasses\:nonfatal is specified
  951. SHRC324=ERROR\: Failure when exiting the mutex for the shared class cache header. Warning\: your cache may be corrupt. If you experience problems using the shared cache, you may need to destroy and re-create it.
  952. SHRC685=An error has occurred while opening shared memory. Control file could not be locked.
  953. SHRC323=ERROR\: Failure when entering the mutex for the shared class cache header. Warning\: your cache may be corrupt. If you experience problems using the shared cache, you may need to destroy and re-create it.
  954. SHRC684=An error has occurred while opening semaphore. Control file could not be locked.
  955. SHRC322=Failed initializing semaphores for shared class cache. Warning\: your cache may be corrupt. If you experience problems using the shared cache, you may need to destroy and re-create it.
  956. SHRC683=System limit on the total number of open files has been reached.
  957. SHRC321=Error recovery\: closing shared memory semaphores.
  958. SHRC682=System limit for maximum number of shared memory regions or system-wide limit on memory allocated to shared memory regions has been reached.
  959. SHRC320=Error recovery\: destroying shared memory semaphores.
  960. SHRC681=System limit for maximum number of semaphores or the system wide maximum number of semaphores has been reached.
  961. SHRC680=Error recovery failure\: Failed to remove the semaphore set control file %s associated with shared class cache.
  962. JITM009=System configuration does not support parameter '%.*s' in option '-Xlp'
  963. JITM008=JIT failed to allocate memory
  964. JITM007=AOT code in shared class cache cannot run with current JVMPI or JVMTI settings. Ignoring AOT code in shared class cache.
  965. JITM006=AOT code in shared class cache cannot run with current garbage collection policy. Ignoring AOT code in shared class cache.
  966. JITM005=AOT code in the shared class cache cannot run on current JVM release. Ignoring AOT code in shared class cache.
  967. JITM004=AOT code in shared class cache cannot execute on current processor. Ignoring AOT code in shared class cache.
  968. JITM003=Failure during AOT runtime initialization. Ignoring AOT code in shared class cache.
  969. JITM002=Failure storing AOT code in shared class cache. Shared class cache might be corrupted. Ignoring AOT code in shared class cache.
  970. JITM001=No more space for AOT code in shared class cache. New AOT code will not be generated.
  971. JITM000=Unsupported hardware [%d].
  972. SHRC319=Error recovery\: closing shared memory.
  973. SHRC318=Error recovery\: destroying shared memory.
  974. SHRC679=Error recovery failure\: Failed to remove the semaphore set control file %s associated with shared class cache.
  975. SHRC317=Print the name of the shared class cache file that will be used.
  976. SHRC678=Platform error message\: %1$s
  977. SHRC316=Cannot serialize cache because there is no current VM thread.
  978. SHRC677=Port layer error code \= %1$d
  979. SHRC315=Cannot initialize cachelet class memory segments
  980. SHRC676=Failed to destroy shared memory with shmid\=%d associated with shared class cache.
  981. SHRC314=Cannot allocate memory for hint lookup table in SH_Manager
  982. SHRC675=Failed to destroy shared memory associated with shared class cache.
  983. SHRC313=Failed to create jclCacheMutex in shrinit
  984. SHRC674=User is not allowed to destroy the shared memory with shmid\=%d. Only creator or owner or user with administrative privileges can destroy the shared memory.
  985. SHRC312=Error releasing shared class cache file header write lock
  986. SHRC673=Failed to destroy semaphore set with semid\=%d associated with shared class cache.
  987. SHRC311=Error releasing shared class cache file attach write lock
  988. SHRC672=Failed to destroy semaphore set associated with shared class cache.
  989. SHRC310=Persistent cache cannot be located on a networked file system. Select a different cacheDir.
  990. SHRC671=User is not allowed to destroy the semaphore set with semid\=%d. Only creator or owner or user with administrative privileges can destroy the semaphore set.
  991. SHRC670=Error recovery\: attempting to use shared cache in readonly mode if the shared memory region exists, in response to "-Xshareclasses\:nonfatal" option.
  992. SHRC309=The "grow" and "readonly" options may not be used together.
  993. SHRC308=Failed to serialize cache "%s". Failed updating ROM Class offsets in AOT methods.
  994. SHRC669=Error recovery failed\: Failed to destroy the shared memory with shmid\=%d associated with shared class cache.
  995. SHRC307=\tROMMETHOD\: %2$.*1$s Signature\: %4$.*3$s Address\: 0x%5$p
  996. SHRC668=Error recovery failed\: Failed to destroy the shared memory with shmid\=%d associated with shared class cache. Only creator or owner or user with administrative privileges can destroy the shared memory.
  997. SHRC306=\ Signature\: %2$.*1$s Address\: 0x%3$p
  998. SHRC667=Error recovery\: destroyed shared memory with id\=%d associated with shared class cache.
  999. SHRC305=Cannot allocate memory for hint lookup table in SH_ClasspathManagerImpl2
  1000. SHRC666=Error recovery\: destroyed shared memory associated with shared class cache.
  1001. SHRC304=Failed to replace cache "%s"
  1002. SHRC665=Error recovery failed\: Failed to destroy the semaphore set with semid\=%d associated with shared class cache.
  1003. SHRC303=Failed to create nested cache "%s"
  1004. SHRC664=Error recovery failed\: Failed to destroy the semaphore set with semid\=%d associated with shared class cache. Only creator or owner or user with administrative privileges can destroy the semaphore set.
  1005. SHRC302=Can not grow nested cache "%s", failed to allocate block for hints
  1006. SHRC663=Error recovery\: destroyed semaphore set with id\=%d associated with shared class cache.
  1007. SHRC301=Can not grow nested cache "%s", failed to allocate new supercache for hints
  1008. SHRC662=Error recovery\: destroyed semaphore set associated with shared class cache.
  1009. SHRC300=The shared class cache is in use by another vm, cannot grow the nested cache
  1010. SHRC661=The JVM failed to associate shared memory id\=%d with the shared class cache.
  1011. SHRC660=The JVM failed to associate semaphore set id\=%d with the shared class cache.
  1012. VMUT014=Receiver class %2$.*1$s must be the current class or a subtype of interface %4$.*3$s
  1013. SHRC659=An error has occurred while opening shared memory
  1014. VMUT013=Options file %s invalid
  1015. SHRC658=The JVM could not check the permissions of the shared cache file.
  1016. VMUT012=%2$.*1$s is not a direct superinterface of %4$.*3$s.
  1017. SHRC657=The JVM does not permit access to the shared cache file because the JVM process's user ID and group ID are different from the shared cache file owner's user ID and group ID, and the JVM process's user ID does not belong to the shared cache file owner's group.
  1018. VMUT011=Could not allocate memory for command line option array
  1019. SHRC656=The JVM is not configured to access shared cache file. To attach to the shared class cache, use 'groupAccess' sub-option.
  1020. VMUT010=Malformed option value, option "%1$s%3$.*2$s" contains trailing characters "%4$s" which have been ignored
  1021. SHRC655=Cache is accessible to current user \= %s
  1022. SHRC654=The JVM does not permit access to the shared cache's shared memory region created and owned by another user not in its group.
  1023. SHRC653=The JVM is not configured to access shared memory associated with existing non-persistent shared class cache. To attach to the non-persistent shared class cache, use 'groupAccess' and 'readonly' sub-option.
  1024. SHRC652=The JVM is not configured to access shared memory associated with existing non-persistent shared class cache. To attach to the non-persistent shared class cache, use 'groupAccess' sub-option.
  1025. SHRC651=The JVM detected effective user id of the process is the owner but not the creator of shared memory associated with the shared cache. JVM will not attach to the shared cache to prevent accessing unintended shared cache.
  1026. SHRC650=The JVM could not check the permissions of the shared memory associated with the shared cache.
  1027. VMUT009=Malformed value for -Xservice
  1028. VMUT008=Malformed value for IBM_JAVA_OPTIONS
  1029. VMUT007=Malformed value for JAVA_TOOL_OPTIONS
  1030. VMUT006=Malformed option %s found in -Xoptionsfile
  1031. VMUT005=Option too large\: '%s'
  1032. VMUT004=Malformed option\: '%s'
  1033. SHRC649=The JVM does not permit access to the shared cache's semaphore set created and owned by another user not in its group.
  1034. VMUT003=Options file not found
  1035. SHRC648=The JVM is not configured to access semaphore set associated with existing non-persistent shared class cache. To attach to the non-persistent shared class cache, use 'groupAccess' sub-option.
  1036. VMUT002=(access error)
  1037. SHRC647=The JVM detected effective user id of the process is the owner but not the creator of semaphore set associated with the shared cache. JVM will not attach to the shared cache to prevent accessing unintended shared cache.
  1038. VMUT001=(unnamed thread)
  1039. SHRC646=The JVM could not check the permissions of the semaphore set associated with the shared cache.
  1040. VMUT000=(out of memory)
  1041. SHRC645=Enable mprotect diagnostic mode
  1042. SHRC644=JVM has attached to the shared class cache created in mprotect diagnostic mode (using -Xshareclasses\:mprotect\=diagnostic option). -Xshareclasses\:mprotect\=none option will be ignored.
  1043. SHRC643=JVM has attached to the shared class cache created in mprotect diagnostic mode (using -Xshareclasses\:mprotect\=diagnostic option). Using the cache in this mode can affect performance.
  1044. SHRC642=JVM has created shared class cache in mprotect diagnostic mode (using -Xshareclasses\:mprotect\=diagnostic option). Using the cache in this mode can affect performance.
  1045. SHRC641=JVM is attempting to use the existing shared class cache in mprotect diagnostic mode (using -Xshareclasses\:mprotect\=diagnostic option), but the cache was not creating in this mode. In such case mprotect\=diagnostic option is ignored on z/OS.
  1046. SHRC640=JVM is using the existing shared class cache in mprotect diagnostic mode (using -Xshareclasses\:mprotect\=diagnostic option), but the cache was not creating in this mode. Using the cache in this mode can affect performance.
  1047. J9GC089=The -Xgc\:preferredHeapBase option is not supported on z/OS.
  1048. J9GC088=Requested objectheap page size %1$zu%2$s could not be satisfied; using %3$zu%4$s instead
  1049. J9GC087=Unable to satisfy heap size %1$zu%2$s with page size %3$zu%4$s. Heap size can be specified with -Xmx
  1050. J9GC086=Failed to instantiate compressed references metadata; %1$zu%2$s requested
  1051. SHRC639=Only shared cache utility options can be used in combination with -Xmt. Put other shared cache options in the javad.options file.
  1052. J9GC085=compressed references metadata initial size
  1053. SHRC638=Cache creation with the cacheRetransformed option forces disableBCI mode.
  1054. J9GC084=OS clock resolution claims to not support the requested target pause time. Overriding due to command line option -Xgc\:overrideHiresTimerCheck
  1055. SHRC637=The -Xshareclasses\:cacheRetransformed sub-option is incompatible with an existing BCI enabled shared cache.
  1056. J9GC083=Failed to initialize, multitenancy only supports -Xgcpolicy\:balanced
  1057. SHRC636=The "disableBCI" sub-option is incompatible with existing BCI enabled shared cache.
  1058. J9GC082=Requested for %1$s page size %2$zu%3$s%4$s is not a supported page size; using %5$zu%6$s%7$s instead
  1059. SHRC635=Store intermediate classfile \= true
  1060. J9GC081=Extra comma characters are discovered in '-Xlp' option - ignored
  1061. SHRC634=The "-XX\:-StoreIntermediateClassfile" option was specified but the existing cache was created with the "-XX\:+StoreIntermediateClassfile" option.
  1062. J9GC080=System configuration does not support parameter '%.*s' in option '-Xlp'
  1063. SHRC633=The "-XX\:+StoreIntermediateClassfile" option was specified but the existing cache was not created with the "-XX\:+StoreIntermediateClassfile" option.
  1064. SHRC632=Space reserved for JIT data in shared cache "%s" is full. Use -Xscminjitdata to increase space reserved for JIT data.
  1065. SHRC631=Space reserved for AOT data in shared cache "%s" is full. Use -Xscminaot to increase space reserved for AOT data.
  1066. SHRC630=Space is full for storing non-AOT/non-JIT data, such as classes, in shared cache "%s".
  1067. J9GC079='%1$s' option is not complete, must specify '%2$s' parameter.
  1068. J9GC078='%1$s' is not specified as the first parameter in '%2$s' option
  1069. J9GC077=System configuration does not support requested %1$zu%2$s %3$s large page size
  1070. J9GC076=System configuration does not support requested %1$zu%2$s large page size
  1071. SHRC629=Shared memory control file is read only.
  1072. J9GC075=An error occurred in parsing '-Xlp' option
  1073. SHRC628=Shared memory control file is not readable.
  1074. J9GC074=Large page size %1$zu%2$s %3$s is not a supported page size; using %4$zu%5$s %6$s instead
  1075. SHRC627=Recreation of shared memory control file is not allowed when running in read-only mode.
  1076. J9GC073=Large page size %1$zu%2$s %3$s is not a supported page size; using %4$zu%5$s instead
  1077. SHRC626=The stats of the shared cache cannot be obtained since a valid shared cache does not exist.
  1078. J9GC072=Large page size %1$zu%2$s is not a supported page size; using %3$zu%4$s %5$s instead
  1079. SHRC625=Error opening shared memory region. Check for shared memory size failed.
  1080. J9GC071=Value for '%s' is not correct
  1081. SHRC624=Error opening shared memory region. Check for user id failed.
  1082. J9GC070=Failed to startup the Garbage Collector
  1083. SHRC623=Error opening shared memory region. Check for group id failed.
  1084. SHRC622=Error opening shared memory region. Mismatch in shared memory key.
  1085. SHRC621=Error opening shared memory region. Mismatch in shared memory ID.
  1086. SHRC620=Error opening shared memory region. Control file is found to be corrupt.
  1087. J9GC069=Failed to initialize Finalize thread
  1088. J9GC068=ScopedMemory.join/joinAndEnter interrupted
  1089. J9GC067=Failed to instantiate split heap\: %1$s (new size %2$zu%3$s, old size %4$zu%5$s)
  1090. J9GC066=Required split heap memory geometry could not be allocated
  1091. SHRC619=Semaphore control file is read only.
  1092. J9GC065=Failed to allocate new space
  1093. SHRC618=Semaphore control file is not readable.
  1094. J9GC064=Failed to allocate old space
  1095. SHRC617=An error has occurred while opening semaphore. Semaphore marker not found in the semaphore set.
  1096. J9GC063=Unable to open file '%s' for writing
  1097. SHRC616=An error has occurred while opening semaphore. Mismatch in number of semaphores in the semaphore set.
  1098. J9GC062=%s value must be a power of two
  1099. SHRC615=An error has occurred while opening semaphore. Mismatch in semaphore key.
  1100. J9GC061=scoped memory space maximum size
  1101. SHRC614=An error has occurred while opening semaphore. Mismatch in semaphore ID.
  1102. J9GC060=immortal memory space size
  1103. SHRC613=An error has occurred while opening semaphore. Control file is found to be corrupt.
  1104. SHRC612=Artificially set the storage key (0-15) on z/OS for testing.
  1105. SHRC611=The "disableBCI" sub-option is specified but the existing cache was created with the "enableBCI" sub-option.
  1106. SHRC610=Disable support for byte-code instrumentation.
  1107. J9GC059=-Xgcpolicy\:metronome is not allowed without -Xrealtime
  1108. J9GC058=Failed to allocate immortal memory space
  1109. J9GC057=%1$s must be no greater than %2$s
  1110. J9GC056=available large page sizes\:
  1111. SHRC609=Updated %1$s attached data%2$s for %8$.*7$s.%4$.*3$s%6$.*5$s
  1112. J9GC055=large page size
  1113. SHRC608=Found %1$s attached data %2$sfor %8$.*7$s.%4$.*3$s%6$.*5$s
  1114. J9GC054=Large page size %1$zu%2$s is not a supported page size; using %3$zu%4$s instead
  1115. SHRC607=Stored %1$s attached data %2$sfor %8$.*7$s.%4$.*3$s%6$.*5$s
  1116. J9GC053=memory maximum
  1117. SHRC606=Add nonfunctional JIT hints to methods for testing; use with -Xint and a prepopulated cache.
  1118. J9GC052=ROM class segment increment
  1119. SHRC605=The memory size for "%s" is too large, or specifies units other than 'K','M', or 'G'.
  1120. J9GC051=RAM class segment increment
  1121. SHRC604=Reserve <size> bytes of cache space for raw class data
  1122. J9GC050=soft memory maximum
  1123. SHRC603=Raw class data used bytes %*c\= %lu
  1124. SHRC602=Raw class data area %% used %*c\= %lu%%
  1125. SHRC601=Raw class data area size %*c\= %lu
  1126. SHRC600=The raw class data area is corrupt because storing %u bytes will exceed the available area free space ('free space start'\=%p, 'free space end'\=%p).
  1127. J9GC049=remembered set size
  1128. J9GC048=old space increment
  1129. J9GC047=maximum old space size
  1130. J9GC046=initial old space size
  1131. J9GC045=initial memory size
  1132. J9GC044=maximum new space size
  1133. J9GC043=initial new space size
  1134. J9GC042=Sum of %1$s and %2$s too small for %3$s
  1135. J2JX099=Incomplete option(s) on command line. First was\: %s
  1136. J9GC041=Unknown fvtest type\: %s
  1137. J2JX098=Invalid argument [%1$s] for option\: %2$s
  1138. J9GC040=Unknown option\: %s
  1139. J2JX097=Unrecognized option(s) on command line. First was\: %s
  1140. J2JX096=Failed to find function j9bcv_verifyCreateStackAttributes
  1141. J2JX095=Failed to find function j9bcv_verifyClassStructure
  1142. J2JX094=Failed to open verifier DLL %1$s\: %2$s
  1143. J2JX093=No class files specified on the command line
  1144. J2JX092=Internal error with newly created VM
  1145. J2JX091=Successfully created the Java VM
  1146. J2JX090=Attempting to create a Java VM for use with AOT
  1147. J9GC039=%1$s is deprecated; use %2$s instead
  1148. J9GC038=%s value specified is too large
  1149. J9GC037=%1$s not supported with values other than %2$zu
  1150. J9GC036=%1$s value must be above %2$zu
  1151. J9GC035=%s must be followed by a number
  1152. J9GC034=%1$s value must be between %2$zu and %3$zu (inclusive)
  1153. J9GC033=%1$s value must be between %2$.2f and %3$.2f (inclusive)
  1154. J9GC032=System configuration does not support option '%s'
  1155. J2JX089=Internal Error\: could not find %1$s in %2$s
  1156. J9GC031=%1$s and %2$s cannot both be specified
  1157. J2JX088=Internal Error\: failed to open %1$s\: %2$s
  1158. J9GC030=%1$s value of %2$.2f must be at least %3$s less than %4$s value of %5$.2f
  1159. J2JX087=Internal Error\: could not determine executable name
  1160. J2JX086=Wrote %1$i bytes to symbol file %2$s
  1161. J2JX085=Internal Error\: unsupported error code from create rom class %d
  1162. J2JX084=Closing segment %d and starting a new segment
  1163. J2JX083=Including %s in AOT
  1164. J2JX082=Excluding %s from AOT
  1165. J2JX081=Error\: %s
  1166. J2JX080=Verification error in method %1$i (%3$.*2$s%5$.*4$s) at PC %6$i
  1167. J9GC029=Option error\: '%s'
  1168. J9GC028=Option too large\: '%s'
  1169. J9GC027=Malformed option\: '%s'
  1170. J9GC026=-Xverbosegclog failed to allocate internal structures
  1171. J9GC025=Sum of %1$s and %2$s
  1172. J9GC024=Sum of %1$s and %2$s too large for heap
  1173. J9GC023=Sum of %1$s and %2$s must equal %3$s
  1174. J9GC022=Sum of %1$s and %2$s too large for %3$s
  1175. J2JX079=Error\: %1$s at %2$i
  1176. J9GC021=%1$s must equal %2$s
  1177. J2JX078=Recommended action\:
  1178. J9GC020=%s too large for heap
  1179. J2JX077=Invalid class file
  1180. J2JX076=Invalid class file\: %s
  1181. J2JX075=Entry name too long\: %s
  1182. J2JX074=Attempted to add duplicate entry to JXE\: %s
  1183. J2JX073=dir processing file\: %s
  1184. J2JX072=Could not open directory %s
  1185. J2JX071=Processing directory\: %s
  1186. J2JX070=increasing space to\: %i bytes
  1187. J9GC019=%1$s too large for %2$s
  1188. J9GC018=%1$s too small for %2$s
  1189. J9GC017=%1$s too small, must be at least %2$zu %3$sbytes
  1190. J9GC016=Failed to allocate survivor segment in default memory space
  1191. J9GC015=Failed to allocate default memory space
  1192. J9GC014=Failed to allocate VM class memory segments
  1193. J9GC013=Failed to allocate VM object memory segments
  1194. J9GC012=Failed to allocate VM memory segments
  1195. J2JX069=estimated memory size\: %i bytes
  1196. J9GC011=Failed to initialize pool of memory spaces
  1197. J2JX068=file size\: %i bytes
  1198. J9GC010=Failed to initialize finalization management
  1199. J2JX067=No valid class found in %s
  1200. J2JX066=Could not open file\: %s
  1201. J2JX065=Error closing zip file\: %s
  1202. J2JX064=The valid values for the -precompileTarget option are\:
  1203. J2JX063=Defaults are\:
  1204. J2JX062=classfile(s) any number of files ending with .class, .jar, or .zip will\n be examined and added to the jxe\n
  1205. J2JX061=Ahead-of-time compilation options\:\n -[no]precompile [do not] mark all methods for precompilation\n -[no]precompileMethod xxx [do not] mark named methods for precompilation\n -[no]compileAheadOfTime compile marked method ahead of time\n -precompileTarget xxx generate jxe for target architecture and OS xxx\n -precompileOptions xxx pass xxx to the precompilation engine\n -[no]precompileResolve [do not] attempt to resolve external references during precompilation\n -[no]stripBytecode [do not] strip bytecode for aot compiled methods\n
  1206. J2JX060=\ -j2se use this option when using jar2jxe in a Java SE environment\n
  1207. J9GC009=Failed to initialize mutex for GC statistics
  1208. J9GC008=Failed to initialize module extensions
  1209. J9GC007=Failed to initialize; unable to parse command line
  1210. J9GC006=Failed to initialize; out of memory
  1211. J9GC005=Failed to initialize
  1212. J9GC004=Failed to instantiate global garbage collector
  1213. J9GC003=Failed to instantiate task dispatcher
  1214. J9GC002=Failed to instantiate heap; %1$zu%2$s requested
  1215. J2JX059=\ -[no]tools the tools directory is [not] added to the list of extension directories
  1216. J9GC001=Failed to instantiate heap
  1217. J2JX058=\ -padJxe pad the jxe at end with xxx extra bytes
  1218. J9GC000=Internal error; out of memory
  1219. J2JX057=\ -[no]segmented [do not] generate multiple segmented jxes\n -maxSegmentSize xxx max size for any segmented jxe (hex number)\n -maxSegmentSize seg\=xxx max size for specific segmented jxe (hex number)\n -locate xxx locate the image to address xxx (hex number)\n -locate seg\=xxx locate the image of a segment to hex address xxx
  1220. J2JX056=\ -fileExtension xxx treat files ending with .xxx as .jar files
  1221. J2JX055=\ -vmOption xxx use a vmOption xxx when running jxe
  1222. J2JX054=\ -versionName xxx set version name of jxe to xxx
  1223. J2JX053=\ -description xxx set description of jxe to xxx
  1224. J2JX052=\ -uuid xxx set the UUID of the jxe to xxx
  1225. J2JX051=\ -D xxx\=yyy set system property xxx to yyy
  1226. J2JX050=\ -startupClass xxx set startup class to xxx\n -noStartupClass indicate the jxe doesn't have a startup class
  1227. J2JX049=\ -srcDir xxx include all files in directory tree xxx
  1228. J2JX048=\ -outputFormat xxx set the output format to xxx (c, bin, or jar)
  1229. J2JX047=\ -o xxx set base output filename to xxx
  1230. J2JX046=\ -be generate big endian output\n -le generate little endian output
  1231. J2JX045=\ -version print out the version of this program
  1232. J2JX044=\ -[no]profile [do not] generate a .prf file for profiling
  1233. J2JX042=\ -[no]verify [do not] verify the class file format
  1234. J2JX041=\ -q quiet mode\n -[no]logo [do not] print copyright message\n -verbose verbose mode
  1235. J2JX040=Usage\:\t%s [options] classfile(s)\n\n[options]\n -help, -? print usage
  1236. VERB038=shared class cache soft max size
  1237. VERB037=shared class cache size
  1238. VERB036=compressed references metadata initial size
  1239. VERB035=available large page sizes for JIT code cache\:
  1240. VERB034=large page size for JIT code cache
  1241. VERB033=max allowed shared class cache space for JIT data
  1242. VERB032=min reserved shared class cache space for JIT data
  1243. VERB031=reserved shared class cache space for class debug attributes
  1244. VERB030=max allowed shared class cache space for JIT
  1245. J2JX039=IBM is a registered trademark of IBM Corp.\nJava and all Java-based marks and logos are trademarks or registered\ntrademarks of Sun Microsystems, Inc.
  1246. J2JX038=Licensed Materials - Property of IBM
  1247. J2JX036=Target\: %s\n
  1248. J2JX035=(c) Copyright IBM Corp. 1991, 2005 All Rights Reserved
  1249. J2JX034=J9 Java(TM) JAR to JXE, Version %s
  1250. J2JX033=Internal Error\: failed the properly build the Error'd rom class
  1251. J2JX032=Unbalanced quotes in parameter list
  1252. J2JX031=finished reading JAR file\: %s
  1253. J2JX030=Error reading %1$s from %2$s
  1254. CFRE142=Class has more than one RuntimeInvisibleAnnotations or RuntimeVisibleAnnotations attribute
  1255. CFRE141=method_info has more than one RuntimeInvisibleParameterAnnotations or RuntimeVisibleParameterAnnotations attribute
  1256. VERB029=min reserved shared class cache space for JIT
  1257. CFRE140=method_info has more than one AnnotationDefault attribute
  1258. VERB028=Verbose stack\: Unable to print the stack info for currently running threads
  1259. VERB027=Verbose stack\: Running thread "%2$.*1$s" is using %3$zd/%4$zd bytes on Java/C stacks
  1260. VERB026=Invalid classpath entry\: %s (opposite endian jxe not supported)
  1261. VERB025=Invalid classpath entry\: %s (jxe corrupt image header)
  1262. VERB024=Invalid classpath entry\: %s (jxe missing rom.classes)
  1263. VERB023=Invalid classpath entry\: %s (unknown error)
  1264. VERB022=Invalid classpath entry\: %s (unknown file type)
  1265. VERB021=Invalid classpath entry\: %s (unsupported file type)
  1266. VERB020=Invalid classpath entry\: %s (file corrupt)
  1267. J2JX029=processing\: %s
  1268. J2JX028=Error reading entry from %s
  1269. J2JX027=Could not open or read %s
  1270. J2JX026=segment %d could not fit within the required maximum segment size
  1271. J2JX025=Attempted to add duplicate class to JXE %s
  1272. J2JX024=added class file\: %s
  1273. J2JX023=attempting to add class file\: %s
  1274. J2JX022=%s is invalid
  1275. J2JX021=Could not load %1$s\: %2$s
  1276. J2JX020=growing ncpRef [%1$x] from %2$u entries to %3$u entries
  1277. CFRE139=Class has more than one SourceDebugExtension attribute
  1278. CFRE138=Classfile attribute refers to a non-existent constant pool entry
  1279. CFRE137=Class has more than one RuntimeVisibleTypeAnnotations or RuntimeInvisibleTypeAnnotations attribute
  1280. CFRE136=illegal modifiers for interface method
  1281. CFRE135=Method parameter name is not UTF8
  1282. CFRE134=Method parameter has an invalid flag.
  1283. CFRE133=Method has two MethodParameters attributes
  1284. CFRE132=type_annotation target_type not recognized
  1285. CFRE131=BootstrapMethods attribute required by invokedynamic is absent or too small
  1286. VERB019=Invalid classpath entry\: %s (file read failed)
  1287. CFRE130=multiple BootstrapMethods attributes
  1288. VERB018=Invalid classpath entry\: %s (file I/O failed)
  1289. VERB017=max allowed shared class cache space for AOT
  1290. VERB016=min reserved shared class cache space for AOT
  1291. VERB015=shared class cache size
  1292. VERB014=memory maximum
  1293. VERB013=ROM class segment increment
  1294. VERB012=RAM class segment increment
  1295. VERB011=java thread stack size
  1296. VERB010=java thread stack maximum size
  1297. J2JX019=growing buffer [%1$x] from %2$u to %3$u
  1298. J2JX018=Successfully created %s
  1299. J2JX017=Failed to write data to file\: %s
  1300. J2JX016=Failed to create/clear file\: %s
  1301. J2JX015=Unknown error code\: %d
  1302. J2JX014=AOT initialization failed
  1303. J2JX013=Internal Error\: Endian flip failed
  1304. J2JX012=Supplied UUID is invalid
  1305. J2JX011=Internal Error\: ZIP Entry not closed
  1306. J2JX010=Internal Error\: read failed
  1307. CFRE129=constant pool entry not valid in class files with versions < 51.0
  1308. CFRE128=methodtype signature invalid
  1309. CFRE127=bootstrap method index must refer to a MethodHandle constant pool entry
  1310. CFRE126=invokedynamic bytecode reserved slots not zero
  1311. CFRE125=invokedynamic bytecode must reference an InvokeDynamic constant pool entry
  1312. CFRE124=annotation element value tag is invalid
  1313. CFRE123=MethodHandle constants must refer to either a field or method reference
  1314. TRCE020=Timeout occurred during trace engine termination
  1315. CFRE122=class can be at most one of public or module
  1316. CFRE121=illegal field name
  1317. VERB009=java thread stack increment
  1318. CFRE120=jsr and jsr_w opcodes are not valid in class files with versions >\= 51.0
  1319. VERB008=java thread stack initial size
  1320. VERB007=operating system thread stack size
  1321. VERB006=Failed to initialize
  1322. VERB005=Error\: -Xverbosegclog missing filename
  1323. VERB004=Error\: -Xverbosegclog number of cycles must be greater than 0
  1324. VERB003=Error\: -Xverbosegclog number of files must be greater than 0
  1325. VERB002=Verbose stack\: maximum stack use was %1$zd/%2$zd bytes on Java/C stacks
  1326. VERB000=Verbose stack\: "%2$.*1$s" used %3$zd/%4$zd bytes on Java/C stacks
  1327. J2JX009=Internal Error\: seek failed
  1328. J2JX008=Internal Error\: no entries
  1329. J9VM099=-Xlog\:none Disable JVM log options previously specified, including defaults.
  1330. J2JX007=Internal Error\: Duplicate entry
  1331. J9VM098=-Xlog\:help Print JVM -Xlog help.
  1332. J2JX006=Out of memory
  1333. J9VM097=\nUsage\:\n
  1334. J2JX005=Internal Error\: size mismatch
  1335. J9VM096=-Xscdmx is ignored if -Xshareclasses is not specified
  1336. J2JX004=Internal Error\: CRC MISMATCH
  1337. J9VM095=loading constraint violation when resolving method "%2$.*1$s.%4$.*3$s%6$.*5$s" \: loader "%8$.*7$s@%9$x" of class "%11$.*10$s" and loader "%13$.*12$s@%14$x" of class "%16$.*15$s" have different types for the method signature
  1338. J2JX003=Internal Error\: bad function argument
  1339. J9VM094=Thread "%s" is still alive after running the shutdown hooks.
  1340. J2JX002=Precompiled %1$d of %2$d method(s) for target %3$s.
  1341. J9VM093=This version of Java requires a CPU that supports SSE2 or later extensions. See the 'Supported Environments' information in the IBM Java User Guide for more details.
  1342. J2JX001=Stored resource\: %s
  1343. J9VM092=Adaptive spinning not supported
  1344. J2JX000=Attempted to add duplicate resource file [%s], file ignored.
  1345. J9VM091=Adaptive spinning supported
  1346. TRCE019=Trace engine failed to initialize properly, RC \= %d
  1347. J9VM090=Slow response to network query (%d secs), check your IP DNS configuration
  1348. TRCE018=Unable to allocate UTE thread local storage key
  1349. TRCE017=Unable to allocate RAS thread local storage key
  1350. CFRE119=multiple SourceFile attributes
  1351. TRCE016=Storage for RasGlobalStorage not available, trace not enabled
  1352. CFRE118=extra bytes after EOF
  1353. TRCE015=Error registering trace write subscriber
  1354. CFRE117=field cannot be both final and volatile
  1355. TRCE014=Trace engine initialization failed, trace not enabled
  1356. CFRE116=invoke bytecode must reference a Methodref
  1357. TRCE013=Writing trace count info to %s
  1358. CFRE115=array dimensions > 255
  1359. TRCE012=Unable to open trace point counter file %s, counters redirected to stderr.
  1360. CFRE114=field name is invalid
  1361. TRCE011=Module not configured for trace\: %s
  1362. CFRE113=unexpected EOF
  1363. TRCE010=Native memory allocation failure, falling back to nodynamic trace settings.
  1364. CFRE112=VM does not support dynamic verification
  1365. CFRE111=malformed UTF8
  1366. CFRE110=incompatible constant for field
  1367. J9VM089=Warning\: unable to verify syscorepath settings using sysconfig\: %s.
  1368. J9VM088=Warning\: syscorepath has not been configured which may prevent system core file generation (if one is needed).\n\t\tPlease consult the WebSphere Real Time installation instructions for proper syscorepath configuration settings.\n\t\tNOTE\: syscorepath must be configured each time the machine is restarted.
  1369. J9VM087=resetDumpOption requires %s
  1370. J9VM086=Option too large\: '%s'
  1371. J9VM085=Malformed option\: '%s'
  1372. J9VM084=IFA Error\: unexpected return code %08x from IFA switch service
  1373. J9VM083=Error switching to IFA processor rc\: %08x
  1374. J9VM082=Unable to switch to IFA processor - issue "extattr +a lib%s.so"
  1375. J9VM081=Malformed option value, option "%1$s%3$.*2$s" contains trailing characters "%4$s" which have been ignored
  1376. TRCE009=Error writing to snap file
  1377. J9VM080=queryVmDump requires %s
  1378. TRCE008=Error performing seek in tracefile\: %s
  1379. TRCE007=Error opening next trace file generation\: %s
  1380. CFRE109=method signature invalid
  1381. TRCE006=Error writing %d bytes to trace file\: %s rc\: %d
  1382. CFRE108=enclosing method method index must reference a name and type
  1383. TRCE005=Error writing header to trace file\: %s
  1384. CFRE107=offset out of range in jump bytecode
  1385. TRCE004=Error opening trace file\: %s
  1386. CFRE106=duplicate method
  1387. TRCE003=Error processing trace option, detail\: %s
  1388. CFRE105=superClass must be a class
  1389. TRCE002=Error processing trace option\: -Xtrace\:%s\=%s
  1390. CFRE104=field can be at most one of public private or protected
  1391. TRCE001=Error processing trace option\: -Xtrace\:%s
  1392. CFRE103=abstract method may not be private, static, final, native, synchronized or strict
  1393. TRCE000=Trace option unrecognized\: -Xtrace\:%s
  1394. CFRE102=field signature invalid
  1395. CFRE101=offset out of range in switch bytecode
  1396. CFRE100=too many dimensions requested in multianewarray bytecode
  1397. J9VM079=triggerOneOffDump(%1$s) requires %2$s
  1398. J9VM078=Malformed value for JAVA_TOOL_OPTIONS
  1399. J9VM077=Note\: -Xdfpbd has no effect in this release of Java
  1400. J9VM076=native memory exhausted allocating list entry for finalizable or reference object
  1401. J9VM075=illegal operation on eventron thread
  1402. J9VM074=Class %2$.*1$s illegally accessing %3$s class %5$.*4$s
  1403. J9VM073=Class %2$.*1$s illegally accessing %3$s member of class %5$.*4$s
  1404. J9VM072=native memory exhausted
  1405. J9VM071=attempt to recursively bind native method %2$.*1$s.%4$.*3$s%6$.*5$s
  1406. J9VM070=native memory exhausted during bind of native method %2$.*1$s.%4$.*3$s%6$.*5$s
  1407. J9VM069=loading constraint violation\: loader "%2$.*1$s@%3$x" previously initiated loading for a different type with name "%5$.*4$s" defined by loader "%7$.*6$s@%8$x"
  1408. J9VM068=-Xshareclasses not enabled, -Xzero\:sharestring option ignored
  1409. J9VM067=-Xshareclasses not enabled, -Xzero\:sharezip option ignored
  1410. J9VM066=argument type mismatch
  1411. J9VM065=object is not an instance of declaring class
  1412. J9VM064=setDumpOption requires %s
  1413. J9VM063=seekDumpAgent requires %s
  1414. J9VM062=removeDumpAgent requires %s
  1415. J9VM061=insertDumpAgent requires %s
  1416. J9VM060=runNamedDump(%1$s) requires %2$s
  1417. J9VM059=-Xscmaxaot is ignored if -Xshareclasses is not specified
  1418. J9VM058=-Xscminaot is ignored if -Xshareclasses is not specified
  1419. J9VM057=Monitor cache limit exceeded
  1420. J9VM056=Major version
  1421. J9VM055=Unrecoverable error\: JXE Major version different than %d
  1422. J9VM054=Failed to create a thread\: retVal %1$zd, errno %2$zd
  1423. J9VM053=Malformed option %s found in -Xoptionsfile
  1424. J9VM052=\ -Xjni\:arrayCacheMax\=[<x>|unlimited] set maximum size of JNI cached array\n
  1425. J9VM051=Usage\:\n
  1426. J9VM050=-Xjni\: unrecognized option --> '%s'
  1427. J9VM049=JLM hold times not supported
  1428. J9VM048=JLM hold times supported
  1429. J9VM047=JLM not supported
  1430. J9VM046=JLM supported
  1431. J9VM045=Three-tier system monitors not supported
  1432. J9VM044=Three-tier system monitors supported
  1433. J9VM043=-----------------------
  1434. J9VM042=Threading Configuration
  1435. J9VM041=wrong number of arguments
  1436. J9VM040=operating system stack overflow
  1437. SHRC299=The shared class cache "%s" was not created with the nested option, cannot grow the cache
  1438. SHRC298=To run "%s" utility on persistent class cache "%s", use the "persistent" suboption
  1439. SHRC297=To use persistent shared class caches on AIX, environment variable CORE_MMAP must be set to "yes"
  1440. SHRC296=Running with option "noCoreMmap" will mean that IBM will be unlikely to assist with any crashes as class data will be missing from system dumps
  1441. SHRC295=Switch off dependency on having CORE_MMAP on AIX
  1442. SHRC294=%1$d\: 0x%2$p CHARARRAY\: at 0x%3$p.
  1443. SHRC293=Cannot allocate memory for hastable item pool in ROMClassResourceManager
  1444. SHRC292=Cannot enter ROMClassResourceManager hashtable mutex
  1445. J9VM039=-Xscmx is ignored if -Xshareclasses is not specified
  1446. SHRC291=Cannot allocate memory for hashtable entry in ROMClassResourceManager
  1447. J9VM038=-Xthr\: unrecognized option --> '%s'
  1448. SHRC290=Failed to create new hash table item in ROMClassResourceManager
  1449. J9VM037=Failed to allocate monitor
  1450. J9VM036=divide by zero
  1451. J9VM035=Unable to allocate OutOfMemoryError
  1452. J9VM034=JVMRI requires trace engine\: run with -Xtrace flag
  1453. J9VM033=Unrecoverable error\: failed to initialize %s
  1454. VRFY042=%1$s; class\=%3$.*2$s, method\=%5$.*4$s%7$.*6$s, pc\=%8$u; Type Mismatch, argument %9$d in signature %11$.*10$s.%13$.*12$s\:%15$.*14$s does not match
  1455. J9VM032=Unrecoverable error\: unable to load %1$s\: %2$s
  1456. VRFY041=invokespecial of wrong initializer
  1457. J9VM031=Required class %2$.*1$s must be in the boot classpath, but was found in the application class path in %4$.*3$s
  1458. VRFY040=verifier unable to allocate native memory
  1459. J9VM030=Invalid UTF8 used in JNI function
  1460. SHRC289=Do not detect when a cache is located on a remote networked filesystem
  1461. SHRC288=shared memory ID \= %d
  1462. SHRC287=Persistent cache cannot be located on a networked file system. Either select "nonpersistent" or a different cacheDir.
  1463. SHRC286=Opened shared class cache %1$s read-only
  1464. SHRC285=Opened shared class persistent cache %1$s read-only
  1465. SHRC284=Cannot create a cache in readonly mode
  1466. SHRC283=Open the cache with read-only permissions
  1467. SHRC282=The page size of the operating system is incompatible with this cache. Attempting to re-create the cache.
  1468. VRFY039=unknown bytecode
  1469. J9VM029=\tat (Unknown Method)
  1470. SHRC281=Attempting to destroy all caches in cacheDir %s
  1471. VRFY038=invokespecial on invalid target
  1472. J9VM028=\tat %2$.*1$s.%4$.*3$s (%6$.*5$s\:%7$u)
  1473. SHRC280=Listing all caches in cacheDir %s
  1474. VRFY037=uninitialized object during backwards branch
  1475. J9VM027=\tat %2$.*1$s.%4$.*3$s (%6$.*5$s)
  1476. VRFY036=stack underflow
  1477. J9VM026=\tat %2$.*1$s.%4$.*3$s (Unknown Source)
  1478. VRFY035=no error
  1479. J9VM025=\tat %2$.*1$s.%4$.*3$s (Native Method)
  1480. VRFY034=target PC invalid
  1481. J9VM024=Exception in thread "%.*s"
  1482. VRFY033=field not type compatible
  1483. J9VM023=This may indicate that JAVA_HOME is incorrect, or that class libraries are not installed
  1484. VRFY032=bad receiver for <init>
  1485. J9VM022=Stack map failed, result \= %p - aborting VM
  1486. VRFY031=attempt to iinc non integer
  1487. J9VM021=Out of memory for interpreter stack map - aborting VM
  1488. VRFY030=bad type on stack
  1489. J9VM020=Searched in %.*s
  1490. SHRC279=Re-create shared cache on startup
  1491. SHRC278=Note that utility "%s" cannot operate on incompatible class cache "%s". Please use a JVM of the correct level.
  1492. SHRC277=To run the "%s" utility on a nonpersistent shared cache "%s", you must also use the "nonpersistent" suboption
  1493. SHRC276=To run "%s" utility on persistent class cache "%s", do not use "nonpersistent" suboption
  1494. SHRC275=Set the location of the JVM cache files
  1495. SHRC274=Memory page protection disabled for cache
  1496. SHRC273=Default memory page protection successfully enabled for cache
  1497. SHRC272=Full memory page protection successfully enabled for cache
  1498. VRFY029=invalid returnAddress for ret instruction
  1499. J9VM019=Unrecoverable error\: Unable to find and initialize required class %.*s
  1500. SHRC271=Unrecognised sub-option for option mprotect\=
  1501. VRFY028=bad dimension
  1502. J9VM018=Could not allocate memory for shared library load table pool
  1503. SHRC270=Configure cache memory page protection
  1504. VRFY027=receiver is incompatible with declaring class
  1505. J9VM017=Could not allocate memory for command line option array
  1506. VRFY026=unexpected EOF
  1507. J9VM016=Shutdown error for library %1$s(%2$d)\: %3$s
  1508. VRFY025=bad access to protected data
  1509. J9VM015=Initialization error for library %1$s(%2$d)\: %3$s
  1510. VRFY024=arguments are not type compatible
  1511. J9VM014=Shutdown error in function %1$s(%2$d)\: %3$s
  1512. VRFY023=tableswitch parameter not integer
  1513. J9VM013=Initialization error in function %1$s(%2$d)\: %3$s
  1514. VRFY022=subroutines must be re-walked for each jsr
  1515. J9VM012=Unable to unload %1$s\: %2$s
  1516. VRFY021=thrown object not throwable
  1517. J9VM011=Unable to load %1$s\: %2$s
  1518. VRFY020=invoke arguments not type compatible
  1519. J9VM010=Failed to initialize %s
  1520. SHRC269=The system does not support memory page protection
  1521. SHRC268=[-Xshareclasses caching of bootclasspath entries disabled]
  1522. SHRC267=Disable caching of classes from the bootclasspath
  1523. SHRC266=[-Xshareclasses caching of retransformed classes enabled]
  1524. SHRC265=Cache classes that are retransformed via JVMTI
  1525. SHRC264=Don't round cache areas to page boundaries
  1526. SHRC263=Enable CompositeCache verbose pages
  1527. SHRC262=Data bytes \= %d
  1528. VRFY019=class load failed
  1529. J9VM009=J9VMDllMain failed
  1530. SHRC261=Enable string intern verbose output
  1531. VRFY018=max stack exceeded
  1532. J9VM008=J9VMDllMain not found
  1533. SHRC260=Failed to create pool in ByteDataManager
  1534. VRFY017=<init> does not call this <init> or super <init>
  1535. J9VM007=Command-line option unrecognised\: %s
  1536. VRFY016=shift bytecode parameter not integer
  1537. J9VM006=Invalid command-line option\: %s
  1538. VRFY015=multiple returns to single jsr
  1539. J9VM005=Invalid value for environment variable\: %s
  1540. VRFY014=return bytecode incompatible with return type
  1541. J9VM004=Cannot load library required by\: %s
  1542. VRFY013=class loading constraint violated
  1543. J9VM003=JIT compiler "%s" not found. Will use interpreter.
  1544. VRFY012=stack shape inconsistent
  1545. J9VM002=Options file not found
  1546. VRFY011=lookupswitch parameter not integer
  1547. J9VM001=Malformed value for -Xservice
  1548. VRFY010=multiple jsrs use single return
  1549. J9VM000=Malformed value for IBM_JAVA_OPTIONS
  1550. SHRC259=Cannot enter Manager hashtable mutex
  1551. SHRC258=Cannot allocate memory for hashtable entry in Manager
  1552. SHRC257=Cannot allocate memory for linked list item in Manager
  1553. SHRC256=Persistent shared cache "%1$s" has been destroyed
  1554. SHRC255=Error updating shared class cache file last detached time on JVM exit
  1555. SHRC254=Error setting length of shared class cache file
  1556. SHRC253=Error writing header to shared class cache file
  1557. SHRC252=Error seeking on shared class cache file
  1558. VRFY009=array not type compatible
  1559. SHRC251=Don't auto-delete caches from different buildIDs
  1560. VRFY008=array index not integer
  1561. SHRC250=Cache cannot be opened read-only as it has not yet initialized
  1562. VRFY007=final method overridden
  1563. VRFY006=new array size not integer
  1564. VRFY005=local not type compatible
  1565. VRFY004=jsr inlining encountered too many jsrs
  1566. VRFY003=class does not contain pre-verify data
  1567. VRFY002=bytecode sequence invalid
  1568. VRFY001=%1$s; class\=%3$.*2$s, method\=%5$.*4$s%7$.*6$s
  1569. VRFY000=%1$s; class\=%3$.*2$s, method\=%5$.*4$s%7$.*6$s, pc\=%8$u
  1570. SHRC249=Error shared class cache file header modlevel is invalid
  1571. SHRC248=Error shared class cache file header version is invalid
  1572. JNCK100=JNI advice in %1$s\: This function cannot be used with packed objects. Please use %2$s instead
  1573. SHRC247=Error shared class cache file header eyecatcher is invalid
  1574. SHRC246=Attached shared classes persistent cache %1$s
  1575. SHRC245=Error mapping shared class cache file
  1576. SHRC244=Error obtaining shared class cache file length
  1577. SHRC243=Error releasing shared class cache file attach read lock
  1578. SHRC242=Error updating shared class cache file last detached time
  1579. SHRC241=Error\: unable to delete shared class cache file
  1580. SHRC240=Error\: unable to acquire shared class cache file attach write lock
  1581. EXEX026=\ -jxe <jxeFile> places jxeFile on the classpath and executes the startup\n class found in jxeFile.
  1582. EXEX025=Usage\:\t%s [-jxe] [options] <jxeFile> [args...]
  1583. EXEX024=JXE %s did not contain a startup class.
  1584. EXEX023=Could not initialize JXE utilities.
  1585. SHRC239=Error\: unable to acquire shared class cache file header write lock
  1586. SHRC238=Error\: the shared class cache is not attached
  1587. SHRC599=The raw class data area free space is corrupt ('free space start'\=%p, 'free space end'\=%p, 'free size'\=%lu bytes)
  1588. SHRC237=Opened shared classes persistent cache %1$s
  1589. SHRC598=The raw class data area is corrupt because its size of %lu is larger than the total cache size of %lu.
  1590. SHRC236=Created shared classes persistent cache %1$s
  1591. SHRC597=-Xshareclasses\:rcdSize\=%u bytes is greater than %u bytes of available free space, -Xshareclasses\:rcdSize\=%u will be used instead.
  1592. SHRC235=Error releasing shared class cache file attach read lock
  1593. SHRC596=Do extra checks when storing and allocating out-of-line class data.
  1594. SHRC234=Error acquiring shared class cache file attach read lock
  1595. SHRC595=Command-line options "%s" and "%s" are incompatible
  1596. SHRC233=Error creating shared class cache file header
  1597. SHRC594=The -Xshareclasses\:cacheRetransformed sub-option is incompatible with a shared cache created with the enableBCI sub-option
  1598. SHRC232=Cannot create a cache in readonly mode
  1599. SHRC593=BCI Enabled \= false
  1600. SHRC231=Error setting shared class cache file length
  1601. SHRC592=BCI Enabled \= true
  1602. SHRC230=Error initialising shared cache data header
  1603. SHRC591=%1$d\: 0x%2$p JITHINT\: %4$.*3$s
  1604. EXEX017=Error mapping jxe in flash
  1605. SHRC590=The "enableBCI" sub-option was specified but the existing cache was not created with the "enableBCI" sub-option.
  1606. EXEX016=Invalid jxespace parameters.
  1607. EXEX015=VM startup error\: Out of memory
  1608. EXEX014=Run %s -help for usage
  1609. EXEX013=Internal VM error\: Failed to create Java VM
  1610. EXEX012=-jar option is not available for this class library
  1611. EXEX010=%s requires a parameter
  1612. JDBG021=unrecognized debug option
  1613. JDBG020=unrecognized debug option\: '%s'
  1614. SHRC229=Error\: shared class cache file has an invalid header
  1615. SHRC228=Error updating shared class cache last attached time
  1616. SHRC589=Create the cache with support for byte-code instrumentation.
  1617. SHRC227=Error acquiring shared class cache file header write lock
  1618. SHRC588=Error releasing cross-guest shared class cache header read lock
  1619. SHRC226=Error opening shared class cache file
  1620. SHRC587=Error updating cross-guest shared class cache last attached time
  1621. SHRC225=Error obtaining cache file path
  1622. SHRC586=Error\: cross-guest shared class cache has an invalid header
  1623. SHRC224=Out of memory for local copy of cache name
  1624. SHRC585=Error acquiring cross-guest shared class cache header write lock
  1625. SHRC223=Persistent shared class caches cannot be created/used as file locking is not supported
  1626. SHRC584=Error acquiring cross-guest shared class cache attach read lock
  1627. SHRC222=Persistent shared class caches cannot be created/used as memory mapping does not support the required capabilities
  1628. SHRC583=Error updating "last detached" time for cross-guest shared class cache
  1629. SHRC221=Platform error message\: %1$s
  1630. EXEX009=\ -verify enable class file verification.\n -X print help on non-standard options.
  1631. SHRC582=Error\: unable to delete cross-guest shared class cache
  1632. SHRC220=Port layer error code \= %1$d
  1633. EXEX008=\ -verbose[\:class,gc,stack,sizes]\n enable verbose output (default\=class).\n
  1634. SHRC581=Error mapping in cross-guest shared object
  1635. EXEX007=\ -jcl\:<config>[\:options]\n specify which JCL shared library to use (e.g. cdc, cldc, ...).\n
  1636. SHRC580=Error releasing cross-guest shared class cache attach read lock
  1637. EXEX006=\ -debug\:<options> enable debug, JDWP standard <options>.\n
  1638. JDBG019=unsorted relocation list %zx
  1639. EXEX005=\ -D<prop>\=<val> set the value of a system property.\n
  1640. JDBG018=ignoring unrecognized debug option
  1641. EXEX004=\ -jxespace\:<physicalAddr>,<size>,<logicalAddr>\n map memory region for jxes, (values are in hex).\n -jxeaddr\:<logicalAddr>\n run a jxe directly from memory, (address is in hex).
  1642. EXEX003=\ -jxe\:<jxeFile> run the named jxe file.
  1643. JDBG016=jvm attach failed
  1644. EXEX002=\n[options]\n -classpath <path>\n -cp <path> set classpath to <path>.
  1645. JDBG015=Debug response server
  1646. EXEX001=Usage\:\t%s [options] -jxe\:<jxeFile> [args...]
  1647. JDBG014=cannot allocate vm->debuggerClassReferences pool
  1648. EXEX000=Usage\:\t%s [options] classname [args...]
  1649. JDBG013=cannot allocate vm->debuggerReferences pool
  1650. JDBG012=j9dbg_init_server failed
  1651. JDBG011=cannot allocate debugServer
  1652. JDBG010=Example\: java -Xrunjdwp\:transport\=dt_socket,address\=localhost\:8000\n
  1653. SHRC219=[-Xshareclasses group access enabled for new caches]
  1654. SHRC218=[-Xshareclasses persistent cache disabled]
  1655. SHRC579=Error initialising cross-guest shared cache data header
  1656. SHRC217=[-Xshareclasses persistent cache enabled]
  1657. SHRC578=Error creating header in cross-guest shared class cache
  1658. SHRC216=Create non-persistent shared class cache
  1659. SHRC577=Cannot create a cross-guest shared cache in readonly mode
  1660. SHRC215=Create persistent shared class cache
  1661. SHRC576=Cross guest shared cache cannot be opened read-only as it has not yet initialized
  1662. SHRC214=Cannot enter ByteDataManager hashtable mutex
  1663. SHRC575=Error acquiring write lock for header in cross-guest shared class cache
  1664. SHRC213=Cannot allocate memory for hashtable entry in ByteDataManagerImpl
  1665. SHRC574=Cross guest shared cache cannot be located on a networked file system. Either select "nonpersistent" or a different cacheDir.
  1666. SHRC212=Storing byte data for key %.*s in shared cache...
  1667. SHRC573=Command-line option "-Xshareclasses\:%s" requires "-Xvirt"
  1668. SHRC211=Finding byte data for key %.*s in shared cache...
  1669. SHRC572=Incorrect target specification found. Target specified in cache header is\: %s, but expected is\: %s.
  1670. SHRC210=[-Xshareclasses byte data verbose output enabled]
  1671. SHRC571=Attached shared classes cross-guest cache %1$s
  1672. SHRC570=Cross-guest shared cache "%1$s" has been destroyed
  1673. JDBG009=j9methodids\=y|n use j9 method ids n\n
  1674. JDBG008=onuncaught\=y|n debug on any uncaught? n
  1675. JDBG007=onthrow\=<exception name> debug on throw none
  1676. JDBG006=server\=y|n listen for debugger? n
  1677. JDBG005=address\=<listen/attach address> transport spec "localhost\:8888"
  1678. JDBG004=transport\=<name> transport spec none
  1679. JDBG003=suspend\=y|n wait on startup? y
  1680. JDBG002=--------------------- ----------- -------
  1681. JDBG001=Option Name and Value Description Default
  1682. JDBG000=-Xrunjdwp usage\: -Xrunjdwp\:[help]|[<option>\=<value>, ...]\n
  1683. SHRC209=Enable byte data verbose output
  1684. SHRC208=Cannot allocate memory for hastable item pool in CompiledMethodManagerImpl
  1685. SHRC569=Created shared classes cross-guest cache %1$s
  1686. SHRC207=Cannot enter CompiledMethodManager hashtable mutex
  1687. SHRC568=Opened shared classes cross-guest cache %1$s
  1688. SHRC206=Cannot allocate memory for hashtable entry in CompiledMethodManagerImpl
  1689. SHRC567=Opened shared class cross-guest cache %1$s read-only
  1690. SHRC205=Failed to create new hash table item in CompiledMethodManagerImpl
  1691. SHRC566=Cross-guest shared class cache header eyecatcher is invalid
  1692. SHRC204=Cannot create hashtable mutex in shared class Manager
  1693. SHRC565=Create crossguest shared class cache
  1694. SHRC203=Cannot create hashtable in shared class Manager
  1695. SHRC564=[-Xshareclasses crossguest shared cache enabled]
  1696. SHRC202=Failed to initialize pools in shared class Manager
  1697. SHRC563=Opening a Realtime cache, which is not compatible with this JVM, use the -Xrealtime JVM option to access this cache
  1698. SHRC201=\ Succeeded replacing %2$.*1$s.
  1699. SHRC562=Read corrupt data for cache entry header 0x%p (invalid item length of %u bytes)
  1700. SHRC200=\ Succeeded finding %2$.*1$s.
  1701. SHRC561=Failed to initialize the shared classes cache, there is not enough space in the file system. Available free disk space bytes \= %lld, requested bytes \= %lld.
  1702. SHRC560=Internal cache name is not proper.
  1703. SHRC559=Failed to create a directory "%s" for the shared class cache
  1704. SHRC558=Available options for -Xshareclasses\:printStats\=<options>. Use '+' to specify multiple options. i.e. printstats\=aot+url \n
  1705. SHRC557=Unrecognised sub-option for option printstats\= . Use printstats\=help to see available options.
  1706. SHRC556=Print summary of cache statistics. Use printstats\=help to see available options.
  1707. SHRC555=Cache contains classes with line numbers and classes without line numbers
  1708. SHRC554=Cache contains only classes without line numbers
  1709. SHRC553=Cache contains only classes with line numbers
  1710. SHRC552=Cannot allocate requested block size for cache "%s". Available bytes \= %d, Requested bytes \= %d
  1711. SHRC551=Cache "%s" is marked as full. Failed to allocate block size \= %d.
  1712. SHRC550=ROUND_TO_PAGE_SIZE runtime flag is missing. -Xshareclasses\:checkStringTableReset requires string table be rounded to page size.
  1713. SHRC549=-Xshareclasses\:checkStringTableReset may fail. String table is not large enough. It needs to be more than to OS page size. Table size \= %d, Page size \= %d
  1714. SHRC548=Force check for string table reset when it is marked as corrupt.
  1715. SHRC547=Cannot allocate memory for character array in shrinit
  1716. SHRC546=%1$d\: 0x%2$p UNUSED1\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1717. SHRC545=%1$d\: 0x%2$p ROMSTRING\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1718. SHRC544=%1$d\: 0x%2$p VM\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1719. SHRC543=%1$d\: 0x%2$p AOTDATA\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1720. SHRC542=%1$d\: 0x%2$p POOL\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1721. SHRC541=%1$d\: 0x%2$p HELPER\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1722. SHRC540=%1$d\: 0x%2$p UNKNOWN\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1723. SHRC539=%1$d\: 0x%2$p AOTTHUNK\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1724. SHRC538=%1$d\: 0x%2$p AOTCH\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1725. SHRC537=%1$d\: 0x%2$p JCL\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1726. SHRC536=%1$d\: 0x%2$p JITHINT\: %4$.*3$s Address\: 0x%5$p Size\: %6$d
  1727. SHRC535=\t bytedata\tPrints all other bytedata types in the shared cache.
  1728. SHRC534=\t jcl\t\tPrints only jcl types in the shared cache.
  1729. SHRC533=\t aotdata\tPrints only aotdata types in the shared cache.
  1730. SHRC532=\t aotthunk\tPrints only aotthunk types in the shared cache.
  1731. SHRC531=\t aotch\t\tPrints only aotch types in the shared cache.
  1732. SHRC530=\t jithint\tPrints only jithint types in the shared cache.
  1733. DUMP044=Invalid or reserved valid value for %s
  1734. DUMP043=%s not supported on this platform
  1735. DUMP042=Abort signal received while running on Java stack. The JVM dump agents could not be run.
  1736. DUMP041=Incorrect use of -Xdump msg_filter
  1737. DUMP040=%1$s dump written to dataset(s) using name template %2$s
  1738. SHRC529=\t orphan\t\tPrints only orphan types in the shared cache.
  1739. SHRC528=\t extra\t\tPrints all the following private types in the shared cache.
  1740. SHRC527=\t zipcache\tPrints only zipcache types in the shared cache.
  1741. SHRC526=\t jitprofile\tPrints only jitprofile types in the shared cache.
  1742. SHRC525=\t aot\t\tPrints only aot types in the shared cache.
  1743. SHRC524=\t rommethod\tPrints only rommethod types in the shared cache.
  1744. SHRC523=\t romclass\tPrints only romclass types in the shared cache.
  1745. SHRC522=\t token\t\tPrints only token types in the shared cache.
  1746. DUMP039=Processing dump event "%1$s", detail "%3$.*2$s" at %4$s - please wait.
  1747. SHRC521=\t url\t\tPrints only url types in the shared cache.
  1748. DUMP038=Snap dump is not written because tracing to file\: %1$s
  1749. SHRC520=\t classpath\tPrints only classpath types in the shared cache.
  1750. DUMP037=Error in %1$s dump\: %2$s failed, error code\: %3$d
  1751. DUMP036=Invalid or missing -Xdump filter
  1752. DUMP035=User requested %1$s dump through %2$s
  1753. DUMP034=User requested %1$s dump using '%2$s' through %3$s
  1754. DUMP033=JVM requested %1$s dump in response to an event
  1755. DUMP032=JVM requested %1$s dump using '%2$s' in response to an event
  1756. DUMP031=The requested heapdump has not been produced because the VM exclusive lock was not requested. Add request\=exclusive+prepwalk+compact to your -Xdump\:heap\: command line option.
  1757. DUMP030=Cannot write dump to file %s\: %s
  1758. SHRC519=\t all\t\tPrints all the following types in the shared cache.
  1759. SHRC518=Available options for -Xshareclasses\:printAllStats\=<options>. Use '+' to specify multiple options. i.e. printallstats\=aot+url \n
  1760. SHRC517=Unrecognised sub-option for option printallstats\= . Use printallstats\=help to see available options.
  1761. SHRC516=List all elements in cache by default. Use printallstats\=help to see available options.
  1762. SHRC515=Failed to get default cache directory.
  1763. SHRC514=Invalid setting for cacheDirPerm option. This must be unix style file permission in the range of 0700 - 0777 or 1700 - 1777 (in octal representation).
  1764. SHRC513=Set unix style permissions for creating cache directories
  1765. SHRC512=no data in cache
  1766. DUMP029=The request for prepwalk or compact before taking a system dump will be ignored because the VM exclusive lock was not requested.
  1767. SHRC511=Composite cache has bad initialization flag value. The value of ccInitComplete is %lu
  1768. DUMP028=The VM exclusive lock could not be acquired before taking the system dump.
  1769. SHRC510=Disable the creation of dumps on corrupted caches
  1770. DUMP027=The requested heapdump has not been produced because another component is holding the VM exclusive lock.
  1771. DUMP026=IEATDUMP Name exceeding maximum allowed length. Default name used.
  1772. DUMP025=IEATDUMP failure for DSN\='%s' RC\=0x%08X RSN\=0x%08X
  1773. DUMP024=Multiple heapdumps were requested but %%id is missing from file label\: dumps will overwrite
  1774. DUMP023=The requested heap preparation has not been performed because exclusive access was not requested or could not be obtained.
  1775. DUMP022=The requested heap compaction has not been performed because exclusive access was not requested or could not be obtained.
  1776. DUMP021=The requested heapdump has not been produced because exclusive access was not requested or could not be obtained.
  1777. DUMP020=%s dump has been written
  1778. SHRC509=Create a cache one generation older than current generation.
  1779. SHRC508=Acquired a different semaphore than previously used with this cache. old semid\=%d, new semid\=%d
  1780. SHRC507=Do extra checks when storing and allocating class debug data
  1781. SHRC506=The debug area is corrupt because its size of %lu is larger than the total cache size of %u stored in the cache header
  1782. SHRC505=The debug area is corrupt because free space high address %p minus the free space low address %p exceeds the debug region size of %lu bytes
  1783. SHRC504=Cache data start is null. data start\: %p
  1784. SHRC503=The debug area is corrupt because storing 'line number table' %d bytes, and 'local variable table' %d bytes, will result in a 'line number table data' high address of %p, which will be greater than the new 'local variable table data' low address %p
  1785. SHRC502=The debug area is corrupt because the 'local variable table data' low address %p, is greater than the high address %p
  1786. DUMP019=JVM requesting %s dump
  1787. SHRC501=The debug area is corrupt because the 'line number table data' low address %p, is greater than the high address %p
  1788. DUMP018=Requested event is not available\: run with -Xdump\:dynamic flag
  1789. SHRC500=The debug area is corrupt because free space low address %p, is greater than free space high address %p
  1790. DUMP017=Aborting\: Cannot compress file (%s)
  1791. DUMP016=Aborting\: Cannot create file (%s)
  1792. DUMP015=Aborting\: Cannot open or read (%s)
  1793. DUMP014=VM Action unrecognized\: ...%s
  1794. DUMP013=Processed dump event "%1$s", detail "%3$.*2$s".
  1795. DUMP012=Error in %1$s dump\: %2$s
  1796. DUMP011=%1$s dump created process %2$d
  1797. DUMP010=%1$s dump written to %2$s
  1798. EXEL114=\ -XX\:SharedCacheHardLimit\=<x> set size of new shared class cache to <x>
  1799. EXEL113=\ -Xscmx<x> set size (or soft max size if option -XX\:SharedCacheHardLimit\= is present) of new shared class cache to <x>
  1800. EXEL112=\ -Xscsoftmx<x> set soft max size of new shared class cache to <x>
  1801. EXEL111=\ -XX\:+StoreIntermediateClassfile store raw class data to be used during re-transformation
  1802. EXEL110=\ -XX\:ShareClassesDisableBCI create shared class cache without support for byte-code instrumentation
  1803. DUMP009=%s dump not available
  1804. DUMP008=using '%s'
  1805. DUMP007=JVM Requesting %1$s dump using '%2$s'
  1806. DUMP006=Processing dump event "%1$s", detail "%3$.*2$s" - please wait.
  1807. DUMP005=Missing external tool
  1808. DUMP004=Missing file name
  1809. DUMP003=Dump agent unrecognised\: %s
  1810. DUMP002=Token unrecognized\: %%%1$c
  1811. DUMP001=Dump event unrecognized\: ...%s
  1812. DUMP000=Dump option unrecognized\: -Xdump\:%s
  1813. TNNT004=Malformed tenant.properties file (%1$s). Cannot decode required key\='%2$s' value\='%3$s'
  1814. TNNT003=Malformed tenant.properties, file (%1$s) missing required key (%2$s)
  1815. TNNT002=Could not read required isolation properties file (%1$s)
  1816. EXEL109=\ -XX\:ShareClassesEnableBCI create shared class cache with support for byte-code instrumentation
  1817. TNNT001=Could not allocate memory for tenant launcher
  1818. EXEL108=\ -Xzero\:nosharebootzip do not share bootstrap jar entry caches in the shared class cache
  1819. TNNT000=Tenant support enabled.
  1820. EXEL107=\ -Xscmaxjitdata<x> set maximum shared classes cache space allowed for JIT data to <x>
  1821. EXEL106=\ -Xscminjitdata<x> set minimum shared classes cache space reserved for JIT data to <x>
  1822. EXEL105=\ -Xscmaxjit<x> set maximum shared classes cache space allowed for JIT data to <x>
  1823. EXEL104=\ -Xscminjit<x> set minimum shared classes cache space reserved for JIT data to <x>
  1824. EXEL103=\ -Xscdmx<x> set size of shared class cache debug attribute area to <x>
  1825. EXEL102=\n -Xdiagnosticscollector enable the Diagnostics Collector
  1826. EXEL101=\n -Xhealthcenter enable the Health Center agent
  1827. EXEL100=\ -Xgcpolicy\:metronome -Xnortsj enable soft realtime
  1828. CFRE099=illegal method modifiers
  1829. CFRE098=local variable signature must be a string
  1830. CFRE097=duplicate inner class entry in InnerClasses attribute
  1831. CFRE096=target not instruction in switch bytecode
  1832. CFRE095=annotations must be interfaces
  1833. CFRE094=instanceof bytecode must reference a class
  1834. CFRE093=method can be at most one of public private or protected
  1835. CFRE092=signature invalid
  1836. CFRE091=exception handler start PC is not an instruction
  1837. CFRE090=new bytecode cannot create arrays
  1838. CFRE089=expecting name and type
  1839. CFRE088=local variable name must be a string
  1840. CFRE087=interface method bytecode must reference an InterfaceMethodref
  1841. CFRE086=method has two Code attributes
  1842. CFRE085=inner name must be a string
  1843. CFRE084=no error
  1844. CFRE083=class is both abstract and final
  1845. CFRE082=<init> method may not be static, final, synchronized, native or abstract
  1846. CFRE081=source file must be a UTF8
  1847. CFRE080=method signature is invalid
  1848. CFRE079=exception handler PC is invalid
  1849. CFRE078=enclosing method class index must reference a class
  1850. CFRE077=interfaces must be abstract
  1851. CFRE076=bad magic number
  1852. CFRE075=local variable signature invalid
  1853. CFRE074=no Code attribute specified
  1854. CFRE073=StackMap/StackMapTable attribute found outside Code attribute
  1855. CFRE072=entries not sorted in lookupswitch bytecode
  1856. CFRE071=bytecode array is empty
  1857. CFRE070=line number PC invalid
  1858. SHRC818=Total unstored bytes due to the setting of shared cache soft max is %u. Unstored AOT bytes due to the setting of -Xscmaxaot is %u. Unstored JIT bytes due to the setting of -Xscmaxjitdata is %u.
  1859. SHRC817=%s value is greater than the shared cache size, so it has been set to unlimited
  1860. SHRC816=%s value is greater than the shared cache size, so it has been set to equal the shared cache size.
  1861. SHRC815=stale bytes %*c\= %u
  1862. SHRC814=\t stale\t\tPrints all the stale entries in the shared cache.
  1863. SHRC813=Total unstored bytes due to the setting of -Xscsoftmx is %u. Unstored AOT bytes due to the setting of -Xscmaxaot is %u. Unstored JIT bytes due to the setting of -Xscmaxjitdata is %u.
  1864. SHRC812=Feature \= %s
  1865. SHRC811=Non-compressed references shared cache snapshot "%s" is destroyed. Use option -Xcompressedrefs if you want to destroy a compressed references cache snapshot.
  1866. SHRC810=Compressed references shared cache snapshot "%s" is destroyed. Use option -Xnocompressedrefs if you want to destroy a non-compressed references cache snapshot.
  1867. CFRE069=attribute length greater than attribute data
  1868. CFRE068=class name is invalid
  1869. CFRE067=unknown constant pool entry tag
  1870. CFRE066=multiple InnerClasses attributes
  1871. CFRE065=multiple enclosing method attributes
  1872. CFRE064=descriptor must be a UTF8 string
  1873. CFRE063=invoke bytecode calls invalid method
  1874. CFRE062=max locals smaller than arguments size
  1875. CFRE061=name must be a UTF8 string
  1876. CFRE060=exception handler end PC is not an instruction or the end of the bytecode array
  1877. SHRC809=Non-compressed references shared cache "%s" is destroyed. Use option -Xcompressedrefs if you want to destroy a compressed references cache.
  1878. SHRC808=Compressed references shared cache "%s" is destroyed. Use option -Xnocompressedrefs if you want to destroy a non-compressed references cache.
  1879. SHRC807=Non-compressed references persistent shared cache "%1$s" has been destroyed. Use option -Xcompressedrefs if you want to destroy a compressed references cache.
  1880. SHRC806=Compressed references persistent shared cache "%1$s" has been destroyed. Use option -Xnocompressedrefs if you want to destroy a non-compressed references cache.
  1881. SHRC805=The JVM has not enabled protecting shared cache partially filled pages on startup.
  1882. SHRC804=The JVM has enabled shared cache partial page protection on startup as the existing shared cache was created with partial page protection enabled on startup.
  1883. SHRC803=Enable memory protection of partially filled pages on startup.
  1884. SHRC802=Cache is %1$d%% soft full\n
  1885. SHRC801=softmx bytes %*c\= %d
  1886. SHRC800=The shared cache is full. The minimum reserved and maximum allowed AOT/JIT data space, and softmx limit cannot be adjusted anymore.
  1887. CFRE059=exception handler PC is not an instruction
  1888. CFRE058=local variable index out of range in subroutine return
  1889. CFRE057=exception handler type must be a class
  1890. CFRE056=invokeinterface bytecode argument count wrong
  1891. CFRE055=exception handler end PC is invalid
  1892. CFRE054=field bytecode must reference a Fieldref
  1893. CFRE053=method has more than 255 argument slots
  1894. CFRE052=outer class must be a class
  1895. CFRE051=string constant must be a string
  1896. CFRE050=interface method must be public and abstract
  1897. J9TI067=Cancel a subscription to VM tracepoints
  1898. J9TI066=Create a subscription to VM tracepoints
  1899. J9TI065=Agent initialization function %s not found in library %s
  1900. J9TI064=Agent initialization function %s failed for library %s, return code %d
  1901. J9TI063=Gets the J9Method pointer from JMethodID
  1902. J9TI062=Gets the J9VMThread pointer from a jthread
  1903. J9TI061=Cancel a subscription to verbose GC records
  1904. J9TI060=Create a subscription to verbose GC records
  1905. CFRE049=checkcast bytecode must reference a class
  1906. CFRE048=local variable index out of range in store
  1907. CFRE047=interface class may only be public, abstract, or annotation
  1908. CFRE046=switch bytecode padding incorrect
  1909. CFRE045=constant pool index out of range
  1910. CFRE044=invokeinterface bytecode reserved slot not zero
  1911. CFRE043=bytecode cannot be made wide
  1912. CFRE042=bytecode array size > 65535
  1913. CFRE041=bad minor version
  1914. CFRE040=attribute length less than attribute data
  1915. J9TI059=Get the amount of native memory used by the JVM, broken down under memory categories.
  1916. J9TI058=Could not set JVM log options.
  1917. J9TI057=Could not convert JVM log options native string.
  1918. J9TI056=Could not query JVM log options.
  1919. J9TI055=Could not allocate buffer for JVM log options.
  1920. J9TI054=Request a Java Lock Monitor (JLM) dump with a format specifier.
  1921. J9TI053=Set the VM log options.
  1922. J9TI052=Query the current VM log options.
  1923. J9TI051=Clear per-method flag for selective entry and exit notification.
  1924. J9TI050=Get a hash code for an object's monitor.
  1925. RCMT000=Resource management enabled.
  1926. CFRE039=local variable index out of range in load
  1927. CFRE038=method has two Exceptions attributes
  1928. CFRE037=temp contains wrong type
  1929. CFRE036=target not instruction in jump bytecode
  1930. CFRE035=new bytecode must reference a class
  1931. CFRE034=bytecode incomplete
  1932. CFRE033=exception handler range is empty
  1933. CFRE032=interface superclass must be java.lang.Object
  1934. CFRE031=thrown exception must be a class
  1935. CFRE030=null superclass
  1936. J9TI049=Return Class, Method and Package names for a set of RAM Method pointers
  1937. J9TI048=Gets trace metadata that can used with the formatter to process trace buffers
  1938. J9TI047=All in use trace records are switched out and passed to trace subscribers
  1939. J9TI046=Cancel a subscription to external trace records
  1940. J9TI045=Create a subscription to external trace records
  1941. J9TI044=Delete all object tags.
  1942. J9TI043=Signal class load only for array classes.
  1943. J9TI042=Signal autotags for newly allocated object and its class.
  1944. J9TI041=Signal the object(s) renamed event (moved or deleted).
  1945. J9TI040=Adds the extended capability can_autotag_objects.
  1946. CFRE029=multianewarray bytecode must reference a class
  1947. CFRE028=ldc* bytecode must reference a constant
  1948. CFRE027=multianewarray bytecode must reference an array class
  1949. CFRE026=newarray bytecode type unrecognized
  1950. CFRE025=field has two ConstantValue attributes
  1951. CFRE024=class name must be a string
  1952. CFRE023=constant pool empty
  1953. CFRE022=thisClass must be a class
  1954. CFRE021=duplicate field
  1955. CFRE020=exception handler start PC is invalid
  1956. J9TI039=Destroy a named shared cache.
  1957. J9TI038=Iterate over shared caches.
  1958. J9TI037=Get the heap total memory.
  1959. J9TI036=Get the current heap free memory.
  1960. J9TI035=Garbage collection cycle finished.
  1961. J9TI034=Garbage collection cycle started.
  1962. J9TI033=Reset the VM dump options.
  1963. J9TI032=Indicates that a thread has processed the async event
  1964. J9TI031=Cancel the async event on a single thread or all threads
  1965. J9TI030=Signal the async event on a single thread or all threads
  1966. CFRE019=local variable PC start invalid
  1967. CFRE018=inner class must be a class
  1968. CFRE017=multiple StackMap/StackMapTable attributes
  1969. CFRE016=local variable index out of range in increment
  1970. CFRE015=interfaces must be classes
  1971. CFRE014=Code attribute specified for a native or abstract method
  1972. CFRE013=local variable PC length invalid
  1973. CFRE012=constant value must be a value
  1974. CFRE011=anewarray bytecode must reference a class
  1975. CFRE010=negative count for match and offset pairs in lookupswitch bytecode
  1976. J9TI029=Query RAS dump agent configuration.
  1977. J9TI028=Report the end of a RAS dump.
  1978. J9TI027=Report the start of a RAS dump.
  1979. J9TI026=Trigger a dump using the given RAS configuration.
  1980. J9TI025=Allow direct JNI in the presence of method enter and exit events (resulting in possibly inaccurate reporting of enter and exit)
  1981. J9TI024=Method exit without the return value.
  1982. J9TI023=Get extended frame information for a thread list.
  1983. J9TI022=Get extended frame information for all stack traces.
  1984. J9TI021=Get extended frame information
  1985. J9TI020=Gets the OS thread ID from a jthread
  1986. CFRE009=interface field must be public static and final
  1987. CFRE008=high < low in tableswitch bytecode
  1988. CFRE007=field signature is invalid
  1989. CFRE006=invalid StackMap/StackMapTable attribute
  1990. CFRE005=duplicate interface
  1991. CFRE004=unknown bytecode
  1992. JNCK099=JNI error in %1$s\: argument \#%2$d requires a non-array type
  1993. CFRE003=bad major version
  1994. JVMP000=Attempt to instrument %.*s through JVMPI was disallowed
  1995. JNCK098=JNI error in %1$s\: argument \#%2$d expects %3$s %4$s, actual argument is %5$s %6$s
  1996. CFRE002=method name is invalid
  1997. JNCK097=\tadvice display advice
  1998. CFRE001=%1$s; class\=%3$.*2$s, offset\=%4$u
  1999. JNCK096=\twarn display warnings
  2000. CFRE000=%1$s; class\=%3$.*2$s, method\=%5$.*4$s%7$.*6$s, pc\=%8$u
  2001. JNCK095=JNI error in returned value\: the return type is a reference but the value (0x%1$p) is not a valid object reference. Its type is\: %2$s
  2002. JNCK094=JNI error in %1$s\: The data pointed at by argument \#%2$d was modified during the execution of %3$s. The data may have been modified by another thread or by a nested call. The result of %4$s may be incorrect and the VM may become unstable
  2003. JNCK093=JNI error in %s\: Method is not a constructor
  2004. J9TI019=Sets notification mode for extended events, allowing thread-level selectivity
  2005. JNCK092=\tvalist check for va_list reuse
  2006. J9TI018=Sets a method for selective entry and exit notification.
  2007. JNCK091=Advice detected in handler frame of a JVMPI or JVMTI event\n
  2008. J9TI017=Controls various VM and compiling options.
  2009. JNCK090=Warning detected in handler frame of a JVMPI or JVMTI event\n
  2010. J9TI016=Allow inlining in the presence of method enter and exit events (resulting in possibly inaccurate reporting of enter and exit)
  2011. J9TI015=Request a Java Lock Monitor (JLM) dump.
  2012. J9TI014=Controls Java Lock Monitor (JLM) (COM_IBM_JLM_START, COM_IBM_JLM_START_TIME_STAMP, COM_IBM_JLM_STOP, COM_IBM_JLM_STOP_TIME_STAMP).
  2013. J9TI013=Allows callbacks for instrumentable allocates (those not reported by VMObjectAlloc).
  2014. J9TI012=Add a dynamic -Xdump option
  2015. J9TI011=Add a dynamic -Xtrace option
  2016. J9TI010=Method entry with extended information about method type.
  2017. JNCK089=Error detected in the handler frame of a JVMPI or JVMTI event\n
  2018. JNCK088=JNI warning in %1$s\: Argument \#%2$d is a weak reference. A weak reference may become NULL at any time. The reference should be promoted using NewLocalRef or NewGlobalRef and then compared to NULL before calling %3$s
  2019. JNCK087=JNI error in %1$s\: Argument \#%2$d is not a java/lang/reflect/Method or java/lang/reflect/Constructor
  2020. JNCK086=JNI warning in %1$s\: Argument \#%2$d is not a java/nio/Buffer. %3$s will return an error code
  2021. JNCK085=Advice detected in JNI_OnLoad of library %.*s\n
  2022. JNCK084=Warning detected in JNI_OnLoad of library %.*s\n
  2023. JNCK083=Error detected in JNI_OnLoad of library %.*s\n
  2024. J9TI009=Indicates the end of a JIT compilation phase. (Not callback safe)
  2025. JNCK082=Advice detected in the outermost frame of an attached thread\n
  2026. J9TI008=Indicates the start of a JIT compilation phase. (Not callback safe)
  2027. JNCK081=Warning detected in the outermost frame of an attached thread\n
  2028. J9TI007=Get the current set of extended capabilities via capabilities_ptr.
  2029. JNCK080=Error detected in the outermost frame of an attached thread\n
  2030. J9TI006=Relinquish the extended capabilities from capabilities_ptr.
  2031. J9TI005=Add the new extended capabilities from capabilities_ptr.
  2032. J9TI004=Returns via the capabilities_ptr the extended capabilities available at this time.
  2033. J9TI003=Agent_OnLoad failed for library %s
  2034. J9TI002=Agent_OnLoad not found in library %s
  2035. J9TI001=Agent library %1$s could not be opened (%2$s)
  2036. J9TI000=Out of memory attempting to load agent library %s
  2037. JNCK079=Advice detected in %2$.*1$s.%4$.*3$s%6$.*5$s\n
  2038. JNCK078=Warning detected in %2$.*1$s.%4$.*3$s%6$.*5$s\n
  2039. JNCK077=Error detected in %2$.*1$s.%4$.*3$s%6$.*5$s\n
  2040. JNCK076=Internal jnichk error in %s\: Out of memory
  2041. JNCK075=Internal jnichk error in %1$s\: Unrecognized descriptor 0x%2$x
  2042. JNCK074=JNI advice in %s\: Buffer appears to be unmodified. Consider using JNI_ABORT instead of mode 0.
  2043. JNCK073=JNI advice in %1$s\: JNI_ABORT was specified, but cannot be honoured because data has been modified.\n(Original CRC\=0x%2$x, new CRC\=0x%3$x).\nSince %4$s returned the actual array contents, the changes will not be discarded. This may not be what you wanted.
  2044. JNCK072=JNI advice in %1$s\: JNI_COMMIT was specified, but will be ignored.\nSince %2$s returned the actual array contents, the buffer will be invalid following this call. This may not be what you wanted.
  2045. JNCK071=JNI warning\: Memory at 0x%1$p acquired by %2$s was not released before returning from native. This is probably a memory leak.
  2046. JNCK070=JNI warning in %1$s\: Original array data was modified between %2$s and %3$s.\n(Original CRC\=0x%4$x, new CRC\=0x%5$x).\nSince %6$s returned a copy of the array contents, the new contents will be lost.
  2047. JNCK069=JNI warning in %1$s\: End is out of range (%2$d + %3$d > %4$d)
  2048. JNCK068=JNI warning in %1$s\: Start or index is out of range (%2$d >\= %3$d)
  2049. JNCK067=JNI warning in %1$s\: Negative region length (%2$d) specified
  2050. JNCK066=JNI warning in %1$s\: Negative start or index (%2$d) specified
  2051. JNCK065=JNI warning in %1$s\: Automatically grew local reference frame capacity from %2$d to %3$d. %4$d references are in use.\nUse EnsureLocalCapacity or PushLocalFrame to explicitly grow the frame.
  2052. JNCK064=JNI warning in %1$s\: Automatically grew global weak reference pool capacity from %2$d to %3$d.\nThis may be an indicator of a memory leak.
  2053. JNCK063=JNI warning in %1$s\: Automatically grew global reference pool capacity from %2$d to %3$d.\nThis may be an indicator of a memory leak.
  2054. JNCK062=JNI warning in %s\: This function should not be called inside of a critical section
  2055. JNCK061=JNI warning in %1$s\: Argument \#%2$d is a malformed field signature ("%3$s")
  2056. JNCK060=JNI warning in %1$s\: Argument \#%2$d is a malformed method signature ("%3$s")
  2057. JNCK059=JNI warning in %1$s\: Argument \#%2$d is a malformed identifier ("%3$s")
  2058. JNCK058=JNI warning in %1$s\: After calling %2$s, you must check for exceptions using ExceptionCheck, ExceptionClear or ExceptionOccurred before calling %3$s
  2059. JNCK057=JNI error in %1$s\: Do not use %2$s to release memory 0x%3$p acquired using %4$s
  2060. JNCK056=JNI error in %1$s\: Got memory 0x%2$p from object 0x%3$p, releasing from 0x%4$p
  2061. JNCK055=JNI error in %1$s\: Pointer 0x%2$p was not returned by any JNI function, or was already released
  2062. JNCK054=JNI error in %1$s\: Unrecognized mode option %2$d
  2063. JNCK053=JNI error\: Critical section must be released before function returns
  2064. JNCK052=JNI error in %1$s\: Class %3$.*2$s is obsolete
  2065. SHRC199=\ Succeeded storing %2$.*1$s.
  2066. JNCK051=Internal VM error in %1$s\: Pushed bytes %2$p is smaller than JNI reference bytes %3$p
  2067. SHRC198=Storing AOT code for ROMMethod 0x%1$p in shared cache...
  2068. JNCK050=JNI error in %s\: PopLocalFrame called without a local frame on the stack
  2069. SHRC197=Finding AOT code for ROMMethod 0x%1$p in shared cache...
  2070. SHRC196=[-Xshareclasses AOT verbose output enabled]
  2071. SHRC195=Enable AOT verbose output
  2072. SHRC194=\tfor ROMClass %2$.*1$s at 0x%3$p.
  2073. SHRC193=%1$d\: 0x%2$p AOT\: %4$.*3$s
  2074. SHRC192=-Xscmaxaot value is greater than -Xscmx value, so it has been set to unlimited
  2075. SHRC191=-Xscminaot value is greater than -Xscmx value, so it has been set to equal -Xscmx value
  2076. SHRC190=-Xscminaot value should not be greater than -Xscmaxaot value