-
Notifications
You must be signed in to change notification settings - Fork 14
/
maven_install.json
executable file
·1351 lines (1351 loc) · 80.7 KB
/
maven_install.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": -1859670791,
"__RESOLVED_ARTIFACTS_HASH": -548761289,
"artifacts": {
"org.graalvm.compiler:compiler": {
"shasums": {
"jar": "e9914f57657c423523133e5d13b1e15c27d2ced81b6b329f9604539295b11add"
},
"version": "24.1.1"
},
"org.graalvm.nativeimage:native-image-base": {
"shasums": {
"jar": "ed803be48c4fdc1d7279313b36a7c34877f629f3a40dccc4383ef9a89267aba6"
},
"version": "24.1.1"
},
"org.graalvm.nativeimage:objectfile": {
"shasums": {
"jar": "7f2bdb392d3bf281056db98db7349217e0755c107f30fe12849f7d7666a022e1"
},
"version": "24.1.1"
},
"org.graalvm.nativeimage:pointsto": {
"shasums": {
"jar": "a556e5e955dce8002e7e4ed0d8b72c75204ce466ca2338ebc29f3cd1157b03bd"
},
"version": "24.1.1"
},
"org.graalvm.nativeimage:svm": {
"shasums": {
"jar": "9c0eb975b38ef79856aab148f1058d0f916d4ee73989ab9e2e4ba7657cf05166"
},
"version": "24.1.1"
},
"org.graalvm.polyglot:polyglot": {
"shasums": {
"jar": "b745c57e191a2b922679e96c1e9ad84d6581ea3d20a4525ca10151b5676bccf0"
},
"version": "24.1.1"
},
"org.graalvm.sdk:collections": {
"shasums": {
"jar": "33c1ad01c4d274e7fd2fbeca52ad21d7ab52732456a659641c81f31677728e4d"
},
"version": "24.1.1"
},
"org.graalvm.sdk:graal-sdk": {
"shasums": {
"jar": "ee05a61fd02ae84567b467301db5a38380956015fc75879340d27f5bf7fa40bf"
},
"version": "24.1.1"
},
"org.graalvm.sdk:nativeimage": {
"shasums": {
"jar": "e6b050b61994853ef8bd7e22cd469691b0a9528e95912011ab524d030a503e1f"
},
"version": "24.1.1"
},
"org.graalvm.sdk:word": {
"shasums": {
"jar": "c32775b2ee0637588fb2373111ecdacafe5f79f560c1c6b8f6cc982123304922"
},
"version": "24.1.1"
},
"org.graalvm.truffle:truffle-compiler": {
"shasums": {
"jar": "72c81272a4d1e50be30d6e334e013f4db578bfdc2e888679648cc0289034e1ab"
},
"version": "24.1.1"
}
},
"dependencies": {
"org.graalvm.compiler:compiler": [
"org.graalvm.sdk:collections",
"org.graalvm.sdk:word",
"org.graalvm.truffle:truffle-compiler"
],
"org.graalvm.nativeimage:native-image-base": [
"org.graalvm.compiler:compiler",
"org.graalvm.sdk:nativeimage"
],
"org.graalvm.nativeimage:objectfile": [
"org.graalvm.compiler:compiler",
"org.graalvm.sdk:nativeimage"
],
"org.graalvm.nativeimage:pointsto": [
"org.graalvm.compiler:compiler",
"org.graalvm.nativeimage:native-image-base"
],
"org.graalvm.nativeimage:svm": [
"org.graalvm.compiler:compiler",
"org.graalvm.nativeimage:native-image-base",
"org.graalvm.nativeimage:objectfile",
"org.graalvm.nativeimage:pointsto",
"org.graalvm.sdk:nativeimage"
],
"org.graalvm.polyglot:polyglot": [
"org.graalvm.sdk:collections",
"org.graalvm.sdk:nativeimage"
],
"org.graalvm.sdk:graal-sdk": [
"org.graalvm.polyglot:polyglot",
"org.graalvm.sdk:collections",
"org.graalvm.sdk:nativeimage",
"org.graalvm.sdk:word"
],
"org.graalvm.sdk:nativeimage": [
"org.graalvm.sdk:word"
]
},
"packages": {
"org.graalvm.compiler:compiler": [
"jdk.graal.compiler.api.directives",
"jdk.graal.compiler.api.replacements",
"jdk.graal.compiler.api.runtime",
"jdk.graal.compiler.asm",
"jdk.graal.compiler.asm.aarch64",
"jdk.graal.compiler.asm.amd64",
"jdk.graal.compiler.bytecode",
"jdk.graal.compiler.code",
"jdk.graal.compiler.core",
"jdk.graal.compiler.core.aarch64",
"jdk.graal.compiler.core.amd64",
"jdk.graal.compiler.core.common",
"jdk.graal.compiler.core.common.alloc",
"jdk.graal.compiler.core.common.calc",
"jdk.graal.compiler.core.common.cfg",
"jdk.graal.compiler.core.common.memory",
"jdk.graal.compiler.core.common.spi",
"jdk.graal.compiler.core.common.type",
"jdk.graal.compiler.core.common.util",
"jdk.graal.compiler.core.gen",
"jdk.graal.compiler.core.match",
"jdk.graal.compiler.core.phases",
"jdk.graal.compiler.core.phases.fuzzing",
"jdk.graal.compiler.core.riscv64",
"jdk.graal.compiler.core.target",
"jdk.graal.compiler.debug",
"jdk.graal.compiler.graph",
"jdk.graal.compiler.graph.iterators",
"jdk.graal.compiler.graph.spi",
"jdk.graal.compiler.graphio",
"jdk.graal.compiler.graphio.parsing",
"jdk.graal.compiler.graphio.parsing.model",
"jdk.graal.compiler.hightiercodegen",
"jdk.graal.compiler.hightiercodegen.irwalk",
"jdk.graal.compiler.hightiercodegen.lowerer",
"jdk.graal.compiler.hightiercodegen.reconstruction",
"jdk.graal.compiler.hightiercodegen.reconstruction.stackifier",
"jdk.graal.compiler.hightiercodegen.reconstruction.stackifier.blocks",
"jdk.graal.compiler.hightiercodegen.reconstruction.stackifier.scopes",
"jdk.graal.compiler.hightiercodegen.variables",
"jdk.graal.compiler.hotspot",
"jdk.graal.compiler.hotspot.aarch64",
"jdk.graal.compiler.hotspot.aarch64.g1",
"jdk.graal.compiler.hotspot.amd64",
"jdk.graal.compiler.hotspot.amd64.g1",
"jdk.graal.compiler.hotspot.debug",
"jdk.graal.compiler.hotspot.lir",
"jdk.graal.compiler.hotspot.meta",
"jdk.graal.compiler.hotspot.nodes",
"jdk.graal.compiler.hotspot.nodes.type",
"jdk.graal.compiler.hotspot.phases",
"jdk.graal.compiler.hotspot.replacements",
"jdk.graal.compiler.hotspot.replacements.arraycopy",
"jdk.graal.compiler.hotspot.riscv64",
"jdk.graal.compiler.hotspot.stubs",
"jdk.graal.compiler.hotspot.word",
"jdk.graal.compiler.java",
"jdk.graal.compiler.lir",
"jdk.graal.compiler.lir.aarch64",
"jdk.graal.compiler.lir.aarch64.g1",
"jdk.graal.compiler.lir.alloc",
"jdk.graal.compiler.lir.alloc.lsra",
"jdk.graal.compiler.lir.alloc.lsra.ssa",
"jdk.graal.compiler.lir.amd64",
"jdk.graal.compiler.lir.amd64.g1",
"jdk.graal.compiler.lir.amd64.phases",
"jdk.graal.compiler.lir.amd64.vector",
"jdk.graal.compiler.lir.asm",
"jdk.graal.compiler.lir.constopt",
"jdk.graal.compiler.lir.debug",
"jdk.graal.compiler.lir.dfa",
"jdk.graal.compiler.lir.framemap",
"jdk.graal.compiler.lir.gen",
"jdk.graal.compiler.lir.hashing",
"jdk.graal.compiler.lir.phases",
"jdk.graal.compiler.lir.profiling",
"jdk.graal.compiler.lir.ssa",
"jdk.graal.compiler.lir.stackslotalloc",
"jdk.graal.compiler.lir.util",
"jdk.graal.compiler.loop.phases",
"jdk.graal.compiler.nodeinfo",
"jdk.graal.compiler.nodes",
"jdk.graal.compiler.nodes.calc",
"jdk.graal.compiler.nodes.cfg",
"jdk.graal.compiler.nodes.debug",
"jdk.graal.compiler.nodes.extended",
"jdk.graal.compiler.nodes.gc",
"jdk.graal.compiler.nodes.graphbuilderconf",
"jdk.graal.compiler.nodes.java",
"jdk.graal.compiler.nodes.loop",
"jdk.graal.compiler.nodes.memory",
"jdk.graal.compiler.nodes.memory.address",
"jdk.graal.compiler.nodes.spi",
"jdk.graal.compiler.nodes.type",
"jdk.graal.compiler.nodes.util",
"jdk.graal.compiler.nodes.virtual",
"jdk.graal.compiler.options",
"jdk.graal.compiler.phases",
"jdk.graal.compiler.phases.common",
"jdk.graal.compiler.phases.common.inlining",
"jdk.graal.compiler.phases.common.inlining.info",
"jdk.graal.compiler.phases.common.inlining.info.elem",
"jdk.graal.compiler.phases.common.inlining.policy",
"jdk.graal.compiler.phases.common.inlining.walker",
"jdk.graal.compiler.phases.common.util",
"jdk.graal.compiler.phases.contract",
"jdk.graal.compiler.phases.graph",
"jdk.graal.compiler.phases.schedule",
"jdk.graal.compiler.phases.tiers",
"jdk.graal.compiler.phases.util",
"jdk.graal.compiler.printer",
"jdk.graal.compiler.replacements",
"jdk.graal.compiler.replacements.aarch64",
"jdk.graal.compiler.replacements.amd64",
"jdk.graal.compiler.replacements.arraycopy",
"jdk.graal.compiler.replacements.classfile",
"jdk.graal.compiler.replacements.gc",
"jdk.graal.compiler.replacements.nodes",
"jdk.graal.compiler.replacements.nodes.arithmetic",
"jdk.graal.compiler.runtime",
"jdk.graal.compiler.serviceprovider",
"jdk.graal.compiler.truffle",
"jdk.graal.compiler.truffle.host",
"jdk.graal.compiler.truffle.hotspot",
"jdk.graal.compiler.truffle.hotspot.aarch64",
"jdk.graal.compiler.truffle.hotspot.amd64",
"jdk.graal.compiler.truffle.nodes",
"jdk.graal.compiler.truffle.nodes.asserts",
"jdk.graal.compiler.truffle.nodes.frame",
"jdk.graal.compiler.truffle.phases",
"jdk.graal.compiler.truffle.phases.inlining",
"jdk.graal.compiler.truffle.substitutions",
"jdk.graal.compiler.util",
"jdk.graal.compiler.util.json",
"jdk.graal.compiler.virtual.phases.ea",
"jdk.graal.compiler.word"
],
"org.graalvm.nativeimage:native-image-base": [
"com.oracle.svm.common.meta",
"com.oracle.svm.common.option",
"com.oracle.svm.util"
],
"org.graalvm.nativeimage:objectfile": [
"com.oracle.objectfile",
"com.oracle.objectfile.debugentry",
"com.oracle.objectfile.debugentry.range",
"com.oracle.objectfile.debuginfo",
"com.oracle.objectfile.elf",
"com.oracle.objectfile.elf.dwarf",
"com.oracle.objectfile.elf.dwarf.constants",
"com.oracle.objectfile.io",
"com.oracle.objectfile.macho",
"com.oracle.objectfile.pecoff",
"com.oracle.objectfile.pecoff.cv"
],
"org.graalvm.nativeimage:pointsto": [
"com.oracle.graal.pointsto",
"com.oracle.graal.pointsto.api",
"com.oracle.graal.pointsto.constraints",
"com.oracle.graal.pointsto.flow",
"com.oracle.graal.pointsto.flow.builder",
"com.oracle.graal.pointsto.flow.context",
"com.oracle.graal.pointsto.flow.context.bytecode",
"com.oracle.graal.pointsto.flow.context.object",
"com.oracle.graal.pointsto.heap",
"com.oracle.graal.pointsto.heap.value",
"com.oracle.graal.pointsto.infrastructure",
"com.oracle.graal.pointsto.meta",
"com.oracle.graal.pointsto.nodes",
"com.oracle.graal.pointsto.phases",
"com.oracle.graal.pointsto.plugins",
"com.oracle.graal.pointsto.reports",
"com.oracle.graal.pointsto.results",
"com.oracle.graal.pointsto.typestate",
"com.oracle.graal.pointsto.typestore",
"com.oracle.graal.pointsto.util"
],
"org.graalvm.nativeimage:svm": [
"com.oracle.graal.reachability",
"com.oracle.svm.core",
"com.oracle.svm.core.aarch64",
"com.oracle.svm.core.allocationprofile",
"com.oracle.svm.core.amd64",
"com.oracle.svm.core.bootstrap",
"com.oracle.svm.core.c",
"com.oracle.svm.core.c.enums",
"com.oracle.svm.core.c.function",
"com.oracle.svm.core.c.libc",
"com.oracle.svm.core.c.struct",
"com.oracle.svm.core.classinitialization",
"com.oracle.svm.core.code",
"com.oracle.svm.core.collections",
"com.oracle.svm.core.config",
"com.oracle.svm.core.configure",
"com.oracle.svm.core.cpufeature",
"com.oracle.svm.core.deopt",
"com.oracle.svm.core.feature",
"com.oracle.svm.core.fieldvaluetransformer",
"com.oracle.svm.core.genscavenge",
"com.oracle.svm.core.genscavenge.compacting",
"com.oracle.svm.core.genscavenge.graal",
"com.oracle.svm.core.genscavenge.graal.nodes",
"com.oracle.svm.core.genscavenge.jvmstat",
"com.oracle.svm.core.genscavenge.remset",
"com.oracle.svm.core.graal",
"com.oracle.svm.core.graal.aarch64",
"com.oracle.svm.core.graal.amd64",
"com.oracle.svm.core.graal.code",
"com.oracle.svm.core.graal.jdk",
"com.oracle.svm.core.graal.lir",
"com.oracle.svm.core.graal.meta",
"com.oracle.svm.core.graal.nodes",
"com.oracle.svm.core.graal.nodes.aarch64",
"com.oracle.svm.core.graal.phases",
"com.oracle.svm.core.graal.replacements",
"com.oracle.svm.core.graal.riscv64",
"com.oracle.svm.core.graal.snippets",
"com.oracle.svm.core.graal.snippets.aarch64",
"com.oracle.svm.core.graal.snippets.amd64",
"com.oracle.svm.core.graal.snippets.riscv64",
"com.oracle.svm.core.graal.stackvalue",
"com.oracle.svm.core.graal.thread",
"com.oracle.svm.core.graal.word",
"com.oracle.svm.core.handles",
"com.oracle.svm.core.headers",
"com.oracle.svm.core.heap",
"com.oracle.svm.core.heap.dump",
"com.oracle.svm.core.hub",
"com.oracle.svm.core.identityhashcode",
"com.oracle.svm.core.image",
"com.oracle.svm.core.imagelayer",
"com.oracle.svm.core.invoke",
"com.oracle.svm.core.jdk",
"com.oracle.svm.core.jdk.localization",
"com.oracle.svm.core.jdk.localization.bundles",
"com.oracle.svm.core.jdk.localization.compression",
"com.oracle.svm.core.jdk.localization.compression.utils",
"com.oracle.svm.core.jdk.localization.substitutions",
"com.oracle.svm.core.jdk.localization.substitutions.modes",
"com.oracle.svm.core.jdk.management",
"com.oracle.svm.core.jdk.proxy",
"com.oracle.svm.core.jdk.resources",
"com.oracle.svm.core.jdk.resources.CompressedGlobTrie",
"com.oracle.svm.core.jdk.xml",
"com.oracle.svm.core.jfr",
"com.oracle.svm.core.jfr.events",
"com.oracle.svm.core.jfr.logging",
"com.oracle.svm.core.jfr.oldobject",
"com.oracle.svm.core.jfr.sampler",
"com.oracle.svm.core.jfr.throttling",
"com.oracle.svm.core.jfr.traceid",
"com.oracle.svm.core.jfr.utils",
"com.oracle.svm.core.jni",
"com.oracle.svm.core.jni.access",
"com.oracle.svm.core.jni.functions",
"com.oracle.svm.core.jni.headers",
"com.oracle.svm.core.jvmstat",
"com.oracle.svm.core.layeredimagesingleton",
"com.oracle.svm.core.locks",
"com.oracle.svm.core.log",
"com.oracle.svm.core.memory",
"com.oracle.svm.core.meta",
"com.oracle.svm.core.methodhandles",
"com.oracle.svm.core.monitor",
"com.oracle.svm.core.nmt",
"com.oracle.svm.core.nodes",
"com.oracle.svm.core.option",
"com.oracle.svm.core.os",
"com.oracle.svm.core.posix",
"com.oracle.svm.core.posix.aarch64",
"com.oracle.svm.core.posix.amd64",
"com.oracle.svm.core.posix.darwin",
"com.oracle.svm.core.posix.headers",
"com.oracle.svm.core.posix.headers.darwin",
"com.oracle.svm.core.posix.headers.linux",
"com.oracle.svm.core.posix.jvmstat",
"com.oracle.svm.core.posix.linux",
"com.oracle.svm.core.posix.pthread",
"com.oracle.svm.core.posix.riscv64",
"com.oracle.svm.core.posix.thread",
"com.oracle.svm.core.properties",
"com.oracle.svm.core.reflect",
"com.oracle.svm.core.reflect.fieldaccessor",
"com.oracle.svm.core.reflect.proxy",
"com.oracle.svm.core.reflect.serialize",
"com.oracle.svm.core.reflect.target",
"com.oracle.svm.core.riscv64",
"com.oracle.svm.core.sampler",
"com.oracle.svm.core.snippets",
"com.oracle.svm.core.stack",
"com.oracle.svm.core.thread",
"com.oracle.svm.core.threadlocal",
"com.oracle.svm.core.util",
"com.oracle.svm.core.util.coder",
"com.oracle.svm.core.windows",
"com.oracle.svm.core.windows.headers",
"com.oracle.svm.graal",
"com.oracle.svm.graal.aarch64",
"com.oracle.svm.graal.amd64",
"com.oracle.svm.graal.hosted",
"com.oracle.svm.graal.hosted.runtimecompilation",
"com.oracle.svm.graal.isolated",
"com.oracle.svm.graal.meta",
"com.oracle.svm.graal.meta.aarch64",
"com.oracle.svm.graal.meta.amd64",
"com.oracle.svm.graal.stubs",
"com.oracle.svm.graal.substitutions",
"com.oracle.svm.hosted",
"com.oracle.svm.hosted.ameta",
"com.oracle.svm.hosted.analysis",
"com.oracle.svm.hosted.analysis.flow",
"com.oracle.svm.hosted.annotation",
"com.oracle.svm.hosted.c",
"com.oracle.svm.hosted.c.codegen",
"com.oracle.svm.hosted.c.function",
"com.oracle.svm.hosted.c.info",
"com.oracle.svm.hosted.c.libc",
"com.oracle.svm.hosted.c.query",
"com.oracle.svm.hosted.c.util",
"com.oracle.svm.hosted.cenum",
"com.oracle.svm.hosted.classinitialization",
"com.oracle.svm.hosted.code",
"com.oracle.svm.hosted.code.aarch64",
"com.oracle.svm.hosted.code.amd64",
"com.oracle.svm.hosted.config",
"com.oracle.svm.hosted.dashboard",
"com.oracle.svm.hosted.diagnostic",
"com.oracle.svm.hosted.fieldfolding",
"com.oracle.svm.hosted.heap",
"com.oracle.svm.hosted.image",
"com.oracle.svm.hosted.image.sources",
"com.oracle.svm.hosted.imagelayer",
"com.oracle.svm.hosted.javafx",
"com.oracle.svm.hosted.jdk",
"com.oracle.svm.hosted.jdk.localization",
"com.oracle.svm.hosted.jfr",
"com.oracle.svm.hosted.jni",
"com.oracle.svm.hosted.lambda",
"com.oracle.svm.hosted.meta",
"com.oracle.svm.hosted.methodhandles",
"com.oracle.svm.hosted.nodes",
"com.oracle.svm.hosted.option",
"com.oracle.svm.hosted.phases",
"com.oracle.svm.hosted.reflect",
"com.oracle.svm.hosted.reflect.proxy",
"com.oracle.svm.hosted.reflect.serialize",
"com.oracle.svm.hosted.snippets",
"com.oracle.svm.hosted.substitute",
"com.oracle.svm.hosted.thread",
"com.oracle.svm.hosted.util",
"com.oracle.svm.hosted.xml"
],
"org.graalvm.polyglot:polyglot": [
"org.graalvm.home",
"org.graalvm.home.impl",
"org.graalvm.options",
"org.graalvm.polyglot",
"org.graalvm.polyglot.impl",
"org.graalvm.polyglot.io",
"org.graalvm.polyglot.management",
"org.graalvm.polyglot.proxy"
],
"org.graalvm.sdk:collections": [
"org.graalvm.collections"
],
"org.graalvm.sdk:graal-sdk": [
"org.graalvm.sdk"
],
"org.graalvm.sdk:nativeimage": [
"com.oracle.svm.core.annotate",
"org.graalvm.nativeimage",
"org.graalvm.nativeimage.c",
"org.graalvm.nativeimage.c.constant",
"org.graalvm.nativeimage.c.function",
"org.graalvm.nativeimage.c.struct",
"org.graalvm.nativeimage.c.type",
"org.graalvm.nativeimage.hosted",
"org.graalvm.nativeimage.impl",
"org.graalvm.nativeimage.impl.clinit"
],
"org.graalvm.sdk:word": [
"org.graalvm.word",
"org.graalvm.word.impl"
],
"org.graalvm.truffle:truffle-compiler": [
"com.oracle.truffle.compiler",
"com.oracle.truffle.compiler.hotspot",
"com.oracle.truffle.compiler.hotspot.libgraal"
]
},
"repositories": {
"https://repo1.maven.org/maven2/": [
"org.graalvm.compiler:compiler",
"org.graalvm.nativeimage:native-image-base",
"org.graalvm.nativeimage:objectfile",
"org.graalvm.nativeimage:pointsto",
"org.graalvm.nativeimage:svm",
"org.graalvm.polyglot:polyglot",
"org.graalvm.sdk:collections",
"org.graalvm.sdk:graal-sdk",
"org.graalvm.sdk:nativeimage",
"org.graalvm.sdk:word",
"org.graalvm.truffle:truffle-compiler"
],
"https://maven.google.com/": [
"org.graalvm.compiler:compiler",
"org.graalvm.nativeimage:native-image-base",
"org.graalvm.nativeimage:objectfile",
"org.graalvm.nativeimage:pointsto",
"org.graalvm.nativeimage:svm",
"org.graalvm.polyglot:polyglot",
"org.graalvm.sdk:collections",
"org.graalvm.sdk:graal-sdk",
"org.graalvm.sdk:nativeimage",
"org.graalvm.sdk:word",
"org.graalvm.truffle:truffle-compiler"
]
},
"services": {
"org.graalvm.compiler:compiler": {
"jdk.graal.compiler.code.DisassemblerProvider": [
"jdk.graal.compiler.code.HexCodeFileDisassemblerProvider",
"jdk.graal.compiler.code.ObjdumpDisassemblerProvider"
],
"jdk.graal.compiler.core.common.CompilerProfiler": [
"jdk.graal.compiler.hotspot.JFRCompilerProfiler"
],
"jdk.graal.compiler.core.match.MatchStatementSet": [
"jdk.graal.compiler.core.aarch64.AArch64NodeMatchRules_MatchStatementSet",
"jdk.graal.compiler.core.amd64.AMD64NodeMatchRules_MatchStatementSet"
],
"jdk.graal.compiler.debug.DebugHandlersFactory": [
"jdk.graal.compiler.printer.GraalDebugHandlersFactory",
"jdk.graal.compiler.truffle.TruffleDebugHandlersFactory"
],
"jdk.graal.compiler.debug.TTYStreamProvider": [
"jdk.graal.compiler.hotspot.HotSpotTTYStreamProvider"
],
"jdk.graal.compiler.hotspot.CompilerConfigurationFactory": [
"jdk.graal.compiler.hotspot.CommunityCompilerConfigurationFactory",
"jdk.graal.compiler.hotspot.EconomyCompilerConfigurationFactory",
"jdk.graal.compiler.truffle.hotspot.TruffleCommunityCompilerConfigurationFactory"
],
"jdk.graal.compiler.hotspot.HotSpotBackendFactory": [
"jdk.graal.compiler.hotspot.aarch64.AArch64HotSpotBackendFactory",
"jdk.graal.compiler.hotspot.amd64.AMD64HotSpotBackendFactory",
"jdk.graal.compiler.hotspot.riscv64.RISCV64HotSpotBackendFactory"
],
"jdk.graal.compiler.nodes.graphbuilderconf.GeneratedPluginFactory": [
"jdk.graal.compiler.core.amd64.PluginFactory_ReadProtectionKeyRegisterNode",
"jdk.graal.compiler.core.amd64.PluginFactory_WriteProtectionKeyRegisterNode",
"jdk.graal.compiler.hotspot.PluginFactory_HotSpotBackend",
"jdk.graal.compiler.hotspot.amd64.PluginFactory_AMD64X87MathIntrinsicNode",
"jdk.graal.compiler.hotspot.amd64.PluginFactory_AMD64X87MathSnippets",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_AllocaNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_BeginLockScopeNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_CurrentJavaThreadNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_CurrentLockNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_DeoptimizeCallerNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_DeoptimizeWithExceptionInCallerNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_EndLockScopeNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_FastAcquireBiasedLockNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_JumpToExceptionHandlerInCallerNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_JumpToExceptionHandlerNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_MonitorCounterNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_PatchReturnAddressNode",
"jdk.graal.compiler.hotspot.nodes.PluginFactory_VMErrorNode",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_AssertionSnippets",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_ClassGetHubNode",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_DigestBaseSnippets",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_HotSpotAllocationSnippets",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_HotSpotReplacementsUtil",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_HubGetClassNode",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_Log",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_MonitorSnippets",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_ObjectSnippets",
"jdk.graal.compiler.hotspot.replacements.PluginFactory_TypeCheckSnippetUtils",
"jdk.graal.compiler.hotspot.replacements.arraycopy.PluginFactory_CheckcastArrayCopyCallNode",
"jdk.graal.compiler.hotspot.replacements.arraycopy.PluginFactory_GenericArrayCopyCallNode",
"jdk.graal.compiler.hotspot.stubs.PluginFactory_CreateExceptionStub",
"jdk.graal.compiler.hotspot.stubs.PluginFactory_ExceptionHandlerStub",
"jdk.graal.compiler.hotspot.stubs.PluginFactory_ForeignCallSnippets",
"jdk.graal.compiler.hotspot.stubs.PluginFactory_LookUpSecondarySupersTableStub",
"jdk.graal.compiler.hotspot.stubs.PluginFactory_StubUtil",
"jdk.graal.compiler.hotspot.stubs.PluginFactory_UnwindExceptionToCallerStub",
"jdk.graal.compiler.nodes.PluginFactory_BreakpointNode",
"jdk.graal.compiler.nodes.PluginFactory_ComputeObjectAddressNode",
"jdk.graal.compiler.nodes.PluginFactory_DeoptimizeNode",
"jdk.graal.compiler.nodes.PluginFactory_GetObjectAddressNode",
"jdk.graal.compiler.nodes.PluginFactory_PauseNode",
"jdk.graal.compiler.nodes.PluginFactory_PiArrayNode",
"jdk.graal.compiler.nodes.PluginFactory_PiNode",
"jdk.graal.compiler.nodes.PluginFactory_PrefetchAllocateNode",
"jdk.graal.compiler.nodes.PluginFactory_SnippetAnchorNode",
"jdk.graal.compiler.nodes.PluginFactory_UnreachableNode",
"jdk.graal.compiler.nodes.debug.PluginFactory_DynamicCounterNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_BranchProbabilityNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_FixedValueAnchorNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_GuardedUnsafeLoadNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_MembarNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_NullCheckNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_RawLoadNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_RawStoreNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_SpeculationFenceNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_StoreHubNode",
"jdk.graal.compiler.nodes.extended.PluginFactory_UnsafeCopyNode",
"jdk.graal.compiler.nodes.java.PluginFactory_ArrayLengthNode",
"jdk.graal.compiler.nodes.java.PluginFactory_DynamicNewArrayNode",
"jdk.graal.compiler.nodes.java.PluginFactory_InstanceOfNode",
"jdk.graal.compiler.nodes.java.PluginFactory_LoweredRegisterFinalizerNode",
"jdk.graal.compiler.nodes.java.PluginFactory_NewArrayNode",
"jdk.graal.compiler.nodes.memory.PluginFactory_MemoryAnchorNode",
"jdk.graal.compiler.nodes.memory.address.PluginFactory_OffsetAddressNode",
"jdk.graal.compiler.replacements.PluginFactory_DimensionsNode",
"jdk.graal.compiler.replacements.PluginFactory_ReplacementsUtil",
"jdk.graal.compiler.replacements.PluginFactory_SnippetCounterNode",
"jdk.graal.compiler.replacements.PluginFactory_StringLatin1InflateNode",
"jdk.graal.compiler.replacements.PluginFactory_StringUTF16CompressNode",
"jdk.graal.compiler.replacements.aarch64.PluginFactory_AArch64IntegerArithmeticSnippets",
"jdk.graal.compiler.replacements.arraycopy.PluginFactory_ArrayCopyCallNode",
"jdk.graal.compiler.replacements.arraycopy.PluginFactory_ArrayCopyWithDelayedLoweringNode",
"jdk.graal.compiler.replacements.gc.PluginFactory_G1WriteBarrierSnippets",
"jdk.graal.compiler.replacements.nodes.PluginFactory_AESNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayCompareToNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayCopyWithConversionsNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayEqualsNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayIndexOfNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayRegionCompareToNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayRegionEqualsNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ArrayRegionEqualsWithMaskNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_AssertionNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_BigIntegerMulAddNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_BigIntegerMultiplyToLenNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_BigIntegerSquareToLenNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_BinaryMathIntrinsicNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_CStringConstant",
"jdk.graal.compiler.replacements.nodes.PluginFactory_CalcStringAttributesNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_CipherBlockChainingAESNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_CountPositivesNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_CounterModeAESNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_EncodeArrayNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ExplodeLoopNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_FallbackInvokeWithExceptionNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_GHASHProcessBlocksNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_MessageDigestNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_UnaryMathIntrinsicNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_VectorizedHashCodeNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_VectorizedMismatchNode",
"jdk.graal.compiler.replacements.nodes.PluginFactory_ZeroMemoryNode",
"jdk.graal.compiler.truffle.hotspot.PluginFactory_HotSpotTruffleSafepointLoweringSnippet",
"jdk.graal.compiler.truffle.nodes.PluginFactory_IsCompilationConstantNode",
"jdk.graal.compiler.truffle.nodes.frame.PluginFactory_ForceMaterializeNode"
],
"jdk.graal.compiler.options.OptionDescriptors": [
"jdk.graal.compiler.asm.amd64.AMD64Assembler_OptionDescriptors",
"jdk.graal.compiler.code.DataSection_OptionDescriptors",
"jdk.graal.compiler.code.ObjdumpDisassemblerProvider_OptionDescriptors",
"jdk.graal.compiler.core.CompilationWatchDog_OptionDescriptors",
"jdk.graal.compiler.core.GraalCompilerOptions_OptionDescriptors",
"jdk.graal.compiler.core.common.GraalOptions_OptionDescriptors",
"jdk.graal.compiler.core.common.SpectrePHTMitigations_OptionDescriptors",
"jdk.graal.compiler.core.common.spi.JavaConstantFieldProvider_OptionDescriptors",
"jdk.graal.compiler.core.common.util.CompilationAlarm_OptionDescriptors",
"jdk.graal.compiler.core.phases.HighTier_OptionDescriptors",
"jdk.graal.compiler.core.phases.LowTier_OptionDescriptors",
"jdk.graal.compiler.debug.Assertions_OptionDescriptors",
"jdk.graal.compiler.debug.DebugOptions_OptionDescriptors",
"jdk.graal.compiler.graph.Graph_OptionDescriptors",
"jdk.graal.compiler.hotspot.BootstrapWatchDog_OptionDescriptors",
"jdk.graal.compiler.hotspot.CompilationCounters_OptionDescriptors",
"jdk.graal.compiler.hotspot.CompilationStatistics_OptionDescriptors",
"jdk.graal.compiler.hotspot.CompilationTask_OptionDescriptors",
"jdk.graal.compiler.hotspot.CompilerConfigurationFactory_OptionDescriptors",
"jdk.graal.compiler.hotspot.HotSpotBackend_OptionDescriptors",
"jdk.graal.compiler.hotspot.HotSpotCompiledCodeBuilder_OptionDescriptors",
"jdk.graal.compiler.hotspot.HotSpotGraalCompilerFactory_OptionDescriptors",
"jdk.graal.compiler.hotspot.HotSpotTTYStreamProvider_OptionDescriptors",
"jdk.graal.compiler.hotspot.ProfileReplaySupport_OptionDescriptors",
"jdk.graal.compiler.hotspot.debug.BenchmarkCounters_OptionDescriptors",
"jdk.graal.compiler.hotspot.meta.HotSpotExceptionDispatchPlugin_OptionDescriptors",
"jdk.graal.compiler.hotspot.meta.HotSpotGraphBuilderPlugins_OptionDescriptors",
"jdk.graal.compiler.hotspot.phases.OnStackReplacementPhase_OptionDescriptors",
"jdk.graal.compiler.hotspot.replacements.HotspotSnippetsOptions_OptionDescriptors",
"jdk.graal.compiler.hotspot.stubs.CreateExceptionStub_OptionDescriptors",
"jdk.graal.compiler.hotspot.stubs.StubOptions_OptionDescriptors",
"jdk.graal.compiler.java.BciBlockMapping_OptionDescriptors",
"jdk.graal.compiler.java.BytecodeParserOptions_OptionDescriptors",
"jdk.graal.compiler.lir.ComputeCodeEmissionOrder_OptionDescriptors",
"jdk.graal.compiler.lir.alloc.lsra.LinearScanEliminateSpillMovePhase_OptionDescriptors",
"jdk.graal.compiler.lir.alloc.lsra.LinearScan_OptionDescriptors",
"jdk.graal.compiler.lir.alloc.lsra.OptimizingLinearScanWalker_OptionDescriptors",
"jdk.graal.compiler.lir.amd64.phases.StackMoveOptimizationPhase_OptionDescriptors",
"jdk.graal.compiler.lir.asm.CompilationResultBuilderFactory_OptionDescriptors",
"jdk.graal.compiler.lir.asm.CompilationResultBuilder_OptionDescriptors",
"jdk.graal.compiler.lir.constopt.ConstantLoadOptimization_OptionDescriptors",
"jdk.graal.compiler.lir.gen.LIRGenerator_OptionDescriptors",
"jdk.graal.compiler.lir.phases.LIRPhase_OptionDescriptors",
"jdk.graal.compiler.lir.phases.PostAllocationOptimizationStage_OptionDescriptors",
"jdk.graal.compiler.lir.profiling.MoveProfilingPhase_OptionDescriptors",
"jdk.graal.compiler.lir.stackslotalloc.LSStackSlotAllocator_OptionDescriptors",
"jdk.graal.compiler.loop.phases.LoopFullUnrollPhase_OptionDescriptors",
"jdk.graal.compiler.loop.phases.LoopPeelingPhase_OptionDescriptors",
"jdk.graal.compiler.loop.phases.LoopSafepointEliminationPhase_OptionDescriptors",
"jdk.graal.compiler.nodes.cfg.ControlFlowGraph_OptionDescriptors",
"jdk.graal.compiler.nodes.graphbuilderconf.InvocationPlugins_OptionDescriptors",
"jdk.graal.compiler.nodes.loop.DefaultLoopPolicies_OptionDescriptors",
"jdk.graal.compiler.nodes.loop.LoopPolicies_OptionDescriptors",
"jdk.graal.compiler.nodes.util.GraphUtil_OptionDescriptors",
"jdk.graal.compiler.phases.BasePhase_OptionDescriptors",
"jdk.graal.compiler.phases.PhaseSuite_OptionDescriptors",
"jdk.graal.compiler.phases.common.CanonicalizerPhase_OptionDescriptors",
"jdk.graal.compiler.phases.common.ConditionalEliminationPhase_OptionDescriptors",
"jdk.graal.compiler.phases.common.DeadCodeEliminationPhase_OptionDescriptors",
"jdk.graal.compiler.phases.common.LoweringPhase_OptionDescriptors",
"jdk.graal.compiler.phases.common.UseTrappingNullChecksPhase_OptionDescriptors",
"jdk.graal.compiler.phases.common.inlining.InliningPhase_OptionDescriptors",
"jdk.graal.compiler.phases.common.util.OptimizationUtility_OptionDescriptors",
"jdk.graal.compiler.printer.NoDeadCodeVerifyHandler_OptionDescriptors",
"jdk.graal.compiler.replacements.PEGraphDecoder_OptionDescriptors",
"jdk.graal.compiler.replacements.SnippetTemplate_OptionDescriptors",
"jdk.graal.compiler.truffle.host.HostInliningPhase_OptionDescriptors",
"jdk.graal.compiler.truffle.host.InjectImmutableFrameFieldsPhase_OptionDescriptors",
"jdk.graal.compiler.truffle.hotspot.HotSpotTruffleCompilerImpl_OptionDescriptors",
"jdk.graal.compiler.truffle.substitutions.TruffleGraphBuilderPlugins_OptionDescriptors",
"jdk.graal.compiler.virtual.phases.ea.PartialEscapePhase_OptionDescriptors"
],
"jdk.graal.compiler.truffle.PartialEvaluatorConfiguration": [
"jdk.graal.compiler.truffle.CommunityPartialEvaluatorConfiguration",
"jdk.graal.compiler.truffle.EconomyPartialEvaluatorConfiguration"
],
"jdk.graal.compiler.truffle.host.TruffleHostEnvironment$Lookup": [
"jdk.graal.compiler.truffle.hotspot.HotSpotTruffleHostEnvironmentLookup"
],
"jdk.graal.compiler.truffle.hotspot.TruffleCallBoundaryInstrumentationFactory": [
"jdk.graal.compiler.truffle.hotspot.aarch64.AArch64TruffleCallBoundaryInstrumentationFactory",
"jdk.graal.compiler.truffle.hotspot.amd64.AMD64TruffleCallBoundaryInstrumentationFactory"
],
"jdk.graal.compiler.truffle.phases.inlining.InliningPolicyProvider": [
"jdk.graal.compiler.truffle.phases.inlining.DefaultInliningPolicyProvider",
"jdk.graal.compiler.truffle.phases.inlining.NoInliningPolicyProvider",
"jdk.graal.compiler.truffle.phases.inlining.TrivialOnlyPolicyProvider"
],
"jdk.vm.ci.services.JVMCIServiceLocator": [
"jdk.graal.compiler.hotspot.HotSpotGraalJVMCIServiceLocator"
]
},
"org.graalvm.nativeimage:native-image-base": {
"jdk.graal.compiler.options.OptionDescriptors": [
"com.oracle.svm.common.option.CommonOptions_OptionDescriptors",
"com.oracle.svm.util.ImageBuildStatistics_OptionDescriptors"
]
},
"org.graalvm.nativeimage:pointsto": {
"jdk.graal.compiler.options.OptionDescriptors": [
"com.oracle.graal.pointsto.api.PointstoOptions_OptionDescriptors",
"com.oracle.graal.pointsto.heap.HeapSnapshotVerifier_OptionDescriptors",
"com.oracle.graal.pointsto.phases.InlineBeforeAnalysis_OptionDescriptors",
"com.oracle.graal.pointsto.reports.AnalysisReportsOptions_OptionDescriptors",
"com.oracle.graal.pointsto.results.StrengthenGraphs_OptionDescriptors"
]
},
"org.graalvm.nativeimage:svm": {
"com.oracle.svm.core.feature.AutomaticallyRegisteredFeatureServiceRegistration": [
"com.oracle.svm.core.DumpRuntimeCompilationOnSignalFeature_ServiceRegistration",
"com.oracle.svm.core.DumpThreadStacksOnSignalFeature_ServiceRegistration",
"com.oracle.svm.core.IsolateArgumentParserFeature_ServiceRegistration",
"com.oracle.svm.core.IsolateListenerFeature_ServiceRegistration",
"com.oracle.svm.core.IsolateListenerSupportFeature_ServiceRegistration",
"com.oracle.svm.core.ProcessorFeature_ServiceRegistration",
"com.oracle.svm.core.RuntimeAssertionsSupportFeature_ServiceRegistration",
"com.oracle.svm.core.StaticFieldsFeature_ServiceRegistration",
"com.oracle.svm.core.StaticFieldsSupportFeature_ServiceRegistration",
"com.oracle.svm.core.SubstrateControlFlowIntegrityFeature_ServiceRegistration",
"com.oracle.svm.core.SubstrateDiagnosticsOptionsFeature_ServiceRegistration",
"com.oracle.svm.core.SubstrateExitHandlerFeature_ServiceRegistration",
"com.oracle.svm.core.SubstrateSegfaultHandlerFeature_ServiceRegistration",
"com.oracle.svm.core.UniqueShortNameProviderDefaultImplFeature_ServiceRegistration",
"com.oracle.svm.core.UnsafeMemoryUtilFeature_ServiceRegistration",
"com.oracle.svm.core.aarch64.AArch64FrameAccessFeature_ServiceRegistration",
"com.oracle.svm.core.allocationprofile.AllocationProfilingFeature_ServiceRegistration",
"com.oracle.svm.core.amd64.AMD64FrameAccessFeature_ServiceRegistration",
"com.oracle.svm.core.bootstrap.BootstrapMethodConfiguration_ServiceRegistration",
"com.oracle.svm.core.c.CIsolateDataStorageFeature_ServiceRegistration",
"com.oracle.svm.core.c.CTypeConversionSupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.c.ProjectHeaderFileHeaderResolversRegistryFeature_ServiceRegistration",
"com.oracle.svm.core.c.RegisterSVMTestingResolverFeature_ServiceRegistration",
"com.oracle.svm.core.c.function.IsolateSupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.code.CodeInfoFeature_ServiceRegistration",
"com.oracle.svm.core.code.InstalledCodeObserverSupportFeature_ServiceRegistration",
"com.oracle.svm.core.code.RuntimeMetadataDecoderImplFeature_ServiceRegistration",
"com.oracle.svm.core.code.RuntimeMetadataDecoderImplMetadataAccessorImplFeature_ServiceRegistration",
"com.oracle.svm.core.code.RuntimeMetadataEncodingFeature_ServiceRegistration",
"com.oracle.svm.core.cpufeature.RuntimeCPUFeatureCheckFeature_ServiceRegistration",
"com.oracle.svm.core.cpufeature.RuntimeCPUFeatureCheckImplFeature_ServiceRegistration",
"com.oracle.svm.core.genscavenge.JfrGCEventFeature_ServiceRegistration",
"com.oracle.svm.core.genscavenge.PinnedObjectImplPinnedObjectSupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.genscavenge.graal.GenScavengeGCFeature_ServiceRegistration",
"com.oracle.svm.core.graal.aarch64.AArch64NativePatchConsumerFactoryFeature_ServiceRegistration",
"com.oracle.svm.core.graal.aarch64.SubstrateAArch64Feature_ServiceRegistration",
"com.oracle.svm.core.graal.amd64.AMD64NativePatchConsumerFactoryFeature_ServiceRegistration",
"com.oracle.svm.core.graal.amd64.SubstrateAMD64Feature_ServiceRegistration",
"com.oracle.svm.core.graal.jdk.JDKIntrinsicsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.riscv64.SubstrateRISCV64Feature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.CFunctionSnippetsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.DeoptSnippetsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.ExceptionFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.SafepointFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.StackOverflowCheckFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.aarch64.AArch64ArithmeticForeignCallsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.aarch64.AArch64SnippetsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.amd64.AMD64SnippetsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.snippets.riscv64.RISCV64SnippetsFeature_ServiceRegistration",
"com.oracle.svm.core.graal.stackvalue.StackValueFeature_ServiceRegistration",
"com.oracle.svm.core.handles.ObjectHandlesSupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.handles.PinnedPrimitiveArrayViewFeature_ServiceRegistration",
"com.oracle.svm.core.heap.AllocationFeature_ServiceRegistration",
"com.oracle.svm.core.heap.GCCauseFeature_ServiceRegistration",
"com.oracle.svm.core.heap.GCCauseSupportFeature_ServiceRegistration",
"com.oracle.svm.core.heap.HostedHeapSizeVerifierFeature_ServiceRegistration",
"com.oracle.svm.core.heap.ReferenceAccessFeature_ServiceRegistration",
"com.oracle.svm.core.heap.ReferenceHandlerThreadFeature_ServiceRegistration",
"com.oracle.svm.core.heap.VMOperationInfosFeature_ServiceRegistration",
"com.oracle.svm.core.heap.VMOperationNamesFeatures_ServiceRegistration",
"com.oracle.svm.core.hub.ClassForNameSupportFeature_ServiceRegistration",
"com.oracle.svm.core.hub.DynamicHubSupportFeature_ServiceRegistration",
"com.oracle.svm.core.identityhashcode.SubstrateIdentityHashCodeFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.ClassLoaderSupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.ClassValueSupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.CompletableFutureFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.FileSystemProviderFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.ForkJoinPoolFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.InnocuousForkJoinWorkerThreadFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.JRTDisableFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.JavaNetFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.JavaNetHttpFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.NativeLibrarySupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.PlatformNativeLibrarySupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.ResourcesFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.RuntimeFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.RuntimeSupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.ServiceCatalogSupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.SimpleWebServerFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.StringInternSupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.TimeZoneFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.TrustStoreManagerFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.URLProtocolsSupportFeature_ServiceRegistration",
"com.oracle.svm.core.jdk.management.ManagementFeature_ServiceRegistration",
"com.oracle.svm.core.jfr.JfrFeature_ServiceRegistration",
"com.oracle.svm.core.jfr.sampler.JfrNoExecutionSamplerFeature_ServiceRegistration",
"com.oracle.svm.core.jfr.sampler.JfrRecurringCallbackExecutionSamplerFeature_ServiceRegistration",
"com.oracle.svm.core.jvmstat.PerfDataFeature_ServiceRegistration",
"com.oracle.svm.core.locks.VMLockFeature_ServiceRegistration",
"com.oracle.svm.core.memory.UnmanagedMemorySupportFeature_ServiceRegistration",
"com.oracle.svm.core.meta.SubstrateObjectConstantEqualityFeature_ServiceRegistration",
"com.oracle.svm.core.monitor.MonitorFeature_ServiceRegistration",
"com.oracle.svm.core.nmt.NmtFeature_ServiceRegistration",
"com.oracle.svm.core.option.RuntimeOptionsSupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.option.ValidateImageBuildOptionsFeature_ServiceRegistration",
"com.oracle.svm.core.os.BufferedFileOperationFeature_ServiceRegistration",
"com.oracle.svm.core.os.ImageHeapProviderFeature_ServiceRegistration",
"com.oracle.svm.core.os.OSCommittedMemoryProviderFeature_ServiceRegistration",
"com.oracle.svm.core.posix.IgnoreSignalsFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixLibMSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixLoadAverageSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixLogHandlerFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixNativeLibraryFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixPlatformTimeUtilsFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixRawFileOperationFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixSubstrateSegfaultHandlerFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixSubstrateSigProfHandlerFeature_ServiceRegistration",
"com.oracle.svm.core.posix.PosixVirtualMemoryProviderFeature_ServiceRegistration",
"com.oracle.svm.core.posix.aarch64.AArch64DarwinUContextRegisterDumperFeature_ServiceRegistration",
"com.oracle.svm.core.posix.aarch64.AArch64LinuxUContextRegisterDumperFeature_ServiceRegistration",
"com.oracle.svm.core.posix.amd64.AMD64DarwinUContextRegisterDumperFeature_ServiceRegistration",
"com.oracle.svm.core.posix.amd64.AMD64LinuxUContextRegisterDumperFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinImageSingletonsFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinLibCSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinProcessPropertiesSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinStackOverflowSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinSystemPropertiesFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinThreadCpuTimeSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinTimeUtilFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.DarwinVMLockSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.darwin.PhysicalMemorySupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.posix.jvmstat.PosixPerfMemoryFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.DumpLinuxOSInfoFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxImageSingletonsFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxPhysicalMemorySupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxProcessPropertiesSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxStackOverflowSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxSystemPropertiesFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxThreadCpuTimeSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.linux.LinuxVMLockSupportFeature_ServiceRegistration",
"com.oracle.svm.core.posix.riscv64.RISCV64LinuxUContextRegisterDumperFeature_ServiceRegistration",
"com.oracle.svm.core.posix.thread.PosixParkerFactoryFeature_ServiceRegistration",
"com.oracle.svm.core.posix.thread.PosixPlatformThreadsFeature_ServiceRegistration",
"com.oracle.svm.core.posix.thread.PosixVMThreadsFeature_ServiceRegistration",
"com.oracle.svm.core.posix.thread.PosixVMThreadsPosixThreadLookupFeature_ServiceRegistration",
"com.oracle.svm.core.riscv64.RISCV64FrameAccessFeature_ServiceRegistration",
"com.oracle.svm.core.stack.JavaFrameAnchorsFeature_ServiceRegistration",
"com.oracle.svm.core.thread.ContinuationsFeature_ServiceRegistration",
"com.oracle.svm.core.thread.SafepointListenerSupportFeature_ServiceRegistration",
"com.oracle.svm.core.thread.SafepointMasterFeature_ServiceRegistration",
"com.oracle.svm.core.thread.ThreadListenerSupportFeature_ServiceRegistration",
"com.oracle.svm.core.thread.ThreadLookupFeature_ServiceRegistration",
"com.oracle.svm.core.thread.ThreadingSupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.thread.VMOperationControlFeature_ServiceRegistration",
"com.oracle.svm.core.thread.VMOperationListenerSupportFeature_ServiceRegistration",
"com.oracle.svm.core.threadlocal.VMThreadLocalInfosFeature_ServiceRegistration",
"com.oracle.svm.core.util.CounterFeature_ServiceRegistration",
"com.oracle.svm.core.util.HostedStringDeduplicationFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsAPIsSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsLibCSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsLibMSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsNativeLibraryFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsNativeLibrarySupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsParkerFactoryFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsPhysicalMemorySupportImplFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsPlatformThreadsFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsPlatformTimeUtilsFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsProcessPropertiesSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsRegisterDumperFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsStackOverflowSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsSubstrateSegfaultHandlerFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsSystemPropertiesFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsThreadCpuTimeSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsVMLockSupportFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsVMThreadsFeature_ServiceRegistration",
"com.oracle.svm.core.windows.WindowsVirtualMemoryProviderFeature_ServiceRegistration",
"com.oracle.svm.graal.RuntimeCPUFeatureRegionFeature_ServiceRegistration",
"com.oracle.svm.graal.isolated.DisableSnippetCountersFeature_ServiceRegistration",
"com.oracle.svm.graal.isolated.IsolateAwareObjectConstantEqualityFeature_ServiceRegistration",
"com.oracle.svm.graal.meta.aarch64.AArch64RuntimeCodeInstallerPlatformHelperFeature_ServiceRegistration",
"com.oracle.svm.graal.meta.amd64.AMD64RuntimeCodeInstallerPlatformHelperFeature_ServiceRegistration",
"com.oracle.svm.graal.stubs.AArch64StubForeignCallsFeature_ServiceRegistration",
"com.oracle.svm.graal.stubs.AMD64StubForeignCallsFeature_ServiceRegistration",
"com.oracle.svm.hosted.AArch64CPUFeatureAccessFeature_ServiceRegistration",
"com.oracle.svm.hosted.AMD64CPUFeatureAccessFeature_ServiceRegistration",
"com.oracle.svm.hosted.BuildDirectoryProviderImplFeature_ServiceRegistration",
"com.oracle.svm.hosted.ClassLoaderFeature_ServiceRegistration",
"com.oracle.svm.hosted.ClassNewInstanceFeature_ServiceRegistration",
"com.oracle.svm.hosted.ClassPredefinitionFeature_ServiceRegistration",
"com.oracle.svm.hosted.ClassValueFeature_ServiceRegistration",
"com.oracle.svm.hosted.ConcurrentReachabilityHandler_ServiceRegistration",
"com.oracle.svm.hosted.ExtensionLayerImageFeature_ServiceRegistration",
"com.oracle.svm.hosted.FallbackFeature_ServiceRegistration",
"com.oracle.svm.hosted.Log4ShellFeature_ServiceRegistration",
"com.oracle.svm.hosted.LoggingFeature_ServiceRegistration",
"com.oracle.svm.hosted.ModuleLayerFeature_ServiceRegistration",
"com.oracle.svm.hosted.NativeSecureRandomFilesCloser_ServiceRegistration",
"com.oracle.svm.hosted.OpenTypeWorldFeature_ServiceRegistration",
"com.oracle.svm.hosted.ProgressReporterFeature_ServiceRegistration",
"com.oracle.svm.hosted.ProtectionDomainFeature_ServiceRegistration",
"com.oracle.svm.hosted.RISCV64CPUFeatureAccessFeature_ServiceRegistration",
"com.oracle.svm.hosted.ReachabilityHandlerFeature_ServiceRegistration",
"com.oracle.svm.hosted.ResourcesFeature_ServiceRegistration",
"com.oracle.svm.hosted.SecurityServicesFeature_ServiceRegistration",
"com.oracle.svm.hosted.ServiceLoaderFeature_ServiceRegistration",
"com.oracle.svm.hosted.SubstitutionReportFeature_ServiceRegistration",
"com.oracle.svm.hosted.SubstrateDiagnosticFeature_ServiceRegistration",
"com.oracle.svm.hosted.SystemInOutErrFeature_ServiceRegistration",
"com.oracle.svm.hosted.VMFeature_ServiceRegistration",
"com.oracle.svm.hosted.ameta.HostedDynamicHubFeature_ServiceRegistration",
"com.oracle.svm.hosted.annotation.AnnotationFeature_ServiceRegistration",
"com.oracle.svm.hosted.c.CGlobalDataFeature_ServiceRegistration",
"com.oracle.svm.hosted.c.CIsolateDataFeature_ServiceRegistration",
"com.oracle.svm.hosted.c.function.CEntryPointSupport_ServiceRegistration",
"com.oracle.svm.hosted.c.libc.HostedLibCFeature_ServiceRegistration",
"com.oracle.svm.hosted.classinitialization.ClassInitializationFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.CEntryPointCallStubFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.CEntryPointLiteralFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.CFunctionLinkagesFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.CFunctionPointerCallStubSupportFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.FactoryMethodSupportFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.RestrictHeapAccessCalleesFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.RuntimeMetadataEncoderImplFactoryFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.SubstrateCompilationDirectivesFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.SubstrateLIRBackendFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.UninterruptibleAnnotationCheckerFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.aarch64.AArch64HostedPatcherFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.aarch64.AArch64HostedTrampolineSupportFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.amd64.AMD64HostedPatcherFeature_ServiceRegistration",
"com.oracle.svm.hosted.code.amd64.AMD64HostedTrampolineSupportFeature_ServiceRegistration",
"com.oracle.svm.hosted.dashboard.DashboardDumpFeature_ServiceRegistration",
"com.oracle.svm.hosted.diagnostic.HostedHeapDumpFeature_ServiceRegistration",
"com.oracle.svm.hosted.fieldfolding.StaticFinalFieldFoldingFeature_ServiceRegistration",