-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasm.log
More file actions
5693 lines (4524 loc) · 295 KB
/
asm.log
File metadata and controls
5693 lines (4524 loc) · 295 KB
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
[0.018s][warning][os] Loading hsdis library failed
Compiled method (n/a) 18 2 n 0 jdk.internal.misc.Unsafe::getReferenceVolatile (native)
total in heap [0x0000000117540010,0x0000000117540488] = 1144
relocation [0x0000000117540160,0x0000000117540188] = 40
main code [0x00000001175401c0,0x000000011754047c] = 700
stub code [0x000000011754047c,0x0000000117540480] = 4
metadata [0x0000000117540480,0x0000000117540488] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x0000007000442b10} 'getReferenceVolatile' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe'
# this: c_rarg1:c_rarg1
= 'jdk/internal/misc/Unsafe'
# parm0: c_rarg2:c_rarg2
= 'java/lang/Object'
# parm1: c_rarg3:c_rarg3
= long
# [sp+0x60] (sp of caller)
0x00000001175401c0: 2808 40b9 | 3f01 086b | 4000 0054
0x00000001175401cc: ; {runtime_call ic_miss_stub}
0x00000001175401cc: 2d9f ea17
[Verified Entry Point]
0x00000001175401d0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | fd7b bfa9 | fd03 0091 | ff43 01d1 | 2801 0018 | 8923 40b9
0x00000001175401f0: 1f01 09eb | e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000
0x0000000117540210: e207 00f9 | 5f00 1feb | e223 0091 | e203 829a | e103 00f9 | 3f00 1feb | e103 00d1 | e103 819a
0x0000000117540230: e801 0010 | 88d3 01f9 | e803 0091 | 88cf 01f9
0x0000000117540240: ; {external_word}
0x0000000117540240: 68d5 f790 | 0845 7939 | 280e 0035 | 80e3 0e91 | e803 7eb2 | 8913 1191 | 28fd 9f88
0x000000011754025c: ; {runtime_call Unsafe_GetReferenceVolatile(JNIEnv_*, _jobject*, _jobject*, long)}
0x000000011754025c: 08a9 89d2 | a8d9 a0f2 | 2800 c0f2 | 0001 3fd6 | a800 80d2 | 8847 04b9 | bf3b 03d5 | 8823 1191
0x000000011754027c: 08fd dfc8 | bf03 08eb | 480b 0054 | 8843 44b9 | 080b 0035 | e803 7db2 | 8913 1191 | 28fd 9f88
0x000000011754029c: 8803 5339 | 1f09 0071 | 6009 0054
0x00000001175402a8: ; {external_word}
0x00000001175402a8: 68d5 f790 | 0845 7939 | c80c 0035 | 9fcf 01f9 | 9fd3 01f9 | a007 00b4 | 1f04 40f2 | 6100 0054
0x00000001175402c8: 0000 40f9 | 3900 0014 | 6000 0037 | 00e0 5ff8 | 3600 0014 | 00f0 5ff8 | fd7b bfa9 | fd03 0091
0x00000001175402e8: 8103 4139 | e105 0034 | c005 00b4 | 8117 40f9 | e100 00b4 | 2120 00d1 | 8117 00f9 | 821f 40f9
0x0000000117540308: 2100 028b | 2000 00f9 | 2600 0014 | e007 b8a9 | e20f 01a9 | e417 02a9 | e61f 03a9 | ea2f 04a9
0x0000000117540328: ec37 05a9 | ee3f 06a9 | f047 07a9 | ff83 00d1 | e8eb 7bb2 | fc2f 880c | f82f 880c | f42f 880c
0x0000000117540348: f02f 880c | e42f 880c | e02f 000c | e103 1caa | e833 bfa9 | 8843 8dd2 | 68cc a0f2 | 2800 c0f2
0x0000000117540368: 0001 3fd6 | e833 c1a8 | e02f df0c | e42f df0c | f02f df0c | f42f df0c | f82f df0c | fc2f df0c
0x0000000117540388: e20f 41a9 | e417 42a9 | e61f 43a9 | ea2f 44a9 | ec37 45a9 | ee3f 46a9 | f047 47a9 | e007 c8a8
0x00000001175403a8: bf03 0091 | fd7b c1a8 | 8217 42f9 | 5f80 00f9 | bf03 0091 | fd7b c1a8 | 8807 40f9 | 4800 00b5
0x00000001175403c8: c003 5fd6
0x00000001175403cc: ; {runtime_call StubRoutines (initial stubs)}
0x00000001175403cc: 2daf e917 | a083 1ff8
0x00000001175403d4: ; {runtime_call SharedRuntime::reguard_yellow_pages()}
0x00000001175403d4: 084b 8fd2 | c8d6 a0f2 | 2800 c0f2 | 0001 3fd6 | a083 5ff8 | b0ff ff17 | a083 1ff8 | e003 1caa
0x00000001175403f4: ; {runtime_call JavaThread::check_special_condition_for_native_trans(JavaThread*)}
0x00000001175403f4: 088f 99d2 | a8ce a0f2 | 2800 c0f2 | 0001 3fd6 | a083 5ff8 | a2ff ff17 | e10b bea9 | e37f 01a9
0x0000000117540414: ; {metadata({method} {0x0000007000442b10} 'getReferenceVolatile' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe')}
0x0000000117540414: 0162 85d2 | 8108 a0f2 | 010e c0f2 | e003 1caa | e833 bfa9 | 08fc 8ad2 | c8d6 a0f2 | 2800 c0f2
0x0000000117540434: 0001 3fd6 | e833 c1a8 | e37f 41a9 | e10b c2a8 | 82ff ff17 | a083 1ff8
0x000000011754044c: ; {metadata({method} {0x0000007000442b10} 'getReferenceVolatile' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe')}
0x000000011754044c: 0162 85d2 | 8108 a0f2 | 010e c0f2 | e003 1caa | e833 bfa9 | 8819 8bd2 | c8d6 a0f2 | 2800 c0f2
0x000000011754046c: 0001 3fd6 | e833 c1a8 | a083 5ff8 | 8fff ff17
[Stub Code]
0x000000011754047c: 0000 0000
[/MachCode]
============================= C1-compiled nmethod ==============================
----------------------------------- Assembly -----------------------------------
Compiled method (c1) 23 1 3 java.lang.Object::<init> (1 bytes)
total in heap [0x000000010fa78010,0x000000010fa78308] = 760
relocation [0x000000010fa78160,0x000000010fa78180] = 32
main code [0x000000010fa78180,0x000000010fa78280] = 256
stub code [0x000000010fa78280,0x000000010fa78298] = 24
metadata [0x000000010fa78298,0x000000010fa782b0] = 24
scopes data [0x000000010fa782b0,0x000000010fa782c0] = 16
scopes pcs [0x000000010fa782c0,0x000000010fa78300] = 64
dependencies [0x000000010fa78300,0x000000010fa78308] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x0000007000475638} '<init>' '()V' in 'java/lang/Object'
# [sp+0x30] (sp of caller)
0x000000010fa78180: 2808 40b9 | 3f01 086b | c001 0054
0x000000010fa7818c: ; {runtime_call ic_miss_stub}
0x000000010fa7818c: 3dbf d515 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
0x000000010fa781ac: 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
[Verified Entry Point]
0x000000010fa781c0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ffc3 00d1 | fd7b 02a9 | 2801 0018 | 8923 40b9 | 1f01 09eb
0x000000010fa781e0: e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0100 0000
0x000000010fa781fc: ; {metadata(method data for {method} {0x0000007000475638} '<init>' '()V' in 'java/lang/Object')}
0x000000010fa781fc: 0042 94d2 | 0060 a4f2 | 2000 c0f2 | 02ac 40b9 | 4208 0011 | 02ac 00b9 | 4224 1f12 | 5f00 0071
0x000000010fa7821c: ;*return {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.Object::<init>@0 (line 45)
0x000000010fa7821c: e000 0054 | fd7b 42a9 | ffc3 0091
0x000000010fa78228: ; {poll_return}
0x000000010fa78228: 8827 42f9 | ff63 28eb | 4801 0054 | c003 5fd6
0x000000010fa78238: ; {metadata({method} {0x0000007000475638} '<init>' '()V' in 'java/lang/Object')}
0x000000010fa78238: 08c7 8ad2 | e808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa78250: ; ImmutableOopMap {c_rarg1=Oop }
;*synchronization entry
; - java.lang.Object::<init>@-1 (line 45)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa78250: ec2c d995 | f3ff ff17
0x000000010fa78258: ; {internal_word}
0x000000010fa78258: 88fe ff10 | 8833 02f9
0x000000010fa78260: ; {runtime_call SafepointBlob}
0x000000010fa78260: a8d9 d515 | 807f 42f9 | 9f7f 02f9 | 9f83 02f9 | fd7b 42a9 | ffc3 0091
0x000000010fa78278: ; {runtime_call unwind_exception Runtime1 stub}
0x000000010fa78278: 620f d915 | 0000 0000
[Exception Handler]
0x000000010fa78280: ; {no_reloc}
0x000000010fa78280: 001f d995 | c1d5 bbd4 | 6fd6 e206 | 0100 0000
[Deopt Handler Code]
0x000000010fa78290: 1e00 0010
0x000000010fa78294: ; {runtime_call DeoptimizationBlob}
0x000000010fa78294: 6bda d515
[/MachCode]
============================= C1-compiled nmethod ==============================
----------------------------------- Assembly -----------------------------------
Compiled method (c1) 25 4 3 java.lang.String::coder (15 bytes)
total in heap [0x000000010fa78390,0x000000010fa78740] = 944
relocation [0x000000010fa784e0,0x000000010fa78508] = 40
main code [0x000000010fa78540,0x000000010fa78678] = 312
stub code [0x000000010fa78678,0x000000010fa78690] = 24
metadata [0x000000010fa78690,0x000000010fa786a0] = 16
scopes data [0x000000010fa786a0,0x000000010fa786c8] = 40
scopes pcs [0x000000010fa786c8,0x000000010fa78738] = 112
dependencies [0x000000010fa78738,0x000000010fa78740] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String'
# [sp+0x30] (sp of caller)
0x000000010fa78540: 2808 40b9 | 3f01 086b | c001 0054
0x000000010fa7854c: ; {runtime_call ic_miss_stub}
0x000000010fa7854c: 4dbe d515 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
0x000000010fa7856c: 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
[Verified Entry Point]
0x000000010fa78580: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ffc3 00d1 | fd7b 02a9 | 2801 0018 | 8923 40b9 | 1f01 09eb
0x000000010fa785a0: e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0100 0000
0x000000010fa785bc: ; {metadata(method data for {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa785bc: 0036 82d2 | 2060 a4f2 | 2000 c0f2 | 02ac 40b9 | 4208 0011 | 02ac 00b9 | 4224 1f12 | 5f00 0071
0x000000010fa785dc: ;*getstatic COMPACT_STRINGS {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@0 (line 4813)
0x000000010fa785dc: c002 0054
0x000000010fa785e0: ; {metadata(method data for {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa785e0: 0036 82d2 | 2060 a4f2 | 2000 c0f2 | 0280 40f9 | 4204 0091
0x000000010fa785f4: ;*ifeq {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@3 (line 4813)
0x000000010fa785f4: 0280 00f9
0x000000010fa785f8: ;*getfield coder {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@7 (line 4813)
0x000000010fa785f8: 2040 8039
0x000000010fa785fc: ; {metadata(method data for {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa785fc: 0136 82d2 | 2160 a4f2 | 2100 c0f2 | 2288 40f9 | 4204 0091
0x000000010fa78610: ;*goto {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@10 (line 4813)
0x000000010fa78610: 2288 00f9 | 001c 0853 | 007c 1813 | fd7b 42a9 | ffc3 0091
0x000000010fa78624: ; {poll_return}
0x000000010fa78624: 8827 42f9 | ff63 28eb | 4801 0054 | c003 5fd6
0x000000010fa78634: ; {metadata({method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa78634: 08fe 8ad2 | a808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa7864c: ; ImmutableOopMap {c_rarg1=Oop }
;*synchronization entry
; - java.lang.String::coder@-1 (line 4813)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa7864c: ed2b d995 | e4ff ff17
0x000000010fa78654: ; {internal_word}
0x000000010fa78654: 88fe ff10 | 8833 02f9
0x000000010fa7865c: ; {runtime_call SafepointBlob}
0x000000010fa7865c: a9d8 d515 | 807f 42f9 | 9f7f 02f9 | 9f83 02f9 | fd7b 42a9 | ffc3 0091
0x000000010fa78674: ; {runtime_call unwind_exception Runtime1 stub}
0x000000010fa78674: 630e d915
[Exception Handler]
0x000000010fa78678: ; {no_reloc}
0x000000010fa78678: 021e d995 | c1d5 bbd4 | 6fd6 e206 | 0100 0000
[Deopt Handler Code]
0x000000010fa78688: 1e00 0010
0x000000010fa7868c: ; {runtime_call DeoptimizationBlob}
0x000000010fa7868c: 6dd9 d515
[/MachCode]
Compiled method (n/a) 27 5 n 0 java.lang.invoke.MethodHandle::linkToStatic(L)L (native)
total in heap [0x0000000117540510,0x00000001175406a0] = 400
relocation [0x0000000117540660,0x0000000117540668] = 8
main code [0x0000000117540680,0x00000001175406a0] = 32
[Constant Pool (empty)]
[MachCode]
[Verified Entry Point]
# {method} {0x0000000123011928} 'linkToStatic' '(Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' in 'java/lang/invoke/MethodHandle'
# parm0: c_rarg1:c_rarg1
= 'java/lang/invoke/MemberName'
# [sp+0x0] (sp of caller)
0x0000000117540680: 1f20 03d5 | 2c24 40b9 | 8cf1 7dd3 | 8c09 40f9 | 6c00 00b4 | 8821 40f9 | 0001 1fd6
0x000000011754069c: ; {runtime_call AbstractMethodError throw_exception}
0x000000011754069c: 99b4 ea17
[/MachCode]
============================= C1-compiled nmethod ==============================
----------------------------------- Assembly -----------------------------------
Compiled method (c1) 27 3 3 java.lang.String::hashCode (60 bytes)
total in heap [0x000000010fa78790,0x000000010fa78fe0] = 2128
relocation [0x000000010fa788e0,0x000000010fa78968] = 136
main code [0x000000010fa78980,0x000000010fa78cc0] = 832
stub code [0x000000010fa78cc0,0x000000010fa78d38] = 120
metadata [0x000000010fa78d38,0x000000010fa78d68] = 48
scopes data [0x000000010fa78d68,0x000000010fa78e18] = 176
scopes pcs [0x000000010fa78e18,0x000000010fa78fd8] = 448
dependencies [0x000000010fa78fd8,0x000000010fa78fe0] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String'
# [sp+0x50] (sp of caller)
0x000000010fa78980: 2808 40b9 | 3f01 086b | c001 0054
0x000000010fa7898c: ; {runtime_call ic_miss_stub}
0x000000010fa7898c: 3dbd d515 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
0x000000010fa789ac: 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
[Verified Entry Point]
0x000000010fa789c0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ff43 01d1 | fd7b 04a9 | 2801 0018 | 8923 40b9 | 1f01 09eb
0x000000010fa789e0: e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000 | e117 00f9
0x000000010fa78a00: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78a00: 0032 83d2 | 2060 a4f2 | 2000 c0f2 | 02ac 40b9 | 4208 0011 | 02ac 00b9 | 4224 1f12 | 5f00 0071
0x000000010fa78a20: ;*aload_0 {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@0 (line 2367)
0x000000010fa78a20: 8011 0054
0x000000010fa78a24: ;*getfield hash {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@1 (line 2367)
0x000000010fa78a24: 200c 40b9 | 1f00 0071
0x000000010fa78a2c: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78a2c: 0232 83d2 | 2260 a4f2 | 2200 c0f2 | e80f 7cb2 | e903 78b2 | 0311 899a | 4468 63f8 | 8404 0091
0x000000010fa78a4c: 4468 23f8
0x000000010fa78a50: ;*ifne {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@6 (line 2368)
0x000000010fa78a50: 410f 0054
0x000000010fa78a54: ;*getfield hashIsZero {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@10 (line 2368)
0x000000010fa78a54: 2244 4039 | 5f00 0071
0x000000010fa78a5c: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78a5c: 0232 83d2 | 2260 a4f2 | 2200 c0f2 | 0822 80d2 | 0924 80d2 | 0311 899a | 4468 63f8 | 8404 0091
0x000000010fa78a7c: 4468 23f8
0x000000010fa78a80: ;*ifne {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@13 (line 2368)
0x000000010fa78a80: c10d 0054 | e003 01aa
0x000000010fa78a88: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78a88: 0232 83d2 | 2260 a4f2 | 2200 c0f2 | 4898 40f9 | 0805 0091 | 4898 00f9
0x000000010fa78aa0: ; {metadata(method data for {method} {0x0000007000454be8} 'isLatin1' '()Z' in 'java/lang/String')}
0x000000010fa78aa0: 0079 83d2 | 2060 a4f2 | 2000 c0f2 | 02ac 40b9 | 4208 0011 | 02ac 00b9 | 424c 1f12 | 5f00 0071
0x000000010fa78ac0: 800d 0054
0x000000010fa78ac4: ; {metadata(method data for {method} {0x0000007000454be8} 'isLatin1' '()Z' in 'java/lang/String')}
0x000000010fa78ac4: 0079 83d2 | 2060 a4f2 | 2000 c0f2 | 0280 40f9 | 4204 0091
0x000000010fa78ad8: ;*ifeq {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::isLatin1@3 (line 4821)
; - java.lang.String::hashCode@17 (line 2369)
0x000000010fa78ad8: 0280 00f9
0x000000010fa78adc: ;*getfield coder {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::isLatin1@7 (line 4821)
; - java.lang.String::hashCode@17 (line 2369)
0x000000010fa78adc: 2040 8039 | 1f00 0071
0x000000010fa78ae4: ; {metadata(method data for {method} {0x0000007000454be8} 'isLatin1' '()Z' in 'java/lang/String')}
0x000000010fa78ae4: 0079 83d2 | 2060 a4f2 | 2000 c0f2 | 0822 80d2 | 0924 80d2 | 0211 899a | 0368 62f8 | 6304 0091
0x000000010fa78b04: 0368 22f8
0x000000010fa78b08: ;*ifne {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::isLatin1@10 (line 4821)
; - java.lang.String::hashCode@17 (line 2369)
0x000000010fa78b08: 2101 0054
0x000000010fa78b0c: ; {metadata(method data for {method} {0x0000007000454be8} 'isLatin1' '()Z' in 'java/lang/String')}
0x000000010fa78b0c: 0079 83d2 | 2060 a4f2 | 2000 c0f2 | 0298 40f9 | 4204 0091 | 0298 00f9 | e003 0032
0x000000010fa78b28: ;*goto {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::isLatin1@14 (line 4821)
; - java.lang.String::hashCode@17 (line 2369)
0x000000010fa78b28: 0200 0014
0x000000010fa78b2c: ;*ireturn {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::isLatin1@18 (line 4821)
; - java.lang.String::hashCode@17 (line 2369)
0x000000010fa78b2c: 0000 a052 | 0000 0012 | 1f00 0071
0x000000010fa78b38: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78b38: 0032 83d2 | 2060 a4f2 | 2000 c0f2 | 082d 80d2 | 092f 80d2 | 0201 899a | 0368 62f8 | 6304 0091
0x000000010fa78b58: 0368 22f8
0x000000010fa78b5c: ;*ifeq {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@20 (line 2369)
0x000000010fa78b5c: a002 0054 | 2014 40b9
0x000000010fa78b64: ;*getfield value {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@24 (line 2369)
0x000000010fa78b64: 00f0 7dd3
0x000000010fa78b68: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78b68: 0232 83d2 | 2260 a4f2 | 2200 c0f2 | 48c4 40f9 | 0805 0091 | 48c4 00f9
0x000000010fa78b80: ;*invokestatic hashCode {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@27 (line 2369)
0x000000010fa78b80: e103 00aa
0x000000010fa78b84: ; ImmutableOopMap {[40]=Oop }
;*invokestatic hashCode {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@27 (line 2369)
; {static_call}
0x000000010fa78b84: ffbe d595
0x000000010fa78b88: ; {other}
0x000000010fa78b88: 1f20 03d5 | 1f7f 80f2
0x000000010fa78b90: ;*invokestatic hashCode {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@27 (line 2369)
0x000000010fa78b90: 1f00 80f2
0x000000010fa78b94: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78b94: 0132 83d2 | 2160 a4f2 | 2100 c0f2 | 22cc 40f9 | 4204 0091 | 22cc 00f9
0x000000010fa78bac: ;*goto {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@30 (line 2369)
0x000000010fa78bac: 0800 0014 | 2014 40b9
0x000000010fa78bb4: ;*getfield value {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@34 (line 2370)
0x000000010fa78bb4: 00f0 7dd3
0x000000010fa78bb8: ;*invokestatic hashCode {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@37 (line 2370)
0x000000010fa78bb8: e103 00aa
0x000000010fa78bbc: ; ImmutableOopMap {[40]=Oop }
;*invokestatic hashCode {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@37 (line 2370)
; {static_call}
0x000000010fa78bbc: f1be d595
0x000000010fa78bc0: ; {other}
0x000000010fa78bc0: 1f20 03d5 | 1f86 80f2
0x000000010fa78bc8: ;*invokestatic hashCode {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@37 (line 2370)
0x000000010fa78bc8: 1f20 80f2 | 1f00 0071
0x000000010fa78bd0: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78bd0: 0132 83d2 | 2160 a4f2 | 2100 c0f2 | e80b 7ab2 | 093a 80d2 | 0211 899a | 2368 62f8 | 6304 0091
0x000000010fa78bf0: 2368 22f8 | e117 40f9
0x000000010fa78bf8: ;*ifne {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@42 (line 2371)
0x000000010fa78bf8: e101 0054 | e203 0032
0x000000010fa78c00: ;*putfield hashIsZero {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@47 (line 2372)
0x000000010fa78c00: 2244 0039
0x000000010fa78c04: ; {metadata(method data for {method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78c04: 0132 83d2 | 2160 a4f2 | 2100 c0f2 | 22f0 40f9 | 4204 0091
0x000000010fa78c18: ;*goto {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@50 (line 2372)
0x000000010fa78c18: 22f0 00f9 | fd7b 44a9 | ff43 0191
0x000000010fa78c24: ; {poll_return}
0x000000010fa78c24: 8827 42f9 | ff63 28eb | 2803 0054 | c003 5fd6
0x000000010fa78c34: ;*putfield hash {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::hashCode@55 (line 2374)
0x000000010fa78c34: 200c 00b9 | fd7b 44a9 | ff43 0191
0x000000010fa78c40: ; {poll_return}
0x000000010fa78c40: 8827 42f9 | ff63 28eb | a802 0054 | c003 5fd6
0x000000010fa78c50: ; {metadata({method} {0x000000700000edc0} 'hashCode' '()I' in 'java/lang/String')}
0x000000010fa78c50: 08b8 9dd2 | 0800 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa78c68: ; ImmutableOopMap {c_rarg1=Oop [40]=Oop }
;*synchronization entry
; - java.lang.String::hashCode@-1 (line 2367)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa78c68: 662a d995 | 6eff ff17
0x000000010fa78c70: ; {metadata({method} {0x0000007000454be8} 'isLatin1' '()Z' in 'java/lang/String')}
0x000000010fa78c70: 087d 89d2 | a808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa78c88: ; ImmutableOopMap {c_rarg1=Oop [40]=Oop }
;*synchronization entry
; - java.lang.String::isLatin1@-1 (line 4821)
; - java.lang.String::hashCode@17 (line 2369)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa78c88: 5e2a d995 | 8eff ff17
0x000000010fa78c90: ; {internal_word}
0x000000010fa78c90: a8fc ff10 | 8833 02f9
0x000000010fa78c98: ; {runtime_call SafepointBlob}
0x000000010fa78c98: 1ad7 d515
0x000000010fa78c9c: ; {internal_word}
0x000000010fa78c9c: 28fd ff10 | 8833 02f9
0x000000010fa78ca4: ; {runtime_call SafepointBlob}
0x000000010fa78ca4: 17d7 d515 | 807f 42f9 | 9f7f 02f9 | 9f83 02f9 | fd7b 44a9 | ff43 0191
0x000000010fa78cbc: ; {runtime_call unwind_exception Runtime1 stub}
0x000000010fa78cbc: d10c d915
[Stub Code]
0x000000010fa78cc0: ; {no_reloc}
0x000000010fa78cc0: 4800 0058 | 0001 1fd6 | 8087 fe16 | 0100 0000
0x000000010fa78cd0: ; {static_stub}
0x000000010fa78cd0: df3f 03d5
0x000000010fa78cd4: ; {metadata(nullptr)}
0x000000010fa78cd4: 0c00 80d2 | 0c00 a0f2 | 0c00 c0f2 | 0800 80d2 | 0800 a0f2 | 0800 c0f2 | 0001 1fd6
0x000000010fa78cf0: ; {trampoline_stub}
0x000000010fa78cf0: 4800 0058 | 0001 1fd6 | 8087 fe16 | 0100 0000
0x000000010fa78d00: ; {static_stub}
0x000000010fa78d00: df3f 03d5
0x000000010fa78d04: ; {metadata(nullptr)}
0x000000010fa78d04: 0c00 80d2 | 0c00 a0f2 | 0c00 c0f2 | 0800 80d2 | 0800 a0f2 | 0800 c0f2 | 0001 1fd6
[Exception Handler]
0x000000010fa78d20: ; {runtime_call handle_exception_from_callee Runtime1 stub}
0x000000010fa78d20: 581c d995 | c1d5 bbd4 | 6fd6 e206 | 0100 0000
[Deopt Handler Code]
0x000000010fa78d30: 1e00 0010
0x000000010fa78d34: ; {runtime_call DeoptimizationBlob}
0x000000010fa78d34: c3d7 d515
[/MachCode]
Compiled method (n/a) 33 6 n 0 java.lang.Object::hashCode (native)
total in heap [0x0000000117540810,0x0000000117540b80] = 880
relocation [0x0000000117540960,0x0000000117540988] = 40
main code [0x00000001175409c0,0x0000000117540b74] = 436
stub code [0x0000000117540b74,0x0000000117540b78] = 4
metadata [0x0000000117540b78,0x0000000117540b80] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x00000070000011a0} 'hashCode' '()I' in 'java/lang/Object'
# [sp+0x60] (sp of caller)
0x00000001175409c0: 2808 40b9 | 3f01 086b | 4000 0054
0x00000001175409cc: ; {runtime_call ic_miss_stub}
0x00000001175409cc: 2d9d ea17
[Verified Entry Point]
0x00000001175409d0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | fd7b bfa9 | fd03 0091 | ff43 01d1 | 2801 0018 | 8923 40b9
0x00000001175409f0: 1f01 09eb | e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000
0x0000000117540a10: e103 00f9 | 3f00 1feb | e103 00d1 | e103 819a | e801 0010 | 88d3 01f9 | e803 0091 | 88cf 01f9
0x0000000117540a30: ; {external_word}
0x0000000117540a30: 68d5 f790 | 0845 7939 | a806 0035 | 80e3 0e91 | e803 7eb2 | 8913 1191 | 28fd 9f88
0x0000000117540a4c: ; {runtime_call JVM_IHashCode}
0x0000000117540a4c: 08eb 97d2 | e8cf a0f2 | 2800 c0f2 | 0001 3fd6 | 007c 4093 | a800 80d2 | 8847 04b9 | bf3b 03d5
0x0000000117540a6c: 8823 1191 | 08fd dfc8 | bf03 08eb | a803 0054 | 8843 44b9 | 6803 0035 | e803 7db2 | 8913 1191
0x0000000117540a8c: 28fd 9f88 | 8803 5339 | 1f09 0071 | c001 0054
0x0000000117540a9c: ; {external_word}
0x0000000117540a9c: 68d5 f790 | 0845 7939 | e804 0035 | 9fcf 01f9 | 9fd3 01f9 | 8217 42f9 | 5f80 00f9 | bf03 0091
0x0000000117540abc: fd7b c1a8 | 8807 40f9 | 4800 00b5 | c003 5fd6
0x0000000117540acc: ; {runtime_call StubRoutines (initial stubs)}
0x0000000117540acc: 6dad e917 | a083 1ff8
0x0000000117540ad4: ; {runtime_call SharedRuntime::reguard_yellow_pages()}
0x0000000117540ad4: 084b 8fd2 | c8d6 a0f2 | 2800 c0f2 | 0001 3fd6 | a083 5ff8 | edff ff17 | a083 1ff8 | e003 1caa
0x0000000117540af4: ; {runtime_call JavaThread::check_special_condition_for_native_trans(JavaThread*)}
0x0000000117540af4: 088f 99d2 | a8ce a0f2 | 2800 c0f2 | 0001 3fd6 | a083 5ff8 | dfff ff17 | e17f bfa9
0x0000000117540b10: ; {metadata({method} {0x00000070000011a0} 'hashCode' '()I' in 'java/lang/Object')}
0x0000000117540b10: 0134 82d2 | 0100 a0f2 | 010e c0f2 | e003 1caa | e833 bfa9 | 08fc 8ad2 | c8d6 a0f2 | 2800 c0f2
0x0000000117540b30: 0001 3fd6 | e833 c1a8 | e17f c1a8 | c0ff ff17 | a083 1ff8
0x0000000117540b44: ; {metadata({method} {0x00000070000011a0} 'hashCode' '()I' in 'java/lang/Object')}
0x0000000117540b44: 0134 82d2 | 0100 a0f2 | 010e c0f2 | e003 1caa | e833 bfa9 | 8819 8bd2 | c8d6 a0f2 | 2800 c0f2
0x0000000117540b64: 0001 3fd6 | e833 c1a8 | a083 5ff8 | ceff ff17
[Stub Code]
0x0000000117540b74: 0000 0000
[/MachCode]
============================= C1-compiled nmethod ==============================
----------------------------------- Assembly -----------------------------------
Compiled method (c1) 35 7 3 java.lang.String::length (11 bytes)
total in heap [0x000000010fa79010,0x000000010fa794c0] = 1200
relocation [0x000000010fa79160,0x000000010fa79198] = 56
main code [0x000000010fa791c0,0x000000010fa79370] = 432
stub code [0x000000010fa79370,0x000000010fa79388] = 24
metadata [0x000000010fa79388,0x000000010fa793a8] = 32
scopes data [0x000000010fa793a8,0x000000010fa793f8] = 80
scopes pcs [0x000000010fa793f8,0x000000010fa794a8] = 176
dependencies [0x000000010fa794a8,0x000000010fa794b0] = 8
nul chk table [0x000000010fa794b0,0x000000010fa794c0] = 16
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x000000700000f080} 'length' '()I' in 'java/lang/String'
# [sp+0x40] (sp of caller)
0x000000010fa791c0: 2808 40b9 | 3f01 086b | c001 0054
0x000000010fa791cc: ; {runtime_call ic_miss_stub}
0x000000010fa791cc: 2dbb d515 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
0x000000010fa791ec: 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
[Verified Entry Point]
0x000000010fa79200: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ff03 01d1 | fd7b 03a9 | 2801 0018 | 8923 40b9 | 1f01 09eb
0x000000010fa79220: e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0100 0000
0x000000010fa7923c: ; {metadata(method data for {method} {0x000000700000f080} 'length' '()I' in 'java/lang/String')}
0x000000010fa7923c: 0024 86d2 | 2060 a4f2 | 2000 c0f2 | 02ac 40b9 | 4208 0011 | 02ac 00b9 | 4224 1f12 | 5f00 0071
0x000000010fa7925c: ;*aload_0 {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::length@0 (line 1519)
0x000000010fa7925c: 6005 0054 | 2014 40b9
0x000000010fa79264: ;*getfield value {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::length@1 (line 1519)
0x000000010fa79264: 00f0 7dd3
0x000000010fa79268: ; implicit exception: dispatches to 0x000000010fa79328
;*arraylength {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::length@4 (line 1519)
0x000000010fa79268: 000c 40b9 | e203 01aa
0x000000010fa79270: ; {metadata(method data for {method} {0x000000700000f080} 'length' '()I' in 'java/lang/String')}
0x000000010fa79270: 0324 86d2 | 2360 a4f2 | 2300 c0f2 | 6878 40f9 | 0805 0091 | 6878 00f9
0x000000010fa79288: ; {metadata(method data for {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa79288: 0236 82d2 | 2260 a4f2 | 2200 c0f2 | 43ac 40b9 | 6308 0011 | 43ac 00b9 | 634c 1f12 | 7f00 0071
0x000000010fa792a8: 2004 0054
0x000000010fa792ac: ; {metadata(method data for {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa792ac: 0236 82d2 | 2260 a4f2 | 2200 c0f2 | 4380 40f9 | 6304 0091
0x000000010fa792c0: ;*ifeq {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@3 (line 4813)
; - java.lang.String::length@6 (line 1519)
0x000000010fa792c0: 4380 00f9
0x000000010fa792c4: ;*getfield coder {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@7 (line 4813)
; - java.lang.String::length@6 (line 1519)
0x000000010fa792c4: 2140 8039
0x000000010fa792c8: ; {metadata(method data for {method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa792c8: 0236 82d2 | 2260 a4f2 | 2200 c0f2 | 4388 40f9 | 6304 0091
0x000000010fa792dc: ;*goto {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::coder@10 (line 4813)
; - java.lang.String::length@6 (line 1519)
0x000000010fa792dc: 4388 00f9 | 211c 0853 | 217c 1813 | 2110 0012 | 0028 c11a | fd7b 43a9 | ff03 0191
0x000000010fa792f8: ; {poll_return}
0x000000010fa792f8: 8827 42f9 | ff63 28eb | 6802 0054 | c003 5fd6
0x000000010fa79308: ; {metadata({method} {0x000000700000f080} 'length' '()I' in 'java/lang/String')}
0x000000010fa79308: 0810 9ed2 | 0800 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa79320: ; ImmutableOopMap {c_rarg1=Oop }
;*synchronization entry
; - java.lang.String::length@-1 (line 1519)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa79320: b828 d995 | cfff ff17
0x000000010fa79328: ; ImmutableOopMap {c_rarg1=Oop }
;*arraylength {reexecute=0 rethrow=0 return_oop=0}
; - java.lang.String::length@4 (line 1519)
; {runtime_call throw_null_pointer_exception Runtime1 stub}
0x000000010fa79328: b610 d995
0x000000010fa7932c: ; {metadata({method} {0x00000070004557f0} 'coder' '()B' in 'java/lang/String')}
0x000000010fa7932c: 08fe 8ad2 | a808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa79344: ; ImmutableOopMap {c_rarg1=Oop }
;*synchronization entry
; - java.lang.String::coder@-1 (line 4813)
; - java.lang.String::length@6 (line 1519)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa79344: af28 d995 | d9ff ff17
0x000000010fa7934c: ; {internal_word}
0x000000010fa7934c: 68fd ff10 | 8833 02f9
0x000000010fa79354: ; {runtime_call SafepointBlob}
0x000000010fa79354: 6bd5 d515 | 807f 42f9 | 9f7f 02f9 | 9f83 02f9 | fd7b 43a9 | ff03 0191
0x000000010fa7936c: ; {runtime_call unwind_exception Runtime1 stub}
0x000000010fa7936c: 250b d915
[Exception Handler]
0x000000010fa79370: ; {no_reloc}
0x000000010fa79370: c41a d995 | c1d5 bbd4 | 6fd6 e206 | 0100 0000
[Deopt Handler Code]
0x000000010fa79380: 1e00 0010
0x000000010fa79384: ; {runtime_call DeoptimizationBlob}
0x000000010fa79384: 2fd6 d515
[/MachCode]
Compiled method (n/a) 38 8 n 0 java.lang.invoke.MethodHandle::linkToStatic(LLL)L (native)
total in heap [0x0000000117540b90,0x0000000117540d20] = 400
relocation [0x0000000117540ce0,0x0000000117540ce8] = 8
main code [0x0000000117540d00,0x0000000117540d20] = 32
[Constant Pool (empty)]
[MachCode]
[Verified Entry Point]
# {method} {0x0000000123013db8} 'linkToStatic' '(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' in 'java/lang/invoke/MethodHandle'
# parm0: c_rarg1:c_rarg1
= 'java/lang/Object'
# parm1: c_rarg2:c_rarg2
= 'java/lang/Object'
# parm2: c_rarg3:c_rarg3
= 'java/lang/invoke/MemberName'
# [sp+0x0] (sp of caller)
0x0000000117540d00: 1f20 03d5 | 6c24 40b9 | 8cf1 7dd3 | 8c09 40f9 | 6c00 00b4 | 8821 40f9 | 0001 1fd6
0x0000000117540d1c: ; {runtime_call AbstractMethodError throw_exception}
0x0000000117540d1c: f9b2 ea17
[/MachCode]
Compiled method (n/a) 38 9 n 0 java.lang.invoke.MethodHandle::linkToStatic(LLLL)L (native)
total in heap [0x0000000117540e90,0x0000000117541020] = 400
relocation [0x0000000117540fe0,0x0000000117540fe8] = 8
main code [0x0000000117541000,0x0000000117541020] = 32
[Constant Pool (empty)]
[MachCode]
[Verified Entry Point]
# {method} {0x00000001230141d0} 'linkToStatic' '(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/invoke/MemberName;)Ljava/lang/Object;' in 'java/lang/invoke/MethodHandle'
# parm0: c_rarg1:c_rarg1
= 'java/lang/Object'
# parm1: c_rarg2:c_rarg2
= 'java/lang/Object'
# parm2: c_rarg3:c_rarg3
= 'java/lang/Object'
# parm3: c_rarg4:c_rarg4
= 'java/lang/invoke/MemberName'
# [sp+0x0] (sp of caller)
0x0000000117541000: 1f20 03d5 | 8c24 40b9 | 8cf1 7dd3 | 8c09 40f9 | 6c00 00b4 | 8821 40f9 | 0001 1fd6
0x000000011754101c: ; {runtime_call AbstractMethodError throw_exception}
0x000000011754101c: 39b2 ea17
[/MachCode]
Compiled method (n/a) 39 10 n 0 java.lang.Class::isPrimitive (native)
total in heap [0x0000000117541190,0x0000000117541500] = 880
relocation [0x00000001175412e0,0x0000000117541308] = 40
main code [0x0000000117541340,0x00000001175414f8] = 440
metadata [0x00000001175414f8,0x0000000117541500] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x00000070000080c0} 'isPrimitive' '()Z' in 'java/lang/Class'
# [sp+0x60] (sp of caller)
0x0000000117541340: 2808 40b9 | 3f01 086b | 4000 0054
0x000000011754134c: ; {runtime_call ic_miss_stub}
0x000000011754134c: cd9a ea17
[Verified Entry Point]
0x0000000117541350: 1f20 03d5 | e953 40d1 | 3f01 00f9 | fd7b bfa9 | fd03 0091 | ff43 01d1 | 2801 0018 | 8923 40b9
0x0000000117541370: 1f01 09eb | e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000
0x0000000117541390: e103 00f9 | 3f00 1feb | e103 00d1 | e103 819a | e801 0010 | 88d3 01f9 | e803 0091 | 88cf 01f9
0x00000001175413b0: ; {external_word}
0x00000001175413b0: 48d5 f7f0 | 0845 7939 | c806 0035 | 80e3 0e91 | e803 7eb2 | 8913 1191 | 28fd 9f88
0x00000001175413cc: ; {runtime_call JVM_IsPrimitiveClass}
0x00000001175413cc: 088b 84d2 | 08d0 a0f2 | 2800 c0f2 | 0001 3fd6 | 1f1c 40f2 | e007 9f9a | a800 80d2 | 8847 04b9
0x00000001175413ec: bf3b 03d5 | 8823 1191 | 08fd dfc8 | bf03 08eb | a803 0054 | 8843 44b9 | 6803 0035 | e803 7db2
0x000000011754140c: 8913 1191 | 28fd 9f88 | 8803 5339 | 1f09 0071 | c001 0054
0x0000000117541420: ; {external_word}
0x0000000117541420: 48d5 f7f0 | 0845 7939 | e804 0035 | 9fcf 01f9 | 9fd3 01f9 | 8217 42f9 | 5f80 00f9 | bf03 0091
0x0000000117541440: fd7b c1a8 | 8807 40f9 | 4800 00b5 | c003 5fd6
0x0000000117541450: ; {runtime_call StubRoutines (initial stubs)}
0x0000000117541450: 0cab e917 | a083 1ff8
0x0000000117541458: ; {runtime_call SharedRuntime::reguard_yellow_pages()}
0x0000000117541458: 084b 8fd2 | c8d6 a0f2 | 2800 c0f2 | 0001 3fd6 | a083 5ff8 | edff ff17 | a083 1ff8 | e003 1caa
0x0000000117541478: ; {runtime_call JavaThread::check_special_condition_for_native_trans(JavaThread*)}
0x0000000117541478: 088f 99d2 | a8ce a0f2 | 2800 c0f2 | 0001 3fd6 | a083 5ff8 | dfff ff17 | e17f bfa9
0x0000000117541494: ; {metadata({method} {0x00000070000080c0} 'isPrimitive' '()Z' in 'java/lang/Class')}
0x0000000117541494: 0118 90d2 | 0100 a0f2 | 010e c0f2 | e003 1caa | e833 bfa9 | 08fc 8ad2 | c8d6 a0f2 | 2800 c0f2
0x00000001175414b4: 0001 3fd6 | e833 c1a8 | e17f c1a8 | bfff ff17 | a083 1ff8
0x00000001175414c8: ; {metadata({method} {0x00000070000080c0} 'isPrimitive' '()Z' in 'java/lang/Class')}
0x00000001175414c8: 0118 90d2 | 0100 a0f2 | 010e c0f2 | e003 1caa | e833 bfa9 | 8819 8bd2 | c8d6 a0f2 | 2800 c0f2
0x00000001175414e8: 0001 3fd6 | e833 c1a8 | a083 5ff8 | ceff ff17
[/MachCode]
============================= C1-compiled nmethod ==============================
----------------------------------- Assembly -----------------------------------
Compiled method (c1) 41 11 3 java.util.concurrent.ConcurrentHashMap::tabAt (22 bytes)
total in heap [0x000000010fa79510,0x000000010fa79a90] = 1408
relocation [0x000000010fa79660,0x000000010fa796a8] = 72
main code [0x000000010fa796c0,0x000000010fa79998] = 728
stub code [0x000000010fa79998,0x000000010fa799b0] = 24
oops [0x000000010fa799b0,0x000000010fa799b8] = 8
metadata [0x000000010fa799b8,0x000000010fa799e0] = 40
scopes data [0x000000010fa799e0,0x000000010fa79a18] = 56
scopes pcs [0x000000010fa79a18,0x000000010fa79a88] = 112
dependencies [0x000000010fa79a88,0x000000010fa79a90] = 8
[Constant Pool (empty)]
[MachCode]
[Verified Entry Point]
# {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap'
# parm0: c_rarg1:c_rarg1
= '[Ljava/util/concurrent/ConcurrentHashMap$Node;'
# parm1: c_rarg2 = int
# [sp+0x80] (sp of caller)
0x000000010fa796c0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ff03 02d1 | fd7b 07a9 | 2801 0018 | 8923 40b9 | 1f01 09eb
0x000000010fa796e0: e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000
0x000000010fa796fc: ; {metadata(method data for {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa796fc: 001f 89d2 | 2060 a4f2 | 2000 c0f2 | 03ac 40b9 | 6308 0011 | 03ac 00b9 | 6324 1f12 | 7f00 0071
0x000000010fa7971c: ;*getstatic U {reexecute=0 rethrow=0 return_oop=0}
; - java.util.concurrent.ConcurrentHashMap::tabAt@0 (line 760)
0x000000010fa7971c: 0010 0054
0x000000010fa79720: ; {metadata(method data for {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa79720: 001f 89d2 | 2060 a4f2 | 2000 c0f2 | 00a0 0491 | e303 01aa | a300 00b5 | 0904 40f9 | 2901 40b2
0x000000010fa79740: 0904 00f9 | 1600 0014 | 6308 40b9 | 6308 5cd2 | 0904 40f9 | 6300 09ca | 68f4 7e92 | 0802 00b4
0x000000010fa79760: e301 0837 | a901 00b4 | 3f05 00f1 | 6001 0054 | bf39 03d5 | 6300 09ca | 0904 40f9 | 6300 09ca
0x000000010fa79780: 68f4 7e92 | c800 00b4 | 0904 40f9 | 2901 7fb2 | 0904 00f9 | 0200 0014 | 0304 00f9
0x000000010fa7979c: ; {oop(a 'jdk/internal/misc/Unsafe'{0x0000000787f03800})}
0x000000010fa7979c: 0000 87d2 | 00fe b0f2 | e000 c0f2
0x000000010fa797a8: ; {metadata(method data for {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa797a8: 031f 89d2 | 2360 a4f2 | 2300 c0f2 | 6878 40f9 | 0805 0091 | 6878 00f9 | 427c 4093 | 40f4 7ed3
0x000000010fa797c8: 0040 0091
0x000000010fa797cc: ; {metadata(method data for {method} {0x0000007000441da0} 'getReferenceAcquire' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe')}
0x000000010fa797cc: 028d 89d2 | 2260 a4f2 | 2200 c0f2 | 43ac 40b9 | 6308 0011 | 43ac 00b9 | 634c 1f12 | 7f00 0071
0x000000010fa797ec: 800a 0054 | bf3b 03d5 | 2068 60b8 | 00f0 7dd3 | bf39 03d5 | 8103 4139 | 3f00 0071 | a10a 0054
0x000000010fa7980c: 0001 00b5
0x000000010fa79810: ; {metadata(method data for {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa79810: 031f 89d2 | 2360 a4f2 | 2300 c0f2 | 68e4 4439 | 0801 40b2 | 68e4 0439 | 3700 0014
0x000000010fa7982c: ; {metadata('java/util/concurrent/ConcurrentHashMap$Node')}
0x000000010fa7982c: 0219 95d2 | e202 a0f2 | 020e c0f2 | 0308 40b9 | 6308 5cd2 | 681c 40f9 | 5f00 08eb | e104 0054
0x000000010fa7984c: ; {metadata(method data for {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa7984c: 031f 89d2 | 2360 a4f2 | 2300 c0f2 | 0208 40b9 | 4208 5cd2 | 6940 0591 | 2801 40f9 | 5f00 08eb
0x000000010fa7986c: a100 0054 | 68ac 40f9 | 0805 0091 | 68ac 00f9 | 2200 0014 | 6980 0591 | 2801 40f9 | 5f00 08eb
0x000000010fa7988c: a100 0054 | 68b4 40f9 | 0805 0091 | 68b4 00f9 | 1a00 0014 | 6940 0591 | 2801 40f9 | c800 00b5
0x000000010fa798ac: 2201 00f9 | e803 40b2 | 6960 0591 | 2801 00f9 | 1200 0014 | 6980 0591 | 2801 40f9 | c800 00b5
0x000000010fa798cc: 2201 00f9 | e803 40b2 | 69a0 0591 | 2801 00f9 | 0a00 0014 | 0900 0014
0x000000010fa798e4: ; {metadata(method data for {method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa798e4: 031f 89d2 | 2360 a4f2 | 2300 c0f2 | 68a0 40f9 | 0805 00d1 | 68a0 00f9 | 1c00 0014
0x000000010fa79900: ;*checkcast {reexecute=0 rethrow=0 return_oop=0}
; - java.util.concurrent.ConcurrentHashMap::tabAt@18 (line 760)
0x000000010fa79900: 0100 0014 | fd7b 47a9 | ff03 0291
0x000000010fa7990c: ; {poll_return}
0x000000010fa7990c: 8827 42f9 | ff63 28eb | 0803 0054 | c003 5fd6
0x000000010fa7991c: ; {metadata({method} {0x00000070004061c0} 'tabAt' '([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;' in 'java/util/concurrent/ConcurrentHashMap')}
0x000000010fa7991c: 0838 8cd2 | 0808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa79934: ; ImmutableOopMap {c_rarg1=Oop }
;*synchronization entry
; - java.util.concurrent.ConcurrentHashMap::tabAt@-1 (line 760)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa79934: 3327 d995 | 7aff ff17
0x000000010fa7993c: ; {metadata({method} {0x0000007000441da0} 'getReferenceAcquire' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe')}
0x000000010fa7993c: 08b4 83d2 | 8808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa79954: ; ImmutableOopMap {c_rarg1=Oop }
;*synchronization entry
; - jdk.internal.misc.Unsafe::getReferenceAcquire@-1 (line 2153)
; - java.util.concurrent.ConcurrentHashMap::tabAt@15 (line 760)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa79954: 2b27 d995 | a6ff ff17 | 80f5 ffb4 | e003 00f9
0x000000010fa79964: ; {runtime_call g1_pre_barrier_slow}
0x000000010fa79964: a728 d995 | a9ff ff17 | e803 00aa
0x000000010fa79970: ; ImmutableOopMap {}
;*checkcast {reexecute=0 rethrow=0 return_oop=0}
; - java.util.concurrent.ConcurrentHashMap::tabAt@18 (line 760)
; {runtime_call throw_class_cast_exception Runtime1 stub}
0x000000010fa79970: c41a d995
0x000000010fa79974: ; {internal_word}
0x000000010fa79974: c8fc ff10 | 8833 02f9
0x000000010fa7997c: ; {runtime_call SafepointBlob}
0x000000010fa7997c: e1d3 d515 | 807f 42f9 | 9f7f 02f9 | 9f83 02f9 | fd7b 47a9 | ff03 0291
0x000000010fa79994: ; {runtime_call unwind_exception Runtime1 stub}
0x000000010fa79994: 9b09 d915
[Exception Handler]
0x000000010fa79998: ; {no_reloc}
0x000000010fa79998: 3a19 d995 | c1d5 bbd4 | 6fd6 e206 | 0100 0000
[Deopt Handler Code]
0x000000010fa799a8: 1e00 0010
0x000000010fa799ac: ; {runtime_call DeoptimizationBlob}
0x000000010fa799ac: a5d4 d515
[/MachCode]
Compiled method (n/a) 45 13 n 0 java.lang.invoke.MethodHandle::invokeBasic()L (native)
total in heap [0x0000000117541510,0x00000001175416b0] = 416
relocation [0x0000000117541660,0x0000000117541668] = 8
main code [0x0000000117541680,0x00000001175416b0] = 48
[Constant Pool (empty)]
[MachCode]
[Verified Entry Point]
# {method} {0x00000001230150c0} 'invokeBasic' '()Ljava/lang/Object;' in 'java/lang/invoke/MethodHandle'
# [sp+0x0] (sp of caller)
0x0000000117541680: 1f20 03d5 | 2c14 40b9 | 8cf1 7dd3 | 8c29 40b9 | 8cf1 7dd3 | 8c25 40b9 | 8cf1 7dd3 | 8c09 40f9
0x00000001175416a0: 6c00 00b4 | 8821 40f9 | 0001 1fd6
0x00000001175416ac: ; {runtime_call AbstractMethodError throw_exception}
0x00000001175416ac: 95b0 ea17
[/MachCode]
============================= C1-compiled nmethod ==============================
----------------------------------- Assembly -----------------------------------
Compiled method (c1) 45 12 3 jdk.internal.misc.Unsafe::getReferenceAcquire (7 bytes)
total in heap [0x000000010fa79b10,0x000000010fa79e60] = 848
relocation [0x000000010fa79c60,0x000000010fa79c80] = 32
main code [0x000000010fa79c80,0x000000010fa79dd8] = 344
stub code [0x000000010fa79dd8,0x000000010fa79df0] = 24
metadata [0x000000010fa79df0,0x000000010fa79e00] = 16
scopes data [0x000000010fa79e00,0x000000010fa79e18] = 24
scopes pcs [0x000000010fa79e18,0x000000010fa79e58] = 64
dependencies [0x000000010fa79e58,0x000000010fa79e60] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x0000007000441da0} 'getReferenceAcquire' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe'
# this: c_rarg1:c_rarg1
= 'jdk/internal/misc/Unsafe'
# parm0: c_rarg2:c_rarg2
= 'java/lang/Object'
# parm1: c_rarg3:c_rarg3
= long
# [sp+0x40] (sp of caller)
0x000000010fa79c80: 2808 40b9 | 3f01 086b | c001 0054
0x000000010fa79c8c: ; {runtime_call ic_miss_stub}
0x000000010fa79c8c: 7db8 d515 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
0x000000010fa79cac: 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5 | 1f20 03d5
[Verified Entry Point]
0x000000010fa79cc0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ff03 01d1 | fd7b 03a9 | 2801 0018 | 8923 40b9 | 1f01 09eb
0x000000010fa79ce0: e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000
0x000000010fa79cfc: ; {metadata(method data for {method} {0x0000007000441da0} 'getReferenceAcquire' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe')}
0x000000010fa79cfc: 008d 89d2 | 2060 a4f2 | 2000 c0f2 | 04ac 40b9 | 8408 0011 | 04ac 00b9 | 8424 1f12 | 9f00 0071
0x000000010fa79d1c: ;*aload_0 {reexecute=0 rethrow=0 return_oop=0}
; - jdk.internal.misc.Unsafe::getReferenceAcquire@0 (line 2153)
0x000000010fa79d1c: 2003 0054 | bf3b 03d5 | 4068 63b8 | 00f0 7dd3 | bf39 03d5 | e107 7eb2 | 7f00 01eb | 8101 0054
0x000000010fa79d3c: e803 1faa | 5f00 08eb | 2001 0054 | 4108 40b9 | 2108 5cd2 | 21c8 8439 | 3f00 0071 | 8000 0054
0x000000010fa79d5c: 8103 4139 | 3f00 0071 | e101 0054 | fd7b 43a9 | ff03 0191
0x000000010fa79d70: ; {poll_return}
0x000000010fa79d70: 8827 42f9 | ff63 28eb | c801 0054 | c003 5fd6
0x000000010fa79d80: ; {metadata({method} {0x0000007000441da0} 'getReferenceAcquire' '(Ljava/lang/Object;J)Ljava/lang/Object;' in 'jdk/internal/misc/Unsafe')}
0x000000010fa79d80: 08b4 83d2 | 8808 a0f2 | 080e c0f2 | e807 00f9 | 0800 8092 | e803 00f9
0x000000010fa79d98: ; ImmutableOopMap {c_rarg1=Oop c_rarg2=Oop }
;*synchronization entry
; - jdk.internal.misc.Unsafe::getReferenceAcquire@-1 (line 2153)
; {runtime_call counter_overflow Runtime1 stub}
0x000000010fa79d98: 1a26 d995 | e1ff ff17 | 40fe ffb4 | e003 00f9
0x000000010fa79da8: ; {runtime_call g1_pre_barrier_slow}
0x000000010fa79da8: 9627 d995 | efff ff17
0x000000010fa79db0: ; {internal_word}
0x000000010fa79db0: 08fe ff10 | 8833 02f9
0x000000010fa79db8: ; {runtime_call SafepointBlob}
0x000000010fa79db8: d2d2 d515 | 807f 42f9 | 9f7f 02f9 | 9f83 02f9 | fd7b 43a9 | ff03 0191
0x000000010fa79dd0: ; {runtime_call unwind_exception Runtime1 stub}
0x000000010fa79dd0: 8c08 d915 | 0000 0000
[Exception Handler]
0x000000010fa79dd8: ; {no_reloc}
0x000000010fa79dd8: 2a18 d995 | c1d5 bbd4 | 6fd6 e206 | 0100 0000
[Deopt Handler Code]
0x000000010fa79de8: 1e00 0010
0x000000010fa79dec: ; {runtime_call DeoptimizationBlob}
0x000000010fa79dec: 95d3 d515
[/MachCode]
Compiled method (n/a) 47 14 n 0 java.lang.System::arraycopy (native)
total in heap [0x0000000117541810,0x0000000117541ba8] = 920
relocation [0x0000000117541960,0x0000000117541990] = 48
main code [0x00000001175419c0,0x0000000117541b98] = 472
oops [0x0000000117541b98,0x0000000117541ba0] = 8
metadata [0x0000000117541ba0,0x0000000117541ba8] = 8
[Constant Pool (empty)]
[MachCode]
[Entry Point]
# {method} {0x000000700001b300} 'arraycopy' '(Ljava/lang/Object;ILjava/lang/Object;II)V' in 'java/lang/System'
# parm0: c_rarg1:c_rarg1
= 'java/lang/Object'
# parm1: c_rarg2 = int
# parm2: c_rarg3:c_rarg3
= 'java/lang/Object'
# parm3: c_rarg4 = int
# parm4: c_rarg5 = int
# [sp+0x60] (sp of caller)
0x00000001175419c0: 2808 40b9 | 3f01 086b | 4000 0054
0x00000001175419cc: ; {runtime_call ic_miss_stub}
0x00000001175419cc: 2d99 ea17
[Verified Entry Point]
0x00000001175419d0: 1f20 03d5 | e953 40d1 | 3f01 00f9 | fd7b bfa9 | fd03 0091 | ff43 01d1 | 2801 0018 | 8923 40b9
0x00000001175419f0: 1f01 09eb | e000 0054 | 0830 83d2 | e8df a2f2 | 2800 c0f2 | 0001 3fd6 | 0200 0014 | 0000 0000
0x0000000117541a10: a67c 4093 | 857c 4093 | e30b 00f9 | 7f00 1feb | e443 0091 | e403 849a | 437c 4093 | e103 00f9
0x0000000117541a30: 3f00 1feb | e203 00d1 | e203 829a
0x0000000117541a3c: ; {oop(a 'java/lang/Class'{0x00000007ffe7c7d0} = 'java/lang/System')}
0x0000000117541a3c: 01fa 98d2 | e1fc bff2 | e100 c0f2 | e123 00f9 | e103 0191 | e801 0010 | 88d3 01f9 | e803 0091
0x0000000117541a5c: 88cf 01f9
0x0000000117541a60: ; {external_word}
0x0000000117541a60: 48d5 f7f0 | 0845 7939 | 0806 0035 | 80e3 0e91 | e803 7eb2 | 8913 1191 | 28fd 9f88
0x0000000117541a7c: ; {runtime_call JVM_ArrayCopy}
0x0000000117541a7c: 888d 92d2 | e8cf a0f2 | 2800 c0f2 | 0001 3fd6 | a800 80d2 | 8847 04b9 | bf3b 03d5 | 8823 1191