-
Notifications
You must be signed in to change notification settings - Fork 0
/
c2-l2-exc.expect
1793 lines (1793 loc) · 128 KB
/
c2-l2-exc.expect
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
mem read 000039a6b2ebcd00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000039a6b2ebcd00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000039a6b2ebcd00 00 0004 00 03 0 [MdW] 92f3c8ee96a39ad8
mem read 000018c9dccfc840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000018c9dccfc840 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000018c9dccfc840 00 0001 00 03 0 [MdW] 83b569fd7e2f93d0
mem read 00005a86b1c246c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005a86b1c246c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00005a86b1c246c0 00 0011 00 03 0 [MdW] a4ed9aaf1420592d
mem read 00007a0ccec77d00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007a0ccec77d00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00007a0ccec77d00 00 0004 01 03 0 [MdW] 603f902534bdd00d
mem write 00007a0ccec77d00 -1 -001 -1 -1 1 [MdW] 603f902534bdd00d
l2 read 00007a0ccec77d00 -1 -001 -1 -1 0 [IcR] 603f902534bdd00d
l1d-0 read 00007a0ccec77d00 00 0004 00 03 0 [ScR] 603f902534bdd00d
mem read 000019a40a160240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000019a40a160240 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000019a40a160240 00 0009 00 03 0 [MdW] 8330cfb2dc469827
mem read 0000ced5eac0d680 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ced5eac0d680 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000ced5eac0d680 00 0010 00 03 0 [MdW] 286cd5e99abee408
mem read 000039a5e213fe00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000039a5e213fe00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000039a5e213fe00 00 0008 00 03 0 [MdW] ab1570a6fc8f5e64
mem read 000066e78b358f00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000066e78b358f00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000066e78b358f00 00 0012 00 03 0 [MdW] 46e305bdddfc6574
mem read 0000c97dfb94fd80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c97dfb94fd80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000c97dfb94fd80 00 0006 00 03 0 [MdW] 866e8372e740908a
mem read 0000033616c7e540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000033616c7e540 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000033616c7e540 00 0005 00 03 0 [MdW] 505e4c2fc450e2ad
mem read 000049afd5e02b40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000049afd5e02b40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000049afd5e02b40 00 0013 00 03 0 [MdW] 0d73762cec20ec64
mem read 0000b5cd51622240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b5cd51622240 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000b5cd51622240 00 0009 00 03 0 [MdW] 4f9c1718ca9de14e
mem read 00004d48d3ab6400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004d48d3ab6400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00004d48d3ab6400 00 0000 00 03 0 [MdW] ba6e57907407aadf
mem read 00003f232f338000 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003f232f338000 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00003f232f338000 00 0000 00 03 0 [MdW] a2d413acae95e3cd
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] ab1570a6fc8f5e64
mem read 00005dfc154ee8c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005dfc154ee8c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00005dfc154ee8c0 00 0003 00 03 0 [MdW] 8a7139c015313d43
mem read 000057ef223eb2c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000057ef223eb2c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000057ef223eb2c0 00 0011 00 03 0 [MdW] fcc2619e1793c524
mem read 0000a65bf8171680 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a65bf8171680 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000a65bf8171680 00 0010 01 03 0 [MdW] e92d6a6544b2e04a
mem read 00002d9824d83d80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002d9824d83d80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00002d9824d83d80 00 0006 01 03 0 [MdW] 101aad3e107bdbf7
mem read 00005066f9d0b480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005066f9d0b480 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00005066f9d0b480 00 0002 00 03 0 [MdW] 137a92d6da9c98a8
mem read 0000d99af3531440 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d99af3531440 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000d99af3531440 00 0001 00 03 0 [MdW] e66ccdd010b2f326
mem read 0000ff71c82dc900 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ff71c82dc900 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000ff71c82dc900 00 0004 01 03 0 [MdW] 75c7c14436ed60c6
mem read 0000c20e6058a4c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c20e6058a4c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000c20e6058a4c0 00 0003 00 03 0 [MdW] 82e8d84a28a779bb
l1d-1 read 0000d99af3531440 00 0001 00 03 1 [MdW] e66ccdd010b2f326
mem read 0000c477f06039c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c477f06039c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000c477f06039c0 00 0007 00 03 0 [MdW] 07a43d1b05d30814
l1d-0 read 00005066f9d0b480 00 0002 00 03 1 [MdW] 137a92d6da9c98a8
mem read 0000ed89583b9580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ed89583b9580 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000ed89583b9580 00 0006 02 03 0 [MdW] df138b65bf1ba81e
mem read 00009a603343d580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009a603343d580 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00009a603343d580 00 0006 00 03 0 [MdW] c162b9927026ea74
mem read 000078135d3f5200 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000078135d3f5200 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000078135d3f5200 00 0008 01 03 0 [MdW] 0ec0b79ad41353f3
l1d-1 read 00007a0ccec77d00 00 0004 01 03 1 [ScR] 603f902534bdd00d
l1d-0 read 00009a603343d580 00 0006 00 03 1 [MdW] c162b9927026ea74
mem read 000087a8e7348c80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000087a8e7348c80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000087a8e7348c80 00 0002 01 03 0 [MdW] f525efac2f3cf7fd
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] ab1570a6fc8f5e64
mem read 00002ccb051018c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002ccb051018c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00002ccb051018c0 00 0003 01 03 0 [MdW] 37430a6ae2ed6122
mem read 000016f64b35ad40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000016f64b35ad40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000016f64b35ad40 00 0005 00 03 0 [MdW] 0a3253895fd4c544
mem read 0000a6f9f0803d80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a6f9f0803d80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000a6f9f0803d80 00 0006 01 03 0 [MdW] 2efe16e086b3c230
mem read 0000c662cc646980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c662cc646980 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000c662cc646980 00 0006 02 03 0 [MdW] cd75106db33edfb9
l1d-0 read 000018c9dccfc840 00 0001 00 03 1 [MdW] 83b569fd7e2f93d0
mem read 000052d61b6d5a00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000052d61b6d5a00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000052d61b6d5a00 00 0008 00 03 0 [MdW] a4ca6d0b4cdb32f8
mem read 000043ca5c07b240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000043ca5c07b240 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000043ca5c07b240 00 0009 01 03 0 [MdW] eb220539d65d1d1d
mem read 0000242235f69b80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000242235f69b80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000242235f69b80 00 0014 00 03 0 [MdW] cd0f83c76caa72c4
mem read 00002814eea2cf80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002814eea2cf80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00002814eea2cf80 00 0014 01 03 0 [MdW] ac76c3067a593258
mem read 00003bd14ab212c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003bd14ab212c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00003bd14ab212c0 00 0011 01 03 0 [MdW] 338c39d468604fc8
l1d-1 read 00002ccb051018c0 00 0003 01 03 1 [MdW] 37430a6ae2ed6122
l1d-0 write 00009a603343d580 00 0006 00 03 1 [MdW] 020e5e644f2ad57f
mem read 0000bb75517c9b80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000bb75517c9b80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000bb75517c9b80 00 0014 02 03 0 [MdW] 7b7218fdb561dee4
mem read 00001cff7cd11500 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001cff7cd11500 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00001cff7cd11500 00 0004 02 03 0 [MdW] 0e4d4bf31c06ad0e
l1d-1 write 000043ca5c07b240 00 0009 01 03 1 [MdW] 0b03165c64b25b52
mem read 0000cb3c5e49d5c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000cb3c5e49d5c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000cb3c5e49d5c0 00 0007 00 03 0 [MdW] 96d85584f5f75334
l1d-1 read 0000bb75517c9b80 00 0014 02 03 1 [MdW] 7b7218fdb561dee4
l1d-0 write 0000c662cc646980 00 0006 02 03 1 [MdW] 3987fbb7ff0e452f
mem read 00002cbcc4bef440 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002cbcc4bef440 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00002cbcc4bef440 00 0001 01 03 0 [MdW] ab6b5c43445d1eaf
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] a4ca6d0b4cdb32f8
l1d-0 read 000087a8e7348c80 00 0002 01 03 1 [MdW] f525efac2f3cf7fd
mem read 0000605ba6057540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000605ba6057540 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000605ba6057540 00 0005 01 03 0 [MdW] cfc80859e336b176
l1d-1 read 0000ed89583b9580 00 0006 02 03 1 [MdW] df138b65bf1ba81e
mem read 00007c5378aae380 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007c5378aae380 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00007c5378aae380 00 0014 03 03 0 [MdW] 53d9575e9769a4f8
l1d-1 write 000016f64b35ad40 00 0005 00 03 1 [MdW] f0cf83fbebb65de6
mem read 0000f66f9acff100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f66f9acff100 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000f66f9acff100 00 0004 02 03 0 [MdW] c7f5ae053c4b54cf
mem read 00007b42479583c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007b42479583c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00007b42479583c0 00 0015 00 03 0 [MdW] 1fca5feae77517e8
l1d-0 read 0000a65bf8171680 00 0010 01 03 1 [MdW] e92d6a6544b2e04a
mem read 0000b78d2a790900 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b78d2a790900 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000b78d2a790900 00 0004 03 03 0 [MdW] 4b286894f1b254a4
mem read 000065dc0cb58f00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000065dc0cb58f00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000065dc0cb58f00 00 0012 01 03 0 [MdW] 33d1db34ba341148
mem read 00003be6b01765c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003be6b01765c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00003be6b01765c0 00 0007 01 03 0 [MdW] b07105a9381db806
l1d-0 read 000057ef223eb2c0 00 0011 00 03 1 [MdW] fcc2619e1793c524
mem read 0000fa408c35ba00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000fa408c35ba00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000fa408c35ba00 00 0008 01 03 0 [MdW] 0f510d0082c38a2a
l1d-1 read 00002814eea2cf80 00 0014 01 03 1 [MdW] ac76c3067a593258
mem read 0000792d5ad259c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000792d5ad259c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000792d5ad259c0 00 0007 01 03 0 [MdW] 14078fc202486941
l1d-1 read 0000bb75517c9b80 00 0014 02 03 1 [MdW] 7b7218fdb561dee4
mem read 000073703a455800 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000073703a455800 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000073703a455800 00 0000 01 03 0 [MdW] 84b896eee0ea8bfb
mem read 0000bd16375b9000 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000bd16375b9000 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000bd16375b9000 00 0000 01 03 0 [MdW] 471f2cfa81d3ac5a
mem read 00001ad58832f640 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001ad58832f640 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00001ad58832f640 00 0009 01 03 0 [MdW] 1ff8b0b6c912b3c9
mem read 00006a25c963e900 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006a25c963e900 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00006a25c963e900 00 0004 03 03 0 [MdW] ae43245b0fd92af4
mem read 0000acd63c8d1880 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000acd63c8d1880 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000acd63c8d1880 00 0002 02 03 0 [MdW] 8995eace539d8fd8
mem read 00006d3f203d79c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006d3f203d79c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00006d3f203d79c0 00 0007 02 03 0 [MdW] 6e8f92dc574cb465
mem read 00004dcada9f52c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004dcada9f52c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00004dcada9f52c0 00 0011 01 03 0 [MdW] df2509b29fb62744
mem read 000030295cbb89c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000030295cbb89c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000030295cbb89c0 00 0007 03 03 0 [MdW] 9dc7657dd695cd8c
mem read 000035b33dc0d400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000035b33dc0d400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000035b33dc0d400 00 0000 02 03 0 [MdW] b3fa26fb2bb1072d
mem read 00004f46a7d2ea80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004f46a7d2ea80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00004f46a7d2ea80 00 0010 00 03 0 [MdW] 5cc39e710db580f0
mem read 00000b438aedb2c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00000b438aedb2c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00000b438aedb2c0 00 0011 02 03 0 [MdW] 5ecbef1f072d7164
mem write 00001cff7cd11500 -1 -001 -1 -1 1 [MdW] 0e4d4bf31c06ad0e
l2 read 00001cff7cd11500 -1 -001 -1 -1 0 [ScR] 0e4d4bf31c06ad0e
l1i-1 read 00001cff7cd11500 00 0004 00 03 0 [ScR] 0e4d4bf31c06ad0e
mem read 0000aaaf5454e400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000aaaf5454e400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000aaaf5454e400 00 0000 03 03 0 [MdW] 9eb60b8de359e983
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] a4ca6d0b4cdb32f8
mem read 0000a40aa8666480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a40aa8666480 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000a40aa8666480 00 0002 03 03 0 [MdW] 173c5f4478ac31b3
mem read 0000c0773417d200 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c0773417d200 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000c0773417d200 00 0008 02 03 0 [MdW] 729cc719bf00c2c7
l2 write 00005066f9d0b480 00 0018 00 07 0 [SdW] 137a92d6da9c98a8
l1d-0 evict 00005066f9d0b480 00 0002 00 00 [IcR] 137a92d6da9c98a8
mem read 0000f448c073e880 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f448c073e880 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000f448c073e880 00 0002 00 03 0 [MdW] 563a359b9f3978a0
mem read 0000c86d27a3d040 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c86d27a3d040 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000c86d27a3d040 00 0001 02 03 0 [MdW] 3034aadc83c0c12c
mem read 0000883768b6a3c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000883768b6a3c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000883768b6a3c0 00 0015 01 03 0 [MdW] 380bc1e40165d228
mem read 0000012233313580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000012233313580 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000012233313580 00 0006 03 03 0 [MdW] 035a85acce905784
l2 write 000039a6b2ebcd00 00 0020 00 07 0 [SdW] 92f3c8ee96a39ad8
l1d-1 evict 000039a6b2ebcd00 00 0004 00 00 [IcR] 92f3c8ee96a39ad8
mem read 0000803bdde89900 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000803bdde89900 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000803bdde89900 00 0004 00 03 0 [MdW] 4149d9c5522ff4aa
l1d-1 write 0000883768b6a3c0 00 0015 01 03 1 [MdW] 2ff8705424575c12
mem read 00006980d04a3400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006980d04a3400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00006980d04a3400 00 0000 02 03 0 [MdW] 7e87cb6b5a7c5b20
mem read 000015c671e31180 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000015c671e31180 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000015c671e31180 00 0006 03 03 0 [MdW] f2046a186505ea97
l1d-1 read 0000242235f69b80 00 0014 00 03 1 [MdW] cd0f83c76caa72c4
l1d-1 read 00002d9824d83d80 00 0006 01 03 1 [MdW] 101aad3e107bdbf7
l1d-1 evict 0000c0773417d200 00 0008 02 03 [IcR] 729cc719bf00c2c7
mem write 0000c0773417d200 -1 -001 -1 -1 1 [MdW] 729cc719bf00c2c7
l2 read 0000c0773417d200 -1 -001 -1 -1 0 [IcR] 729cc719bf00c2c7
l1d-0 write 0000c0773417d200 00 0008 02 03 0 [MdW] 2f46e337ff7072cf
l1d-1 write 00004f46a7d2ea80 00 0010 00 03 1 [MdW] 72fa0bb71628eb88
mem read 0000136b8cb094c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000136b8cb094c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000136b8cb094c0 00 0003 02 03 0 [MdW] 0222675c83eb04dd
l1d-0 write 000052d61b6d5a00 00 0008 00 03 1 [MdW] f2ba597f630895bc
l2 write 00007c5378aae380 00 0014 00 07 0 [SdW] 53d9575e9769a4f8
l1d-1 evict 00007c5378aae380 00 0014 03 00 [IcR] 53d9575e9769a4f8
mem read 00007d0902e50f80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007d0902e50f80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00007d0902e50f80 00 0014 03 03 0 [MdW] 7db9c8fa6d0f39e2
mem read 0000a0082dda2840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a0082dda2840 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000a0082dda2840 00 0001 01 03 0 [MdW] e32363faf3579882
l1d-0 read 00009a603343d580 00 0006 00 03 1 [MdW] 020e5e644f2ad57f
l1d-0 write 0000c662cc646980 00 0006 02 03 1 [MdW] 2890bd85006b410f
l1d-1 read 0000b5cd51622240 00 0009 00 03 1 [MdW] 4f9c1718ca9de14e
l1d-1 write 00007d0902e50f80 00 0014 03 03 1 [MdW] 4175eb4d906962c0
l1d-1 read 00004f46a7d2ea80 00 0010 00 03 1 [MdW] 72fa0bb71628eb88
l1d-1 read 000043ca5c07b240 00 0009 01 03 1 [MdW] 0b03165c64b25b52
l1d-0 read 00009a603343d580 00 0006 00 03 1 [MdW] 020e5e644f2ad57f
l1d-1 read 00002d9824d83d80 00 0006 01 03 1 [MdW] 101aad3e107bdbf7
l1d-0 read 000057ef223eb2c0 00 0011 00 03 1 [MdW] fcc2619e1793c524
l1d-0 read 000015c671e31180 00 0006 03 03 1 [MdW] f2046a186505ea97
l1d-0 read 0000a65bf8171680 00 0010 01 03 1 [MdW] e92d6a6544b2e04a
mem read 00006f44ab8bcf80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006f44ab8bcf80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00006f44ab8bcf80 00 0014 00 03 0 [MdW] 53a8a8925ca7b5c1
mem write 00004f46a7d2ea80 -1 -001 -1 -1 1 [MdW] 72fa0bb71628eb88
l2 read 00004f46a7d2ea80 -1 -001 -1 -1 0 [IcR] 72fa0bb71628eb88
l1d-0 read 00004f46a7d2ea80 00 0010 02 03 0 [ScR] 72fa0bb71628eb88
l1d-1 read 0000a0082dda2840 00 0001 01 03 1 [MdW] e32363faf3579882
mem read 00004813c834cdc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004813c834cdc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00004813c834cdc0 00 0007 02 03 0 [MdW] 6490dcecd59b9e65
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l1d-1 read 00002d9824d83d80 00 0006 01 03 1 [MdW] 101aad3e107bdbf7
l1d-0 read 00001ad58832f640 00 0009 01 03 1 [MdW] 1ff8b0b6c912b3c9
mem read 0000045cce7b2a40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000045cce7b2a40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000045cce7b2a40 00 0009 02 03 0 [MdW] 9732b992490f2bec
l2 write 000087a8e7348c80 00 0018 01 06 0 [SdW] f525efac2f3cf7fd
l1d-0 evict 000087a8e7348c80 00 0002 01 00 [IcR] f525efac2f3cf7fd
mem read 0000418397142480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000418397142480 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000418397142480 00 0002 01 03 0 [MdW] d5ca42501735883b
mem read 0000908064eef6c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000908064eef6c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000908064eef6c0 00 0011 03 03 0 [MdW] f840ce71fef19440
mem read 0000d1a495bc3400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d1a495bc3400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000d1a495bc3400 00 0000 03 03 0 [MdW] b09506206c0eb875
mem read 00009fde26f888c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009fde26f888c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00009fde26f888c0 00 0003 01 03 0 [MdW] 8686d9ef6a6a287c
l2 write 00004d48d3ab6400 00 0016 00 07 0 [SdW] ba6e57907407aadf
l1d-1 evict 00004d48d3ab6400 00 0000 00 00 [IcR] ba6e57907407aadf
mem read 000013d16c815400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000013d16c815400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000013d16c815400 00 0000 00 03 0 [MdW] 25524688721323dc
mem read 000073f8f4229a80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000073f8f4229a80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000073f8f4229a80 00 0010 03 03 0 [MdW] 1702ea018319b29e
mem read 0000750cdfd9ed40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000750cdfd9ed40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000750cdfd9ed40 00 0005 02 03 0 [MdW] a1fecd85f61fe080
l1d-0 write 000019a40a160240 00 0009 00 03 1 [MdW] 003301b2273c5e28
mem read 000095873da506c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000095873da506c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000095873da506c0 00 0011 02 03 0 [MdW] 5d652850f1d45f1d
mem read 000000f97fae5cc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000000f97fae5cc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000000f97fae5cc0 00 0003 02 03 0 [MdW] 5a9b67dc4f76dfb0
l1d-0 read 0000b78d2a790900 00 0004 03 03 1 [MdW] 4b286894f1b254a4
mem read 0000c92c00098fc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c92c00098fc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000c92c00098fc0 00 0015 02 03 0 [MdW] 5ac8f2c9a0464889
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
mem read 000040f7755c2ac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000040f7755c2ac0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000040f7755c2ac0 00 0011 03 03 0 [MdW] 25a76a616407309f
l1d-1 write 000039a5e213fe00 00 0008 00 03 1 [MdW] 936f106a592e18f2
mem read 0000f76720bc2480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f76720bc2480 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000f76720bc2480 00 0002 00 03 0 [MdW] 565b8595108a30b2
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
l1d-0 write 0000c662cc646980 00 0006 02 03 1 [MdW] 07a6036c839cdbf5
l1d-1 read 0000883768b6a3c0 00 0015 01 03 1 [MdW] 2ff8705424575c12
l1d-0 write 0000c662cc646980 00 0006 02 03 1 [MdW] 5a40dd098e0e0eef
l2 write 00002814eea2cf80 00 0030 00 07 0 [SdW] ac76c3067a593258
l1d-1 evict 00002814eea2cf80 00 0014 01 00 [IcR] ac76c3067a593258
mem read 000092e2f479cf80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000092e2f479cf80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000092e2f479cf80 00 0014 01 03 0 [MdW] 33c61b349e0e4999
l1d-1 write 0000bb75517c9b80 00 0014 02 03 1 [MdW] 78786a2e713dca43
l1d-1 write 0000c20e6058a4c0 00 0003 00 03 1 [MdW] 9d29d9cac786a1e3
l2 write 000073703a455800 00 0000 00 07 0 [SdW] 84b896eee0ea8bfb
l1d-1 evict 000073703a455800 00 0000 01 00 [IcR] 84b896eee0ea8bfb
mem read 00007e3437831800 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007e3437831800 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00007e3437831800 00 0000 01 03 0 [MdW] ccaa263c2051e1d1
mem read 0000534534d814c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000534534d814c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000534534d814c0 00 0003 03 03 0 [MdW] 5488878000e9ca11
l1d-1 read 00006a25c963e900 00 0004 03 03 1 [MdW] ae43245b0fd92af4
l1d-0 write 000040f7755c2ac0 00 0011 03 03 1 [MdW] b7c65bf46efbfe6e
mem read 00006bf6751e90c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006bf6751e90c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00006bf6751e90c0 00 0003 03 03 0 [MdW] 1bb491472e86fbd8
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
l1d-0 write 00002cbcc4bef440 00 0001 01 03 1 [MdW] 4dbd028faad33d6c
mem read 0000ade5546e9640 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ade5546e9640 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000ade5546e9640 00 0009 03 03 0 [MdW] 292bf8907b74edd2
mem read 00008e48523b3e80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00008e48523b3e80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00008e48523b3e80 00 0010 01 03 0 [MdW] 9419ebae6d75d1b9
l1d-1 read 00002ccb051018c0 00 0003 01 03 1 [MdW] 37430a6ae2ed6122
l1d-0 read 00004dcada9f52c0 00 0011 01 03 1 [MdW] df2509b29fb62744
l1d-0 write 0000a6f9f0803d80 00 0006 01 03 1 [MdW] c0f82e8e69025d47
mem read 000063036c943940 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000063036c943940 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000063036c943940 00 0005 03 03 0 [MdW] fe254bc894940d80
l2 write 00001ad58832f640 00 0025 00 07 0 [SdW] 1ff8b0b6c912b3c9
l1d-0 evict 00001ad58832f640 00 0009 01 00 [IcR] 1ff8b0b6c912b3c9
mem read 0000d6eae7df0a40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d6eae7df0a40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000d6eae7df0a40 00 0009 01 03 0 [MdW] 212009caf997e0d1
mem read 000025cc871abf00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000025cc871abf00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000025cc871abf00 00 0012 00 03 0 [MdW] a36cd516217674c5
l1d-1 evict 00007a0ccec77d00 00 0004 01 00 [IcR] 603f902534bdd00d
mem read 0000fc3d1a588d00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000fc3d1a588d00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000fc3d1a588d00 00 0004 01 03 0 [MdW] 20d6291b6fceeaa3
l2 write 00005dfc154ee8c0 00 0003 00 07 0 [SdW] 8a7139c015313d43
l1d-0 evict 00005dfc154ee8c0 00 0003 00 00 [IcR] 8a7139c015313d43
mem read 00009a461a9864c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009a461a9864c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00009a461a9864c0 00 0003 00 03 0 [MdW] ba1ecfdec3d1dc5d
l1d-0 evict 00004f46a7d2ea80 00 0010 02 02 [IcR] 72fa0bb71628eb88
mem read 00004f46a7d2ea80 -1 -001 -1 -1 1 [McW] 72fa0bb71628eb88
l2 read 00004f46a7d2ea80 -1 -001 -1 -1 0 [IcR] 72fa0bb71628eb88
l1d-1 write 00004f46a7d2ea80 00 0010 00 03 0 [MdW] d8a5addb7e65e806
l1d-1 read 0000cb3c5e49d5c0 00 0007 00 03 1 [MdW] 96d85584f5f75334
l2 write 00003f232f338000 00 0000 01 06 0 [SdW] a2d413acae95e3cd
l1d-0 evict 00003f232f338000 00 0000 00 00 [IcR] a2d413acae95e3cd
l1d-1 evict 00007e3437831800 00 0000 01 03 [IcR] ccaa263c2051e1d1
mem write 00007e3437831800 -1 -001 -1 -1 1 [MdW] ccaa263c2051e1d1
l2 read 00007e3437831800 -1 -001 -1 -1 0 [IcR] ccaa263c2051e1d1
l1d-0 write 00007e3437831800 00 0000 00 03 0 [MdW] 9ac69dc0ff6bf852
l2 write 0000045cce7b2a40 00 0009 00 07 0 [SdW] 9732b992490f2bec
l1d-0 evict 0000045cce7b2a40 00 0009 02 00 [IcR] 9732b992490f2bec
mem write 00001ad58832f640 -1 -001 -1 -1 1 [MdW] 1ff8b0b6c912b3c9
l2 read 00001ad58832f640 00 0025 00 07 1 [IcR] 1ff8b0b6c912b3c9
l1d-0 write 00001ad58832f640 00 0009 02 03 0 [MdW] 84fce73def654b09
l1d-0 read 0000c86d27a3d040 00 0001 02 03 1 [MdW] 3034aadc83c0c12c
l1d-0 read 0000c662cc646980 00 0006 02 03 1 [MdW] 5a40dd098e0e0eef
l1d-0 write 00009a603343d580 00 0006 00 03 1 [MdW] c334dfcfde2552e3
l1d-0 write 0000c662cc646980 00 0006 02 03 1 [MdW] 816f140018ef71ee
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] f2ba597f630895bc
l1d-0 read 000019a40a160240 00 0009 00 03 1 [MdW] 003301b2273c5e28
l1d-0 read 000063036c943940 00 0005 03 03 1 [MdW] fe254bc894940d80
l1d-1 read 000016f64b35ad40 00 0005 00 03 1 [MdW] f0cf83fbebb65de6
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] 936f106a592e18f2
l1d-1 read 0000c97dfb94fd80 00 0006 00 03 1 [MdW] 866e8372e740908a
l2 write 0000242235f69b80 00 0014 01 06 0 [SdW] cd0f83c76caa72c4
l1d-1 evict 0000242235f69b80 00 0014 00 00 [IcR] cd0f83c76caa72c4
mem read 00005d35d68c9380 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005d35d68c9380 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00005d35d68c9380 00 0014 00 03 0 [MdW] 51bed99eb8f604e9
mem read 0000333bb344eb40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000333bb344eb40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000333bb344eb40 00 0013 01 03 0 [MdW] b8f60836dc885f73
l1d-0 read 0000c86d27a3d040 00 0001 02 03 1 [MdW] 3034aadc83c0c12c
l1d-1 write 000039a5e213fe00 00 0008 00 03 1 [MdW] 7892a8403ecb4af3
mem read 0000095a29bb9340 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000095a29bb9340 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000095a29bb9340 00 0013 00 03 0 [MdW] 482146cfbf6e77c6
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] f2ba597f630895bc
l1d-1 write 00008e48523b3e80 00 0010 01 03 1 [MdW] 665d67bf32230465
l1d-0 write 000000f97fae5cc0 00 0003 02 03 1 [MdW] d6f7e41866f9a4a8
mem read 00002c011c660300 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002c011c660300 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00002c011c660300 00 0012 02 03 0 [MdW] 7a2d736a5722d9e9
l2 write 000015c671e31180 00 0006 00 07 0 [SdW] f2046a186505ea97
l1d-0 evict 000015c671e31180 00 0006 03 00 [IcR] f2046a186505ea97
mem read 00000701e403e980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00000701e403e980 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00000701e403e980 00 0006 03 03 0 [MdW] d91c439474d9ea75
l1d-0 read 000095873da506c0 00 0011 02 03 1 [MdW] 5d652850f1d45f1d
l1d-1 write 00007d0902e50f80 00 0014 03 03 1 [MdW] b58da730dd4416c2
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l1d-1 read 0000bb75517c9b80 00 0014 02 03 1 [MdW] 78786a2e713dca43
l1d-0 read 000057ef223eb2c0 00 0011 00 03 1 [MdW] fcc2619e1793c524
l1d-1 write 0000883768b6a3c0 00 0015 01 03 1 [MdW] d8bb918563e07612
l1d-1 read 0000883768b6a3c0 00 0015 01 03 1 [MdW] d8bb918563e07612
l1d-0 read 0000ade5546e9640 00 0009 03 03 1 [MdW] 292bf8907b74edd2
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l1d-1 write 0000095a29bb9340 00 0013 00 03 1 [MdW] 43acdf402f9215fc
l1d-0 write 000057ef223eb2c0 00 0011 00 03 1 [MdW] 33fc07f29b2cfaff
l1d-0 read 0000aaaf5454e400 00 0000 03 03 1 [MdW] 9eb60b8de359e983
l1d-1 read 0000bb75517c9b80 00 0014 02 03 1 [MdW] 78786a2e713dca43
l1d-0 write 000073f8f4229a80 00 0010 03 03 1 [MdW] 64a74b273feb83c9
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] 7892a8403ecb4af3
l1d-1 read 0000012233313580 00 0006 03 03 1 [MdW] 035a85acce905784
l1d-0 read 000063036c943940 00 0005 03 03 1 [MdW] fe254bc894940d80
mem read 0000bb381b2db600 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000bb381b2db600 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000bb381b2db600 00 0008 02 03 0 [MdW] e215c0b496405f9e
l1d-1 read 00007d0902e50f80 00 0014 03 03 1 [MdW] b58da730dd4416c2
l2 write 00007a0ccec77d00 00 0020 01 06 0 [ScR] 603f902534bdd00d
l1d-0 evict 00007a0ccec77d00 00 0004 00 00 [IcR] 603f902534bdd00d
mem read 00008a30b4505100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00008a30b4505100 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00008a30b4505100 00 0004 00 03 0 [MdW] a3b0cfd024518f31
l2 write 0000ed89583b9580 00 0022 00 07 0 [SdW] df138b65bf1ba81e
l1d-1 evict 0000ed89583b9580 00 0006 02 00 [IcR] df138b65bf1ba81e
mem read 0000ccd4a1523d80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ccd4a1523d80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000ccd4a1523d80 00 0006 02 03 0 [MdW] 2e58730cb2f43705
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
l2 write 0000acd63c8d1880 00 0002 00 07 0 [SdW] 8995eace539d8fd8
l1d-0 evict 0000acd63c8d1880 00 0002 02 00 [IcR] 8995eace539d8fd8
mem write 000087a8e7348c80 -1 -001 -1 -1 1 [MdW] f525efac2f3cf7fd
l2 read 000087a8e7348c80 00 0018 01 06 1 [IcR] f525efac2f3cf7fd
l1d-0 write 000087a8e7348c80 00 0002 02 03 0 [MdW] 06d5c4a0dca92e1a
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
mem read 0000b17eb0082080 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b17eb0082080 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000b17eb0082080 00 0002 01 03 0 [MdW] d9a4ae41c0817096
l1d-0 read 000057ef223eb2c0 00 0011 00 03 1 [MdW] 33fc07f29b2cfaff
l1d-0 write 00002cbcc4bef440 00 0001 01 03 1 [MdW] e21542a5128e9ecb
l2 write 0000a40aa8666480 00 0018 02 05 0 [SdW] 173c5f4478ac31b3
l1d-0 evict 0000a40aa8666480 00 0002 03 00 [IcR] 173c5f4478ac31b3
mem write 0000acd63c8d1880 -1 -001 -1 -1 1 [MdW] 8995eace539d8fd8
l2 read 0000acd63c8d1880 00 0002 00 07 1 [IcR] 8995eace539d8fd8
l1d-0 read 0000acd63c8d1880 00 0002 03 03 0 [ScR] 8995eace539d8fd8
l1d-1 read 00002ccb051018c0 00 0003 01 03 1 [MdW] 37430a6ae2ed6122
l1d-1 read 0000883768b6a3c0 00 0015 01 03 1 [MdW] d8bb918563e07612
l2 write 0000792d5ad259c0 00 0007 00 07 0 [SdW] 14078fc202486941
l1d-1 evict 0000792d5ad259c0 00 0007 01 00 [IcR] 14078fc202486941
mem read 0000ecb652ef69c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ecb652ef69c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000ecb652ef69c0 00 0007 01 03 0 [MdW] 9b9abf9df1c1a30b
l1d-0 evict 000066e78b358f00 00 0012 00 01 [IcR] 46e305bdddfc6574
mem write 000066e78b358f00 -1 -001 -1 -1 1 [MdW] 46e305bdddfc6574
l2 read 000066e78b358f00 -1 -001 -1 -1 0 [IcR] 46e305bdddfc6574
l1d-1 write 000066e78b358f00 00 0012 01 03 0 [MdW] 4be2debb8d9625f2
l1d-0 write 0000f448c073e880 00 0002 00 03 1 [MdW] 559a57ec385bc2c2
mem read 0000f029765c7540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f029765c7540 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000f029765c7540 00 0005 01 03 0 [MdW] 2b0306dcb419a086
l1d-1 read 00002d9824d83d80 00 0006 01 03 1 [MdW] 101aad3e107bdbf7
l2 write 0000d6eae7df0a40 00 0009 01 06 0 [SdW] 212009caf997e0d1
l1d-0 evict 0000d6eae7df0a40 00 0009 01 00 [IcR] 212009caf997e0d1
mem write 0000045cce7b2a40 -1 -001 -1 -1 1 [MdW] 9732b992490f2bec
l2 read 0000045cce7b2a40 00 0009 00 07 1 [IcR] 9732b992490f2bec
l1d-0 read 0000045cce7b2a40 00 0009 01 03 0 [ScR] 9732b992490f2bec
l1d-1 write 0000d99af3531440 00 0001 00 03 1 [MdW] 9dd6e27e91bc9863
mem read 00006a36c42b4840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006a36c42b4840 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00006a36c42b4840 00 0001 02 03 0 [MdW] b53b1938ff066c6d
mem read 00001c9702375bc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001c9702375bc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00001c9702375bc0 00 0015 03 03 0 [MdW] 916619a5f0fd52ba
l1d-0 read 000019a40a160240 00 0009 00 03 1 [MdW] 003301b2273c5e28
l1d-0 read 0000418397142480 00 0002 01 03 1 [MdW] d5ca42501735883b
l1d-1 write 0000095a29bb9340 00 0013 00 03 1 [MdW] 67fb54c3292395a9
l2 write 0000136b8cb094c0 00 0019 00 07 0 [SdW] 0222675c83eb04dd
l1d-1 evict 0000136b8cb094c0 00 0003 02 00 [IcR] 0222675c83eb04dd
mem read 000050012c6eb8c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000050012c6eb8c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000050012c6eb8c0 00 0003 02 03 0 [MdW] 8d505e21d3399d55
l1d-1 write 000092e2f479cf80 00 0014 01 03 1 [MdW] d17309df336a0e01
l1d-0 read 000065dc0cb58f00 00 0012 01 03 1 [MdW] 33d1db34ba341148
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
l1d-0 read 00008a30b4505100 00 0004 00 03 1 [MdW] a3b0cfd024518f31
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l1d-1 read 0000b5cd51622240 00 0009 00 03 1 [MdW] 4f9c1718ca9de14e
l1d-1 read 0000908064eef6c0 00 0011 03 03 1 [MdW] f840ce71fef19440
mem read 0000fe371a542400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000fe371a542400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000fe371a542400 00 0000 01 03 0 [MdW] 0968e82e4bb02b18
mem read 0000f27b5523ddc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f27b5523ddc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000f27b5523ddc0 00 0007 03 03 0 [MdW] 8a77fd2642a4e939
l1d-0 read 0000605ba6057540 00 0005 01 03 1 [MdW] cfc80859e336b176
l2 write 00001cff7cd11500 00 0020 02 06 0 [ScR] 0e4d4bf31c06ad0e
l1d-1 evict 00001cff7cd11500 00 0004 02 00 [IcR] 0e4d4bf31c06ad0e
mem read 00001fd6787ba100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001fd6787ba100 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00001fd6787ba100 00 0004 02 03 0 [MdW] df1b827b0bffd943
mem read 000049889647d200 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000049889647d200 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000049889647d200 00 0008 03 03 0 [MdW] 77793b7a2d13abb1
l2 write 00005d35d68c9380 00 0014 02 06 0 [SdW] 51bed99eb8f604e9
l1d-1 evict 00005d35d68c9380 00 0014 00 00 [IcR] 51bed99eb8f604e9
mem read 00006d9316738f80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006d9316738f80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00006d9316738f80 00 0014 00 03 0 [MdW] 6700e6b15b3571ec
l1d-1 write 00000b438aedb2c0 00 0011 02 03 1 [MdW] f960a061cdcbd97f
l1d-1 write 00007d0902e50f80 00 0014 03 03 1 [MdW] cb58c668f7241e9f
l1d-1 read 0000883768b6a3c0 00 0015 01 03 1 [MdW] d8bb918563e07612
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] f2ba597f630895bc
l1d-1 read 00003bd14ab212c0 00 0011 01 03 1 [MdW] 338c39d468604fc8
l1d-1 read 00001c9702375bc0 00 0015 03 03 1 [MdW] 916619a5f0fd52ba
l1d-0 read 00007e3437831800 00 0000 00 03 1 [MdW] 9ac69dc0ff6bf852
l1d-0 read 0000045cce7b2a40 00 0009 01 03 1 [ScR] 9732b992490f2bec
l1d-0 read 000073f8f4229a80 00 0010 03 03 1 [MdW] 64a74b273feb83c9
l1d-1 write 0000012233313580 00 0006 03 03 1 [MdW] 0aa2d7ab5dfce8cc
mem read 00003174403caf00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003174403caf00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00003174403caf00 00 0012 00 03 0 [MdW] e27dc8a846a78e56
l1d-1 write 000039a5e213fe00 00 0008 00 03 1 [MdW] 8dc08ec49d595537
l1d-0 write 000065dc0cb58f00 00 0012 01 03 1 [MdW] 5d6e440d0dd55dd5
mem read 0000e030a3d78740 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e030a3d78740 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000e030a3d78740 00 0013 01 03 0 [MdW] bccc952adbed9749
l1d-1 read 000043ca5c07b240 00 0009 01 03 1 [MdW] 0b03165c64b25b52
l2 write 0000033616c7e540 00 0021 00 07 0 [SdW] 505e4c2fc450e2ad
l1d-0 evict 0000033616c7e540 00 0005 00 00 [IcR] 505e4c2fc450e2ad
mem read 0000e4f3a6fe9140 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e4f3a6fe9140 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000e4f3a6fe9140 00 0005 00 03 0 [MdW] 3cd13398bb7792b5
l1d-0 read 00009a461a9864c0 00 0003 00 03 1 [MdW] ba1ecfdec3d1dc5d
l1d-1 read 0000012233313580 00 0006 03 03 1 [MdW] 0aa2d7ab5dfce8cc
mem read 00001b6fc10d9840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001b6fc10d9840 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00001b6fc10d9840 00 0001 03 03 0 [MdW] 7f5c255dd3c361e0
l1d-1 read 00002d9824d83d80 00 0006 01 03 1 [MdW] 101aad3e107bdbf7
l1d-1 write 000066e78b358f00 00 0012 01 03 1 [MdW] 9d96c52a7d69d60e
l1d-1 read 0000bb381b2db600 00 0008 02 03 1 [MdW] e215c0b496405f9e
l1d-1 read 0000d99af3531440 00 0001 00 03 1 [MdW] 9dd6e27e91bc9863
l2 write 0000c97dfb94fd80 00 0022 01 06 0 [SdW] 866e8372e740908a
l1d-1 evict 0000c97dfb94fd80 00 0006 00 00 [IcR] 866e8372e740908a
mem write 0000ed89583b9580 -1 -001 -1 -1 1 [MdW] df138b65bf1ba81e
l2 read 0000ed89583b9580 00 0022 00 07 1 [IcR] df138b65bf1ba81e
l1d-1 read 0000ed89583b9580 00 0006 00 03 0 [ScR] df138b65bf1ba81e
mem write 00006bf6751e90c0 -1 -001 -1 -1 1 [MdW] 1bb491472e86fbd8
l2 read 00006bf6751e90c0 -1 -001 -1 -1 0 [ScR] 1bb491472e86fbd8
l1i-1 read 00006bf6751e90c0 00 0003 00 03 0 [ScR] 1bb491472e86fbd8
mem write 0000ccd4a1523d80 -1 -001 -1 -1 1 [MdW] 2e58730cb2f43705
l2 read 0000ccd4a1523d80 -1 -001 -1 -1 0 [ScR] 2e58730cb2f43705
l1i-1 read 0000ccd4a1523d80 00 0006 00 03 0 [ScR] 2e58730cb2f43705
l2 write 0000ccd4a1523d80 00 0022 02 06 0 [ScR] 2e58730cb2f43705
l1d-1 evict 0000ccd4a1523d80 00 0006 02 00 [IcR] 2e58730cb2f43705
mem read 0000780ab040b980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000780ab040b980 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000780ab040b980 00 0006 02 03 0 [MdW] e88dd55a43222698
l1d-0 read 0000c0773417d200 00 0008 02 03 1 [MdW] 2f46e337ff7072cf
l1d-1 read 000043ca5c07b240 00 0009 01 03 1 [MdW] 0b03165c64b25b52
l1i-1 read 0000ccd4a1523d80 00 0006 00 03 1 [ScR] 2e58730cb2f43705
l1d-1 read 0000ed89583b9580 00 0006 00 03 1 [ScR] df138b65bf1ba81e
l2 write 0000ff71c82dc900 00 0004 00 07 0 [SdW] 75c7c14436ed60c6
l1d-0 evict 0000ff71c82dc900 00 0004 01 00 [IcR] 75c7c14436ed60c6
mem write 00001fd6787ba100 -1 -001 -1 -1 1 [MdW] df1b827b0bffd943
l2 read 00001fd6787ba100 -1 -001 -1 -1 0 [IcR] df1b827b0bffd943
l1d-0 read 00001fd6787ba100 00 0004 01 03 0 [ScR] df1b827b0bffd943
l2 write 0000a6f9f0803d80 00 0022 03 06 0 [SdW] c0f82e8e69025d47
l1d-0 evict 0000a6f9f0803d80 00 0006 01 00 [IcR] c0f82e8e69025d47
mem read 00002b4766af8580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002b4766af8580 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00002b4766af8580 00 0006 01 03 0 [MdW] 66d6c51c457e98ea
l2 write 0000750cdfd9ed40 00 0021 01 06 0 [SdW] a1fecd85f61fe080
l1d-0 evict 0000750cdfd9ed40 00 0005 02 00 [IcR] a1fecd85f61fe080
mem read 0000ba16e8b8b540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ba16e8b8b540 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000ba16e8b8b540 00 0005 02 03 0 [MdW] 9baa72244d2761d2
mem read 000042ff28b0ea40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000042ff28b0ea40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000042ff28b0ea40 00 0009 02 03 0 [MdW] 21186ad558f150fb
l1d-1 write 00002d9824d83d80 00 0006 01 03 1 [MdW] c921aab4717f265e
l1d-0 write 00009fde26f888c0 00 0003 01 03 1 [MdW] e1b5104d91b6911e
l2 write 0000bb75517c9b80 00 0014 03 06 0 [SdW] 78786a2e713dca43
l1d-1 evict 0000bb75517c9b80 00 0014 02 00 [IcR] 78786a2e713dca43
mem write 00002814eea2cf80 -1 -001 -1 -1 1 [MdW] ac76c3067a593258
l2 read 00002814eea2cf80 00 0030 00 07 1 [IcR] ac76c3067a593258
l1d-1 read 00002814eea2cf80 00 0014 02 03 0 [ScR] ac76c3067a593258
l1i-1 read 00001cff7cd11500 00 0004 00 03 1 [ScR] 0e4d4bf31c06ad0e
l2 write 00009a603343d580 00 0022 04 06 0 [SdW] c334dfcfde2552e3
l1d-0 evict 00009a603343d580 00 0006 00 00 [IcR] c334dfcfde2552e3
l1d-1 evict 0000ed89583b9580 00 0006 00 02 [IcR] df138b65bf1ba81e
mem read 0000ed89583b9580 -1 -001 -1 -1 1 [McW] df138b65bf1ba81e
l2 read 0000ed89583b9580 -1 -001 -1 -1 0 [IcR] df138b65bf1ba81e
l1d-0 write 0000ed89583b9580 00 0006 00 03 0 [MdW] 6c07dacfdb56821e
l1d-0 write 000063036c943940 00 0005 03 03 1 [MdW] 05816e4fa46226e6
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] 8dc08ec49d595537
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
l2 write 000092e2f479cf80 00 0030 01 06 0 [SdW] d17309df336a0e01
l1d-1 evict 000092e2f479cf80 00 0014 01 00 [IcR] d17309df336a0e01
mem read 0000b1312a1f2f80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b1312a1f2f80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000b1312a1f2f80 00 0014 01 03 0 [MdW] 63f4a195a598fedc
l2 write 0000bd16375b9000 00 0000 02 06 0 [SdW] 471f2cfa81d3ac5a
l1d-0 evict 0000bd16375b9000 00 0000 01 00 [IcR] 471f2cfa81d3ac5a
mem write 00003f232f338000 -1 -001 -1 -1 1 [MdW] a2d413acae95e3cd
l2 read 00003f232f338000 00 0000 01 06 1 [IcR] a2d413acae95e3cd
l1d-0 read 00003f232f338000 00 0000 01 03 0 [ScR] a2d413acae95e3cd
l2 write 00001ad58832f640 00 0025 01 06 0 [SdW] 84fce73def654b09
l1d-0 evict 00001ad58832f640 00 0009 02 00 [IcR] 84fce73def654b09
mem read 00004c22aaaafa40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004c22aaaafa40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 00004c22aaaafa40 00 0009 02 03 0 [MdW] 508089914b57b049
l2 write 000035b33dc0d400 00 0016 01 06 0 [SdW] b3fa26fb2bb1072d
l1d-0 evict 000035b33dc0d400 00 0000 02 00 [IcR] b3fa26fb2bb1072d
mem write 0000bd16375b9000 -1 -001 -1 -1 1 [MdW] 471f2cfa81d3ac5a
l2 read 0000bd16375b9000 00 0000 02 06 1 [IcR] 471f2cfa81d3ac5a
l1d-0 read 0000bd16375b9000 00 0000 02 03 0 [ScR] 471f2cfa81d3ac5a
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] 8dc08ec49d595537
l2 write 0000ade5546e9640 00 0025 02 06 0 [SdW] 292bf8907b74edd2
l1d-0 evict 0000ade5546e9640 00 0009 03 00 [IcR] 292bf8907b74edd2
mem write 00001ad58832f640 -1 -001 -1 -1 1 [MdW] 84fce73def654b09
l2 read 00001ad58832f640 00 0025 01 06 1 [IcR] 84fce73def654b09
l1d-0 write 00001ad58832f640 00 0009 03 03 0 [MdW] 42b739607dd8504e
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] 8dc08ec49d595537
l1d-0 read 000018c9dccfc840 00 0001 00 03 1 [MdW] 83b569fd7e2f93d0
l2 write 0000c20e6058a4c0 00 0019 01 06 0 [SdW] 9d29d9cac786a1e3
l1d-1 evict 0000c20e6058a4c0 00 0003 00 00 [IcR] 9d29d9cac786a1e3
mem write 0000136b8cb094c0 -1 -001 -1 -1 1 [MdW] 0222675c83eb04dd
l2 read 0000136b8cb094c0 00 0019 00 07 1 [IcR] 0222675c83eb04dd
l1d-1 write 0000136b8cb094c0 00 0003 00 03 0 [MdW] 4d51034c84140818
l1d-1 write 000013d16c815400 00 0000 00 03 1 [MdW] 7d923acd36856c0b
l1d-0 read 000019a40a160240 00 0009 00 03 1 [MdW] 003301b2273c5e28
l1d-0 read 0000333bb344eb40 00 0013 01 03 1 [MdW] b8f60836dc885f73
l2 write 00006bf6751e90c0 00 0003 01 06 0 [ScR] 1bb491472e86fbd8
l1d-1 evict 00006bf6751e90c0 00 0003 03 00 [IcR] 1bb491472e86fbd8
mem read 000093de24a554c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000093de24a554c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000093de24a554c0 00 0003 03 03 0 [MdW] e1280befc25cd4a1
mem read 0000443a27100c40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000443a27100c40 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000443a27100c40 00 0001 03 03 0 [MdW] 3be61c8763ba8f77
l1d-0 read 00001ad58832f640 00 0009 03 03 1 [MdW] 42b739607dd8504e
l1d-1 read 0000e030a3d78740 00 0013 01 03 1 [MdW] bccc952adbed9749
l1d-1 read 000049889647d200 00 0008 03 03 1 [MdW] 77793b7a2d13abb1
l1d-1 read 0000b1312a1f2f80 00 0014 01 03 1 [MdW] 63f4a195a598fedc
l2 write 0000c662cc646980 00 0006 01 06 0 [SdW] 816f140018ef71ee
l1d-0 evict 0000c662cc646980 00 0006 02 00 [IcR] 816f140018ef71ee
mem write 0000780ab040b980 -1 -001 -1 -1 1 [MdW] e88dd55a43222698
l2 read 0000780ab040b980 -1 -001 -1 -1 0 [IcR] e88dd55a43222698
l1d-0 read 0000780ab040b980 00 0006 02 03 0 [ScR] e88dd55a43222698
l2 write 00000701e403e980 00 0006 02 06 0 [SdW] d91c439474d9ea75
l1d-0 evict 00000701e403e980 00 0006 03 00 [IcR] d91c439474d9ea75
mem write 00009a603343d580 -1 -001 -1 -1 1 [MdW] c334dfcfde2552e3
l2 read 00009a603343d580 00 0022 04 06 1 [IcR] c334dfcfde2552e3
l1d-0 write 00009a603343d580 00 0006 03 03 0 [MdW] e4bd1c98fd7a6b9f
l1d-1 read 000039a5e213fe00 00 0008 00 03 1 [MdW] 8dc08ec49d595537
l1d-0 read 000057ef223eb2c0 00 0011 00 03 1 [MdW] 33fc07f29b2cfaff
l1d-0 read 00002c011c660300 00 0012 02 03 1 [MdW] 7a2d736a5722d9e9
l1d-1 read 00002814eea2cf80 00 0014 02 03 1 [ScR] ac76c3067a593258
l1d-0 read 0000ed89583b9580 00 0006 00 03 1 [MdW] 6c07dacfdb56821e
l1d-1 read 0000b17eb0082080 00 0002 01 03 1 [MdW] d9a4ae41c0817096
l1d-0 write 00001ad58832f640 00 0009 03 03 1 [MdW] f1d026232e24dd48
l1d-1 write 0000095a29bb9340 00 0013 00 03 1 [MdW] 398750ee00ee1b8d
l2 write 0000aaaf5454e400 00 0016 02 06 0 [SdW] 9eb60b8de359e983
l1d-0 evict 0000aaaf5454e400 00 0000 03 00 [IcR] 9eb60b8de359e983
mem write 000035b33dc0d400 -1 -001 -1 -1 1 [MdW] b3fa26fb2bb1072d
l2 read 000035b33dc0d400 00 0016 01 06 1 [IcR] b3fa26fb2bb1072d
l1d-0 read 000035b33dc0d400 00 0000 03 03 0 [ScR] b3fa26fb2bb1072d
l1d-1 read 000050012c6eb8c0 00 0003 02 03 1 [MdW] 8d505e21d3399d55
l1d-1 read 00007b42479583c0 00 0015 00 03 1 [MdW] 1fca5feae77517e8
l1d-1 read 0000012233313580 00 0006 03 03 1 [MdW] 0aa2d7ab5dfce8cc
l1d-0 read 0000418397142480 00 0002 01 03 1 [MdW] d5ca42501735883b
l1d-1 read 000030295cbb89c0 00 0007 03 03 1 [MdW] 9dc7657dd695cd8c
l2 write 0000c477f06039c0 00 0007 01 06 0 [SdW] 07a43d1b05d30814
l1d-0 evict 0000c477f06039c0 00 0007 00 00 [IcR] 07a43d1b05d30814
mem read 0000c79b07073dc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c79b07073dc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000c79b07073dc0 00 0007 00 03 0 [MdW] 31397f4080bef586
l2 write 00006d9316738f80 00 0030 02 06 0 [SdW] 6700e6b15b3571ec
l1d-1 evict 00006d9316738f80 00 0014 00 00 [IcR] 6700e6b15b3571ec
mem write 0000bb75517c9b80 -1 -001 -1 -1 1 [MdW] 78786a2e713dca43
l2 read 0000bb75517c9b80 00 0014 03 06 1 [IcR] 78786a2e713dca43
l1d-1 read 0000bb75517c9b80 00 0014 00 03 0 [ScR] 78786a2e713dca43
l2 write 0000045cce7b2a40 00 0009 02 06 0 [ScR] 9732b992490f2bec
l1d-0 evict 0000045cce7b2a40 00 0009 01 00 [IcR] 9732b992490f2bec
mem write 0000ade5546e9640 -1 -001 -1 -1 1 [MdW] 292bf8907b74edd2
l2 read 0000ade5546e9640 00 0025 02 06 1 [IcR] 292bf8907b74edd2
l1d-0 write 0000ade5546e9640 00 0009 01 03 0 [MdW] 5209bc09f2897536
l2 write 00006d3f203d79c0 00 0007 02 06 0 [SdW] 6e8f92dc574cb465
l1d-1 evict 00006d3f203d79c0 00 0007 02 00 [IcR] 6e8f92dc574cb465
mem read 00008c87a41659c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00008c87a41659c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00008c87a41659c0 00 0007 02 03 0 [MdW] 80dfdd5b1394ac8c
l1d-0 read 000063036c943940 00 0005 03 03 1 [MdW] 05816e4fa46226e6
l1d-0 write 0000f448c073e880 00 0002 00 03 1 [MdW] 180aac06cd400335
l1d-1 write 00002d9824d83d80 00 0006 01 03 1 [MdW] 789fd761f0d30dbc
l2 write 00007d0902e50f80 00 0030 03 06 0 [SdW] cb58c668f7241e9f
l1d-1 evict 00007d0902e50f80 00 0014 03 00 [IcR] cb58c668f7241e9f
mem write 000092e2f479cf80 -1 -001 -1 -1 1 [MdW] d17309df336a0e01
l2 read 000092e2f479cf80 00 0030 01 06 1 [IcR] d17309df336a0e01
l1d-1 read 000092e2f479cf80 00 0014 03 03 0 [ScR] d17309df336a0e01
l1i-1 evict 00006bf6751e90c0 00 0003 00 03 [IcR] 1bb491472e86fbd8
l2 write 00002ccb051018c0 00 0003 02 06 0 [SdW] 37430a6ae2ed6122
l1d-1 evict 00002ccb051018c0 00 0003 01 00 [IcR] 37430a6ae2ed6122
mem read 00006bf6751e90c0 -1 -001 -1 -1 1 [McW] 1bb491472e86fbd8
l2 read 00006bf6751e90c0 00 0003 01 06 0 [IcR] 1bb491472e86fbd8
l1d-1 write 00006bf6751e90c0 00 0003 01 03 0 [MdW] c8f6e6fa1d07acdd
l1d-1 read 00002d9824d83d80 00 0006 01 03 1 [MdW] 789fd761f0d30dbc
l1d-0 read 000035b33dc0d400 00 0000 03 03 1 [ScR] b3fa26fb2bb1072d
l2 write 0000b1312a1f2f80 00 0030 04 05 0 [SdW] 63f4a195a598fedc
l1d-1 evict 0000b1312a1f2f80 00 0014 01 00 [IcR] 63f4a195a598fedc
mem write 00007d0902e50f80 -1 -001 -1 -1 1 [MdW] cb58c668f7241e9f
l2 read 00007d0902e50f80 00 0030 03 06 1 [IcR] cb58c668f7241e9f
l1d-1 read 00007d0902e50f80 00 0014 01 03 0 [ScR] cb58c668f7241e9f
mem read 000059bb4b098240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000059bb4b098240 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000059bb4b098240 00 0009 03 03 0 [MdW] a816cf9eeece6498
mem read 0000ffac00a71b80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ffac00a71b80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000ffac00a71b80 00 0014 01 03 0 [MdW] e178f2d9faca3dba
l2 write 0000cb3c5e49d5c0 00 0023 00 07 0 [SdW] 96d85584f5f75334
l1d-1 evict 0000cb3c5e49d5c0 00 0007 00 00 [IcR] 96d85584f5f75334
mem write 00006d3f203d79c0 -1 -001 -1 -1 1 [MdW] 6e8f92dc574cb465
l2 read 00006d3f203d79c0 00 0007 02 06 1 [IcR] 6e8f92dc574cb465
l1d-1 read 00006d3f203d79c0 00 0007 00 03 0 [ScR] 6e8f92dc574cb465
l2 write 00007e3437831800 00 0000 03 04 0 [SdW] 9ac69dc0ff6bf852
l1d-0 evict 00007e3437831800 00 0000 00 00 [IcR] 9ac69dc0ff6bf852
mem read 000057c442889400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000057c442889400 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 000057c442889400 00 0000 00 03 0 [MdW] 41f1903bf6dd8949
l1d-0 read 00004c22aaaafa40 00 0009 02 03 1 [MdW] 508089914b57b049
l1d-0 write 000063036c943940 00 0005 03 03 1 [MdW] 2f9cc192d2218654
l2 write 0000605ba6057540 00 0021 02 06 0 [SdW] cfc80859e336b176
l1d-0 evict 0000605ba6057540 00 0005 01 00 [IcR] cfc80859e336b176
mem write 0000033616c7e540 -1 -001 -1 -1 1 [MdW] 505e4c2fc450e2ad
l2 read 0000033616c7e540 00 0021 00 07 1 [IcR] 505e4c2fc450e2ad
l1d-0 read 0000033616c7e540 00 0005 01 03 0 [ScR] 505e4c2fc450e2ad
mem read 0000d9b688e86700 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d9b688e86700 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000d9b688e86700 00 0012 03 03 0 [MdW] 9cff86c4f5d7b689
l2 write 000078135d3f5200 00 0008 00 07 0 [SdW] 0ec0b79ad41353f3
l1d-1 evict 000078135d3f5200 00 0008 01 00 [IcR] 0ec0b79ad41353f3
mem write 0000c0773417d200 -1 -001 -1 -1 1 [MdW] 2f46e337ff7072cf
l2 read 0000c0773417d200 -1 -001 -1 -1 0 [IcR] 2f46e337ff7072cf
l1d-1 read 0000c0773417d200 00 0008 01 03 0 [ScR] 2f46e337ff7072cf
mem write 0000ed89583b9580 -1 -001 -1 -1 1 [MdW] 6c07dacfdb56821e
l2 read 0000ed89583b9580 -1 -001 -1 -1 0 [IcR] 6c07dacfdb56821e
l1d-1 read 0000ed89583b9580 00 0006 00 03 0 [ScR] 6c07dacfdb56821e
l1d-0 read 00003174403caf00 00 0012 00 03 1 [MdW] e27dc8a846a78e56
l1d-1 read 00005a86b1c246c0 00 0011 00 03 1 [MdW] a4ed9aaf1420592d
l1d-0 read 000018c9dccfc840 00 0001 00 03 1 [MdW] 83b569fd7e2f93d0
l1i-1 read 00001cff7cd11500 00 0004 00 03 1 [ScR] 0e4d4bf31c06ad0e
l1d-1 read 0000ed89583b9580 00 0006 00 03 1 [ScR] 6c07dacfdb56821e
l2 write 00002b4766af8580 00 0022 05 05 0 [SdW] 66d6c51c457e98ea
l1d-0 evict 00002b4766af8580 00 0006 01 00 [IcR] 66d6c51c457e98ea
mem write 0000c662cc646980 -1 -001 -1 -1 1 [MdW] 816f140018ef71ee
l2 read 0000c662cc646980 00 0006 01 06 1 [IcR] 816f140018ef71ee
l1d-0 write 0000c662cc646980 00 0006 01 03 0 [MdW] 9178878696de8c91
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l2 write 00006980d04a3400 00 0016 03 05 0 [SdW] 7e87cb6b5a7c5b20
l1d-1 evict 00006980d04a3400 00 0000 02 00 [IcR] 7e87cb6b5a7c5b20
mem write 000073703a455800 -1 -001 -1 -1 1 [MdW] 84b896eee0ea8bfb
l2 read 000073703a455800 00 0000 00 05 1 [IcR] 84b896eee0ea8bfb
l1d-1 read 000073703a455800 00 0000 02 03 0 [ScR] 84b896eee0ea8bfb
l1d-0 read 0000ffac00a71b80 00 0014 01 03 1 [MdW] e178f2d9faca3dba
l1d-1 write 0000095a29bb9340 00 0013 00 03 1 [MdW] 30470642eb039e5b
mem write 000059bb4b098240 -1 -001 -1 -1 1 [MdW] a816cf9eeece6498
l2 read 000059bb4b098240 -1 -001 -1 -1 0 [ScR] a816cf9eeece6498
l1i-1 read 000059bb4b098240 00 0009 00 03 0 [ScR] a816cf9eeece6498
l2 write 0000136b8cb094c0 00 0019 02 06 0 [SdW] 4d51034c84140818
l1d-1 evict 0000136b8cb094c0 00 0003 00 00 [IcR] 4d51034c84140818
mem write 00002ccb051018c0 -1 -001 -1 -1 1 [MdW] 37430a6ae2ed6122
l2 read 00002ccb051018c0 00 0003 02 06 1 [IcR] 37430a6ae2ed6122
l1d-1 read 00002ccb051018c0 00 0003 00 03 0 [ScR] 37430a6ae2ed6122
l1d-1 read 0000bb381b2db600 00 0008 02 03 1 [MdW] e215c0b496405f9e
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l2 write 0000f66f9acff100 00 0004 01 06 0 [SdW] c7f5ae053c4b54cf
l1d-0 evict 0000f66f9acff100 00 0004 02 00 [IcR] c7f5ae053c4b54cf
mem write 0000ff71c82dc900 -1 -001 -1 -1 1 [MdW] 75c7c14436ed60c6
l2 read 0000ff71c82dc900 00 0004 00 07 1 [IcR] 75c7c14436ed60c6
l1d-0 write 0000ff71c82dc900 00 0004 02 03 0 [MdW] ead7b1b4f2b53fe5
l1d-0 read 000049afd5e02b40 00 0013 00 03 1 [MdW] 0d73762cec20ec64
l1d-0 read 0000c662cc646980 00 0006 01 03 1 [MdW] 9178878696de8c91
l1d-1 read 00006a25c963e900 00 0004 03 03 1 [MdW] ae43245b0fd92af4
l1i-1 evict 00001cff7cd11500 00 0004 00 03 [IcR] 0e4d4bf31c06ad0e
l2 write 0000803bdde89900 00 0004 02 06 0 [SdW] 4149d9c5522ff4aa
l1d-1 evict 0000803bdde89900 00 0004 00 00 [IcR] 4149d9c5522ff4aa
mem read 00001cff7cd11500 -1 -001 -1 -1 1 [McW] 0e4d4bf31c06ad0e
l2 read 00001cff7cd11500 00 0020 02 06 0 [IcR] 0e4d4bf31c06ad0e
l1d-1 write 00001cff7cd11500 00 0004 00 03 0 [MdW] 6b0180ad5bfc6aa3
l1d-0 read 000000f97fae5cc0 00 0003 02 03 1 [MdW] d6f7e41866f9a4a8
l2 write 00002814eea2cf80 00 0030 05 04 0 [ScR] ac76c3067a593258
l1d-1 evict 00002814eea2cf80 00 0014 02 00 [IcR] ac76c3067a593258
mem write 0000242235f69b80 -1 -001 -1 -1 1 [MdW] cd0f83c76caa72c4
l2 read 0000242235f69b80 00 0014 01 05 1 [IcR] cd0f83c76caa72c4
l1d-1 write 0000242235f69b80 00 0014 02 03 0 [MdW] 22713d9fb41fbafa
l1i-1 read 000059bb4b098240 00 0009 00 03 1 [ScR] a816cf9eeece6498
l1d-0 read 000087a8e7348c80 00 0002 02 03 1 [MdW] 06d5c4a0dca92e1a
l2 write 0000b5cd51622240 00 0009 03 06 0 [SdW] 4f9c1718ca9de14e
l1d-1 evict 0000b5cd51622240 00 0009 00 00 [IcR] 4f9c1718ca9de14e
mem read 000095996286e640 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000095996286e640 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000095996286e640 00 0009 00 03 0 [MdW] f1b509cda89b9e6b
l2 write 00003f232f338000 00 0000 04 04 0 [ScR] a2d413acae95e3cd
l1d-0 evict 00003f232f338000 00 0000 01 00 [IcR] a2d413acae95e3cd
mem write 00006980d04a3400 -1 -001 -1 -1 1 [MdW] 7e87cb6b5a7c5b20
l2 read 00006980d04a3400 00 0016 03 06 1 [IcR] 7e87cb6b5a7c5b20
l1d-0 read 00006980d04a3400 00 0000 01 03 0 [ScR] 7e87cb6b5a7c5b20
l1d-1 read 0000780ab040b980 00 0006 02 03 1 [ScR] e88dd55a43222698
mem read 0000acd63c8d1880 -1 -001 -1 -1 1 [McW] 8995eace539d8fd8
l2 read 0000acd63c8d1880 -1 -001 -1 -1 0 [IcR] 8995eace539d8fd8
l1d-0 write 0000acd63c8d1880 00 0002 03 03 0 [MdW] 9440c2c945444381
l1d-0 read 000073f8f4229a80 00 0010 03 03 1 [MdW] 64a74b273feb83c9
l1d-0 read 0000c662cc646980 00 0006 01 03 1 [MdW] 9178878696de8c91
l1d-0 read 000087a8e7348c80 00 0002 02 03 1 [MdW] 06d5c4a0dca92e1a
l1d-0 read 000087a8e7348c80 00 0002 02 03 1 [MdW] 06d5c4a0dca92e1a
l1d-1 read 0000a0082dda2840 00 0001 01 03 1 [MdW] e32363faf3579882
l2 write 000049889647d200 00 0008 01 06 0 [SdW] 77793b7a2d13abb1
l1d-1 evict 000049889647d200 00 0008 03 00 [IcR] 77793b7a2d13abb1
mem read 00005d7bb4b3fa00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005d7bb4b3fa00 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00005d7bb4b3fa00 00 0008 03 03 0 [MdW] e908b2478d834bdb
l2 write 000019a40a160240 00 0009 04 06 0 [SdW] 003301b2273c5e28
l1d-0 evict 000019a40a160240 00 0009 00 00 [IcR] 003301b2273c5e28
l2 read 0000045cce7b2a40 00 0009 02 06 1 [IcR] 9732b992490f2bec
l1d-0 read 0000045cce7b2a40 00 0009 00 03 0 [ScR] 9732b992490f2bec
l2 write 0000534534d814c0 00 0019 03 06 0 [SdW] 5488878000e9ca11
l1d-0 evict 0000534534d814c0 00 0003 03 00 [IcR] 5488878000e9ca11
mem read 0000c72e4af4f8c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c72e4af4f8c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000c72e4af4f8c0 00 0003 03 03 0 [MdW] e7800ffc079ed92a
l2 write 0000bb75517c9b80 00 0014 04 04 0 [ScR] 78786a2e713dca43
l1d-1 evict 0000bb75517c9b80 00 0014 00 00 [IcR] 78786a2e713dca43
mem read 0000015d1559b380 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000015d1559b380 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 0000015d1559b380 00 0014 00 03 0 [MdW] 042dac84e3de4101
l1d-1 write 00006a36c42b4840 00 0001 02 03 1 [MdW] 1eeac5371ae03949
l1d-0 read 00002cbcc4bef440 00 0001 01 03 1 [MdW] e21542a5128e9ecb
l1d-0 evict 0000780ab040b980 00 0006 02 00 [IcR] e88dd55a43222698
mem write 000015c671e31180 -1 -001 -1 -1 1 [MdW] f2046a186505ea97
l2 read 000015c671e31180 00 0006 00 06 1 [IcR] f2046a186505ea97
l1d-0 read 000015c671e31180 00 0006 02 03 0 [ScR] f2046a186505ea97
l2 write 0000fc3d1a588d00 00 0020 03 05 0 [SdW] 20d6291b6fceeaa3
l1d-1 evict 0000fc3d1a588d00 00 0004 01 00 [IcR] 20d6291b6fceeaa3
mem write 0000803bdde89900 -1 -001 -1 -1 1 [MdW] 4149d9c5522ff4aa
l2 read 0000803bdde89900 00 0004 02 06 1 [IcR] 4149d9c5522ff4aa
l1d-1 read 0000803bdde89900 00 0004 01 03 0 [ScR] 4149d9c5522ff4aa
l1d-1 read 0000883768b6a3c0 00 0015 01 03 1 [MdW] d8bb918563e07612
l2 write 000043ca5c07b240 00 0009 05 05 0 [SdW] 0b03165c64b25b52
l1d-1 evict 000043ca5c07b240 00 0009 01 00 [IcR] 0b03165c64b25b52
mem write 0000b5cd51622240 -1 -001 -1 -1 1 [MdW] 4f9c1718ca9de14e
l2 read 0000b5cd51622240 00 0009 03 06 1 [IcR] 4f9c1718ca9de14e
l1d-1 read 0000b5cd51622240 00 0009 01 03 0 [ScR] 4f9c1718ca9de14e
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] f2ba597f630895bc
l2 write 000092e2f479cf80 00 0030 06 04 0 [ScR] d17309df336a0e01
l1d-1 evict 000092e2f479cf80 00 0014 03 00 [IcR] d17309df336a0e01
mem read 00002814eea2cf80 -1 -001 -1 -1 1 [McW] ac76c3067a593258
l2 read 00002814eea2cf80 00 0030 05 06 0 [IcR] ac76c3067a593258
l1d-1 write 00002814eea2cf80 00 0014 03 03 0 [MdW] c6da95c57f5d5cb2
l1d-1 read 00007b42479583c0 00 0015 00 03 1 [MdW] 1fca5feae77517e8
l2 write 00007d0902e50f80 00 0030 07 03 0 [ScR] cb58c668f7241e9f
l1d-1 evict 00007d0902e50f80 00 0014 01 00 [IcR] cb58c668f7241e9f
l2 read 0000bb75517c9b80 00 0014 04 06 1 [IcR] 78786a2e713dca43
l1d-1 read 0000bb75517c9b80 00 0014 01 03 0 [ScR] 78786a2e713dca43
l2 write 0000242235f69b80 00 0014 05 03 0 [SdW] 22713d9fb41fbafa
l1d-1 evict 0000242235f69b80 00 0014 02 00 [IcR] 22713d9fb41fbafa
mem read 00000463b4c5cf80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00000463b4c5cf80 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00000463b4c5cf80 00 0014 02 03 0 [MdW] d8778ea3f72f9753
l1d-1 read 0000e030a3d78740 00 0013 01 03 1 [MdW] bccc952adbed9749
l2 write 0000e4f3a6fe9140 00 0005 00 07 0 [SdW] 3cd13398bb7792b5
l1d-0 evict 0000e4f3a6fe9140 00 0005 00 00 [IcR] 3cd13398bb7792b5
mem write 0000750cdfd9ed40 -1 -001 -1 -1 1 [MdW] a1fecd85f61fe080
l2 read 0000750cdfd9ed40 00 0021 01 06 1 [IcR] a1fecd85f61fe080
l1d-0 read 0000750cdfd9ed40 00 0005 00 03 0 [ScR] a1fecd85f61fe080
l1d-1 read 000095996286e640 00 0009 00 03 1 [MdW] f1b509cda89b9e6b
mem read 00006980d04a3400 -1 -001 -1 -1 1 [McW] 7e87cb6b5a7c5b20
l2 read 00006980d04a3400 -1 -001 -1 -1 0 [ScR] 7e87cb6b5a7c5b20
l1i-0 read 00006980d04a3400 00 0000 00 03 0 [ScR] 7e87cb6b5a7c5b20
l2 write 0000b78d2a790900 00 0004 03 05 0 [SdW] 4b286894f1b254a4
l1d-0 evict 0000b78d2a790900 00 0004 03 00 [IcR] 4b286894f1b254a4
mem read 0000a462f1bb1500 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a462f1bb1500 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000a462f1bb1500 00 0004 03 03 0 [MdW] 2f9d5892b243a4f9
l2 write 0000012233313580 00 0022 06 05 0 [SdW] 0aa2d7ab5dfce8cc
l1d-1 evict 0000012233313580 00 0006 03 00 [IcR] 0aa2d7ab5dfce8cc
mem write 0000c97dfb94fd80 -1 -001 -1 -1 1 [MdW] 866e8372e740908a
l2 read 0000c97dfb94fd80 00 0022 01 05 1 [IcR] 866e8372e740908a
l1d-1 read 0000c97dfb94fd80 00 0006 03 03 0 [ScR] 866e8372e740908a
l2 write 0000ecb652ef69c0 00 0007 03 05 0 [SdW] 9b9abf9df1c1a30b
l1d-1 evict 0000ecb652ef69c0 00 0007 01 00 [IcR] 9b9abf9df1c1a30b
mem write 0000792d5ad259c0 -1 -001 -1 -1 1 [MdW] 14078fc202486941
l2 read 0000792d5ad259c0 00 0007 00 06 1 [IcR] 14078fc202486941
l1d-1 read 0000792d5ad259c0 00 0007 01 03 0 [ScR] 14078fc202486941
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l2 write 00009a461a9864c0 00 0019 04 06 0 [SdW] ba1ecfdec3d1dc5d
l1d-0 evict 00009a461a9864c0 00 0003 00 00 [IcR] ba1ecfdec3d1dc5d
mem write 0000534534d814c0 -1 -001 -1 -1 1 [MdW] 5488878000e9ca11
l2 read 0000534534d814c0 00 0019 03 06 1 [IcR] 5488878000e9ca11
l1d-0 read 0000534534d814c0 00 0003 00 03 0 [ScR] 5488878000e9ca11
l1d-0 read 000095873da506c0 00 0011 02 03 1 [MdW] 5d652850f1d45f1d
l2 write 000030295cbb89c0 00 0007 04 05 0 [SdW] 9dc7657dd695cd8c
l1d-1 evict 000030295cbb89c0 00 0007 03 00 [IcR] 9dc7657dd695cd8c
mem read 00008edcd3eccdc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00008edcd3eccdc0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 00008edcd3eccdc0 00 0007 03 03 0 [MdW] 62582b34270ac5fc
l1d-0 read 00004813c834cdc0 00 0007 02 03 1 [MdW] 6490dcecd59b9e65
l2 write 00009fde26f888c0 00 0003 03 04 0 [SdW] e1b5104d91b6911e
l1d-0 evict 00009fde26f888c0 00 0003 01 00 [IcR] e1b5104d91b6911e
mem read 0000df0f11cce0c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000df0f11cce0c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000df0f11cce0c0 00 0003 01 03 0 [MdW] b46e0cda852ad2e2
l1d-0 write 00004813c834cdc0 00 0007 02 03 1 [MdW] 943fd65d38c4092e
l1d-1 read 0000ed89583b9580 00 0006 00 03 1 [ScR] 6c07dacfdb56821e
l1d-0 read 000095873da506c0 00 0011 02 03 1 [MdW] 5d652850f1d45f1d
l1d-1 read 00006d3f203d79c0 00 0007 00 03 1 [ScR] 6e8f92dc574cb465
l2 write 0000015d1559b380 00 0014 06 03 0 [SdW] 042dac84e3de4101
l1d-1 evict 0000015d1559b380 00 0014 00 00 [IcR] 042dac84e3de4101
l2 read 00007d0902e50f80 00 0030 07 06 1 [IcR] cb58c668f7241e9f
l1d-1 read 00007d0902e50f80 00 0014 00 03 0 [ScR] cb58c668f7241e9f
l1d-0 read 000065dc0cb58f00 00 0012 01 03 1 [MdW] 5d6e440d0dd55dd5
l1d-0 read 0000d9b688e86700 00 0012 03 03 1 [MdW] 9cff86c4f5d7b689
l1d-0 read 00009a603343d580 00 0006 03 03 1 [MdW] e4bd1c98fd7a6b9f
l2 write 000000f97fae5cc0 00 0019 05 05 0 [SdW] d6f7e41866f9a4a8
l1d-0 evict 000000f97fae5cc0 00 0003 02 00 [IcR] d6f7e41866f9a4a8
mem write 00009fde26f888c0 -1 -001 -1 -1 1 [MdW] e1b5104d91b6911e
l2 read 00009fde26f888c0 00 0003 03 06 1 [IcR] e1b5104d91b6911e
l1d-0 read 00009fde26f888c0 00 0003 02 03 0 [ScR] e1b5104d91b6911e
l1i-1 read 000059bb4b098240 00 0009 00 03 1 [ScR] a816cf9eeece6498
l1d-0 read 0000033616c7e540 00 0005 01 03 1 [ScR] 505e4c2fc450e2ad
l2 write 00003be6b01765c0 00 0023 01 06 0 [SdW] b07105a9381db806
l1d-0 evict 00003be6b01765c0 00 0007 01 00 [IcR] b07105a9381db806
mem read 0000b54aff87b9c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b54aff87b9c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-0 write 0000b54aff87b9c0 00 0007 01 03 0 [MdW] 06b7c521daf2ebd7
l2 write 00008c87a41659c0 00 0007 05 05 0 [SdW] 80dfdd5b1394ac8c
l1d-1 evict 00008c87a41659c0 00 0007 02 00 [IcR] 80dfdd5b1394ac8c
mem read 000072629a2641c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000072629a2641c0 -1 -001 -1 -1 0 [IcR] 0000000000000000
l1d-1 write 000072629a2641c0 00 0007 02 03 0 [MdW] 074c637b3568f695
mem write 00004f46a7d2ea80 -1 -001 -1 -1 1 [MdW] d8a5addb7e65e806
l2 read 00004f46a7d2ea80 -1 -001 -1 -1 0 [IcR] d8a5addb7e65e806
l1d-0 read 00004f46a7d2ea80 00 0010 02 03 0 [ScR] d8a5addb7e65e806
mem write 00006bf6751e90c0 -1 -001 -1 -1 1 [MdW] c8f6e6fa1d07acdd
l2 read 00006bf6751e90c0 -1 -001 -1 -1 0 [ScR] c8f6e6fa1d07acdd
l1i-1 read 00006bf6751e90c0 00 0003 00 03 0 [ScR] c8f6e6fa1d07acdd
l1d-0 read 0000ffac00a71b80 00 0014 01 03 1 [MdW] e178f2d9faca3dba
l1d-1 read 0000bb75517c9b80 00 0014 01 03 1 [ScR] 78786a2e713dca43
l1d-0 read 000057ef223eb2c0 00 0011 00 03 1 [MdW] 33fc07f29b2cfaff
l1d-0 read 0000c662cc646980 00 0006 01 03 1 [MdW] 9178878696de8c91
l1d-0 evict 0000ed89583b9580 00 0006 00 00 [IcR] 6c07dacfdb56821e
mem write 00002b4766af8580 -1 -001 -1 -1 1 [MdW] 66d6c51c457e98ea
l2 read 00002b4766af8580 00 0022 05 06 1 [IcR] 66d6c51c457e98ea
l1d-0 write 00002b4766af8580 00 0006 00 03 0 [MdW] ec0af5df425fb3d3
l2 write 0000c72e4af4f8c0 00 0003 04 03 0 [SdW] e7800ffc079ed92a
l1d-0 evict 0000c72e4af4f8c0 00 0003 03 00 [IcR] e7800ffc079ed92a
mem write 000000f97fae5cc0 -1 -001 -1 -1 1 [MdW] d6f7e41866f9a4a8
l2 read 000000f97fae5cc0 00 0019 05 06 1 [IcR] d6f7e41866f9a4a8
l1d-0 write 000000f97fae5cc0 00 0003 03 03 0 [MdW] adf40caecba14b7b
l1d-0 read 00001ad58832f640 00 0009 03 03 1 [MdW] f1d026232e24dd48
l2 write 0000ade5546e9640 00 0025 03 04 0 [SdW] 5209bc09f2897536