-
Notifications
You must be signed in to change notification settings - Fork 0
/
c2-l2-mirage.expect
5332 lines (5332 loc) · 397 KB
/
c2-l2-mirage.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 0000811bf3b99ac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000811bf3b99ac0 00 0027 00 04 0 [McW(0029,00)] 0000000000000000
l1d-0 write 0000811bf3b99ac0 00 0011 00 03 0 [MdW] 80f59a91c0340835
mem read 0000333bb344eb40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000333bb344eb40 00 0013 00 04 0 [McW(0006,05)] 0000000000000000
l1d-0 write 0000333bb344eb40 00 0013 00 03 0 [MdW] 2a5c80345e469f5d
mem read 000077988753abc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000077988753abc0 01 0030 00 04 0 [McW(0016,04)] 0000000000000000
l1d-1 write 000077988753abc0 00 0015 00 03 0 [MdW] 6a88399658070358
mem read 00006bb87d1516c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006bb87d1516c0 01 0000 00 04 0 [McW(0006,06)] 0000000000000000
l1d-1 write 00006bb87d1516c0 00 0011 00 03 0 [MdW] 7bd8aa2129e9a455
mem read 00006980d04a3400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006980d04a3400 00 0009 00 04 0 [McW(0015,03)] 0000000000000000
l1d-1 write 00006980d04a3400 00 0000 00 03 0 [MdW] fe5ed69efed3831b
mem read 0000b8f3e311dac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b8f3e311dac0 00 0015 00 04 0 [McW(0023,00)] 0000000000000000
l1d-0 write 0000b8f3e311dac0 00 0011 01 03 0 [MdW] e250fdaf6f64e5b7
mem read 000066c650c81940 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000066c650c81940 01 0011 00 04 0 [McW(0019,05)] 0000000000000000
l1d-0 write 000066c650c81940 00 0005 00 03 0 [MdW] e718d2e1df2aaa8e
mem read 0000d3afe5d1ca40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d3afe5d1ca40 01 0001 00 04 0 [McW(0012,06)] 0000000000000000
l1d-0 write 0000d3afe5d1ca40 00 0009 00 03 0 [MdW] e87fc143f4844ad9
mem read 00006f44ab8bcf80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006f44ab8bcf80 00 0017 00 04 0 [McW(0002,02)] 0000000000000000
l1d-0 write 00006f44ab8bcf80 00 0014 00 03 0 [MdW] 23fb33a840c4d118
mem read 0000908064eef6c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000908064eef6c0 00 0003 00 04 0 [McW(0000,07)] 0000000000000000
l1d-0 write 0000908064eef6c0 00 0011 02 03 0 [MdW] 63b934d5bef74a33
mem read 00004e306c77ba80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004e306c77ba80 00 0005 00 04 0 [McW(0019,04)] 0000000000000000
l1d-1 write 00004e306c77ba80 00 0010 00 03 0 [MdW] e1a5b4847aabaabd
mem read 0000adfec432bac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000adfec432bac0 00 0006 00 04 0 [McW(0014,07)] 0000000000000000
l1d-1 write 0000adfec432bac0 00 0011 01 03 0 [MdW] 59f49d91de97aae8
mem read 0000418397142480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000418397142480 01 0006 00 04 0 [McW(0007,01)] 0000000000000000
l1d-0 write 0000418397142480 00 0002 00 03 0 [MdW] 30dbb666b2eba234
mem read 0000c662cc646980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c662cc646980 01 0025 00 04 0 [McW(0017,03)] 0000000000000000
l1d-0 write 0000c662cc646980 00 0006 00 03 0 [MdW] 07ae6380dda02047
mem read 0000a4ed67fcb240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a4ed67fcb240 01 0015 00 04 0 [McW(0028,07)] 0000000000000000
l1d-0 write 0000a4ed67fcb240 00 0009 01 03 0 [MdW] 4dbd028faad33d6c
mem read 000016f64b35ad40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000016f64b35ad40 01 0019 00 04 0 [McW(0022,04)] 0000000000000000
l1d-0 write 000016f64b35ad40 00 0005 01 03 0 [MdW] 292bf8907b74edd2
mem read 00007e15eb118b00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007e15eb118b00 00 0004 00 04 0 [McW(0001,04)] 0000000000000000
l1d-1 write 00007e15eb118b00 00 0012 00 03 0 [MdW] 9419ebae6d75d1b9
mem read 0000726ad1114c40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000726ad1114c40 00 0011 00 04 0 [McW(0006,02)] 0000000000000000
l1d-1 write 0000726ad1114c40 00 0001 00 03 0 [MdW] 018da7dff3d2ca2c
l2 write 00006980d04a3400 00 0009 00 04 1 [MdW(0015,03)] fe5ed69efed3831b
l2 read 00006980d04a3400 00 0009 00 04 1 [SdW(0015,03)] fe5ed69efed3831b
l1i-1 read 00006980d04a3400 00 0000 00 03 0 [ScR] fe5ed69efed3831b
mem read 0000dcedffd5d840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000dcedffd5d840 00 0018 00 04 0 [McW(0001,01)] 0000000000000000
l1d-0 write 0000dcedffd5d840 00 0001 00 03 0 [MdW] df69ebf16388cff7
mem read 00004d48d3ab6400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004d48d3ab6400 00 0025 00 04 0 [McW(0005,00)] 0000000000000000
l1d-1 write 00004d48d3ab6400 00 0000 01 03 0 [MdW] 0bad902dc5dbfa0f
mem read 0000d2e78beabf80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d2e78beabf80 01 0007 00 04 0 [McW(0001,07)] 0000000000000000
l1d-0 write 0000d2e78beabf80 00 0014 01 03 0 [MdW] bebed8958f71442d
mem read 0000d69a075d9a00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d69a075d9a00 01 0001 01 03 0 [McW(0005,03)] 0000000000000000
l1d-1 write 0000d69a075d9a00 00 0008 00 03 0 [MdW] b97446909df2721a
mem read 0000c8ee96a39ac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c8ee96a39ac0 00 0028 00 04 0 [McW(0016,05)] 0000000000000000
l1d-1 write 0000c8ee96a39ac0 00 0011 02 03 0 [MdW] 020b007dc30de857
mem read 0000799fa07cabc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000799fa07cabc0 01 0016 00 04 0 [McW(0031,06)] 0000000000000000
l1d-1 write 0000799fa07cabc0 00 0015 01 03 0 [MdW] edd694c83890bee6
l1i-1 read 00006980d04a3400 00 0000 00 03 1 [ScR] fe5ed69efed3831b
mem read 0000a18bf258f2c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a18bf258f2c0 01 0029 00 04 0 [McW(0004,04)] 0000000000000000
l1d-0 write 0000a18bf258f2c0 00 0011 03 03 0 [MdW] 3e7401997ef17cd7
mem read 0000e5a32a13e780 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e5a32a13e780 00 0019 00 04 0 [McW(0023,07)] 0000000000000000
l1d-0 write 0000e5a32a13e780 00 0014 02 03 0 [MdW] 2ffc914fca61ecc0
mem read 00003174403caf00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003174403caf00 00 0014 00 04 0 [McW(0012,07)] 0000000000000000
l1d-0 write 00003174403caf00 00 0012 00 03 0 [MdW] 547038c816082f31
mem read 000089351da6e1c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000089351da6e1c0 00 0029 00 04 0 [McW(0016,01)] 0000000000000000
l1d-1 write 000089351da6e1c0 00 0007 00 03 0 [MdW] 3ca049e9cff6d872
l1d-0 write 00003174403caf00 00 0012 00 03 1 [MdW] c334dfcfde2552e3
mem read 000005ccfbfe3240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000005ccfbfe3240 00 0012 00 04 0 [McW(0029,03)] 0000000000000000
l1d-0 write 000005ccfbfe3240 00 0009 02 03 0 [MdW] 816f140018ef71ee
mem read 000052d61b6d5a00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000052d61b6d5a00 01 0013 00 04 0 [McW(0000,04)] 0000000000000000
l1d-0 write 000052d61b6d5a00 00 0008 00 03 0 [MdW] e775afa1004c0eb4
mem read 000011812db55cc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000011812db55cc0 00 0023 00 04 0 [McW(0003,07)] 0000000000000000
l1d-0 write 000011812db55cc0 00 0003 00 03 0 [MdW] b1bf6b2b3542a0b8
mem read 00004813c834cdc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004813c834cdc0 01 0021 00 04 0 [McW(0024,06)] 0000000000000000
l1d-0 write 00004813c834cdc0 00 0007 00 03 0 [MdW] 705c2dbf4c432cbe
mem read 0000df0f11cce0c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000df0f11cce0c0 01 0013 01 03 0 [McW(0029,05)] 0000000000000000
l1d-1 write 0000df0f11cce0c0 00 0003 00 03 0 [MdW] b0fddea366d09da1
mem read 0000aa6ad32c4a40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000aa6ad32c4a40 01 0012 00 04 0 [McW(0012,01)] 0000000000000000
l1d-1 write 0000aa6ad32c4a40 00 0009 00 03 0 [MdW] 600bfac00272b065
l1d-0 evict 00004813c834cdc0 00 0007 00 03 [IcR] 705c2dbf4c432cbe
l2 write 00004813c834cdc0 01 0021 00 04 1 [MdW(0024,06)] 705c2dbf4c432cbe
mem write 00004813c834cdc0 -1 -001 -1 -1 1 [MdW] 705c2dbf4c432cbe
l2 evict 00004813c834cdc0 01 0021 00 00 [IcR(0024,06)] 705c2dbf4c432cbe
mem read 00002b4766af8580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002b4766af8580 00 0026 00 04 0 [McW(0024,06)] 0000000000000000
l1d-0 write 00002b4766af8580 00 0006 01 03 0 [MdW] 9f9038d2bb1fa8a4
mem read 0000fe2140a6f980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000fe2140a6f980 01 0009 00 04 0 [McW(0009,06)] 0000000000000000
l1d-1 write 0000fe2140a6f980 00 0006 00 03 0 [MdW] 4e2ed36498da5bfc
l1d-0 evict 00003174403caf00 00 0012 00 03 [IcR] c334dfcfde2552e3
l2 write 00003174403caf00 00 0014 00 04 1 [MdW(0012,07)] c334dfcfde2552e3
mem write 00003174403caf00 -1 -001 -1 -1 1 [MdW] c334dfcfde2552e3
l2 evict 00003174403caf00 00 0014 00 00 [IcR(0012,07)] c334dfcfde2552e3
mem read 000036f519c3f6c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000036f519c3f6c0 00 0000 00 04 0 [McW(0012,07)] 0000000000000000
l1d-1 write 000036f519c3f6c0 00 0011 03 03 0 [MdW] 55e565dc6cf2d794
mem read 00006894f1b25480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006894f1b25480 00 0020 00 04 0 [McW(0014,01)] 0000000000000000
l1d-1 write 00006894f1b25480 00 0002 00 03 0 [MdW] 1e6ece905e742562
mem read 000084af1bf9eb80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000084af1bf9eb80 00 0022 00 04 0 [McW(0025,01)] 0000000000000000
l1d-1 write 000084af1bf9eb80 00 0014 00 03 0 [MdW] 2898ddc5bb04ad23
mem read 0000dd1751df6340 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000dd1751df6340 00 0004 01 03 0 [McW(0024,05)] 0000000000000000
l1d-0 write 0000dd1751df6340 00 0013 01 03 0 [MdW] ca36f02aad46d4dd
l1d-0 read 000052d61b6d5a00 00 0008 00 03 1 [MdW] e775afa1004c0eb4
l1d-1 evict 00006980d04a3400 00 0000 00 02 [IcR] fe5ed69efed3831b
mem write 00006980d04a3400 -1 -001 -1 -1 1 [MdW] fe5ed69efed3831b
l2 evict 00006980d04a3400 00 0009 00 00 [IcR(0015,03)] fe5ed69efed3831b
mem read 00009aaf14205900 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009aaf14205900 01 0030 01 03 0 [McW(0015,03)] 0000000000000000
l1d-1 write 00009aaf14205900 00 0004 00 03 0 [MdW] 6e85f64de7e125d5
mem read 0000eeb339250a80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000eeb339250a80 01 0022 00 04 0 [McW(0026,01)] 0000000000000000
l1d-1 write 0000eeb339250a80 00 0010 01 03 0 [MdW] baaf248a8b7b28a3
mem read 00006074635435c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006074635435c0 01 0023 00 04 0 [McW(0008,01)] 0000000000000000
l1d-0 write 00006074635435c0 00 0007 00 03 0 [MdW] 2d3837be469f574c
mem read 0000c7e07b801e00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c7e07b801e00 01 0001 02 03 0 [McW(0018,05)] 0000000000000000
l1d-0 write 0000c7e07b801e00 00 0008 01 03 0 [MdW] edaed707c9f0d11e
l2 write 0000811bf3b99ac0 00 0027 00 04 1 [MdW(0029,00)] 80f59a91c0340835
l1d-0 evict 0000811bf3b99ac0 00 0011 00 00 [IcR] 80f59a91c0340835
l1d-1 evict 00006bb87d1516c0 00 0011 00 00 [IcR] 7bd8aa2129e9a455
l2 write 00006bb87d1516c0 01 0000 00 04 1 [MdW(0006,06)] 7bd8aa2129e9a455
mem write 00006bb87d1516c0 -1 -001 -1 -1 1 [MdW] 7bd8aa2129e9a455
l2 evict 00006bb87d1516c0 01 0000 00 00 [IcR(0006,06)] 7bd8aa2129e9a455
mem read 00006cfd00fe8ac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006cfd00fe8ac0 00 0024 00 04 0 [McW(0006,06)] 0000000000000000
l1d-0 write 00006cfd00fe8ac0 00 0011 00 03 0 [MdW] b025b1f23a5ed092
mem read 00009fde26f888c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009fde26f888c0 00 0005 01 03 0 [McW(0015,00)] 0000000000000000
l1d-0 write 00009fde26f888c0 00 0003 01 03 0 [MdW] 405e3e9d2ede086b
mem read 000049afd5e02b40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000049afd5e02b40 01 0028 00 04 0 [McW(0010,03)] 0000000000000000
l1d-0 write 000049afd5e02b40 00 0013 02 03 0 [MdW] bf398b0d859fce39
mem read 0000fa408c35ba00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000fa408c35ba00 01 0031 00 04 0 [McW(0019,07)] 0000000000000000
l1d-0 write 0000fa408c35ba00 00 0008 02 03 0 [MdW] 7eec603efdcdea3b
mem read 000014810cf26a80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000014810cf26a80 01 0020 00 04 0 [McW(0013,07)] 0000000000000000
l1d-0 write 000014810cf26a80 00 0010 00 03 0 [MdW] dd8f7f397459bd40
l1d-0 read 0000c662cc646980 00 0006 00 03 1 [MdW] 07ae6380dda02047
mem read 00007e3437831800 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007e3437831800 00 0017 01 03 0 [McW(0026,04)] 0000000000000000
l1d-1 write 00007e3437831800 00 0000 00 03 0 [MdW] 6b9d76bb27c3ffa3
mem read 0000740d5897eb00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000740d5897eb00 00 0016 00 04 0 [McW(0020,01)] 0000000000000000
l1d-0 write 0000740d5897eb00 00 0012 00 03 0 [MdW] 024d94b6ba577e25
mem read 0000a40aa8666480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a40aa8666480 01 0000 00 04 0 [McW(0018,07)] 0000000000000000
l1d-0 write 0000a40aa8666480 00 0002 01 03 0 [MdW] b516458655735b72
mem read 00006a36c42b4840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006a36c42b4840 01 0024 00 04 0 [McW(0030,04)] 0000000000000000
l1d-1 write 00006a36c42b4840 00 0001 01 03 0 [MdW] f142984e5c1a9135
l2 write 0000b8f3e311dac0 00 0015 00 04 1 [MdW(0023,00)] e250fdaf6f64e5b7
l1d-0 evict 0000b8f3e311dac0 00 0011 01 00 [IcR] e250fdaf6f64e5b7
l1d-1 evict 000077988753abc0 00 0015 00 02 [IcR] 6a88399658070358
l2 write 000077988753abc0 01 0030 00 03 1 [MdW(0016,04)] 6a88399658070358
mem write 000077988753abc0 -1 -001 -1 -1 1 [MdW] 6a88399658070358
l2 evict 000077988753abc0 01 0030 00 00 [IcR(0016,04)] 6a88399658070358
mem read 000095873da506c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000095873da506c0 01 0012 01 03 0 [McW(0016,04)] 0000000000000000
l1d-0 write 000095873da506c0 00 0011 01 03 0 [MdW] 64a74b273feb83c9
l1d-1 read 00004d48d3ab6400 00 0000 01 03 1 [MdW] 0bad902dc5dbfa0f
l1d-1 read 0000fe2140a6f980 00 0006 00 03 1 [MdW] 4e2ed36498da5bfc
mem read 000086890a9e27c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000086890a9e27c0 01 0005 00 04 0 [McW(0030,06)] 0000000000000000
l1d-0 write 000086890a9e27c0 00 0015 00 03 0 [MdW] e5b8948696e0bed1
l1d-0 evict 00009fde26f888c0 00 0003 01 03 [IcR] 405e3e9d2ede086b
l2 write 00009fde26f888c0 00 0005 01 03 1 [MdW(0015,00)] 405e3e9d2ede086b
mem write 00009fde26f888c0 -1 -001 -1 -1 1 [MdW] 405e3e9d2ede086b
l2 evict 00009fde26f888c0 00 0005 01 00 [IcR(0015,00)] 405e3e9d2ede086b
mem read 00004ff679346ec0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004ff679346ec0 01 0026 00 04 0 [McW(0015,00)] 0000000000000000
l1d-1 write 00004ff679346ec0 00 0011 00 03 0 [MdW] 69165a7d7db29609
l1d-1 evict 0000eeb339250a80 00 0010 01 03 [IcR] baaf248a8b7b28a3
l2 write 0000eeb339250a80 01 0022 00 04 1 [MdW(0026,01)] baaf248a8b7b28a3
mem write 0000eeb339250a80 -1 -001 -1 -1 1 [MdW] baaf248a8b7b28a3
l2 evict 0000eeb339250a80 01 0022 00 00 [IcR(0026,01)] baaf248a8b7b28a3
mem read 000008ededd7fd80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000008ededd7fd80 01 0009 01 03 0 [McW(0026,01)] 0000000000000000
l1d-1 write 000008ededd7fd80 00 0006 01 03 0 [MdW] c37903f669eafd0e
mem read 00005f4478ac3180 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005f4478ac3180 00 0023 01 03 0 [McW(0028,05)] 0000000000000000
l1d-1 write 00005f4478ac3180 00 0006 02 03 0 [MdW] 8d9cf30f1c4ad7ad
mem read 000011abc3e7fe80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000011abc3e7fe80 01 0004 00 04 0 [McW(0012,05)] 0000000000000000
l1d-1 write 000011abc3e7fe80 00 0010 01 03 0 [MdW] d8e6dec1c6caebeb
mem write 0000811bf3b99ac0 -1 -001 -1 -1 1 [MdW] 80f59a91c0340835
l2 evict 0000811bf3b99ac0 00 0027 00 00 [IcR(0029,00)] 80f59a91c0340835
mem read 0000205a116a7d40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000205a116a7d40 00 0022 01 03 0 [McW(0029,00)] 0000000000000000
l1d-1 write 0000205a116a7d40 00 0005 00 03 0 [MdW] 813d9d6b77fd8ec7
l1d-0 write 000049afd5e02b40 00 0013 02 03 1 [MdW] 283b644b3a7a9886
l1d-1 write 000008ededd7fd80 00 0006 01 03 1 [MdW] 7e9c23661053827d
l1d-1 evict 000011abc3e7fe80 00 0010 01 03 [IcR] d8e6dec1c6caebeb
l2 write 000011abc3e7fe80 01 0004 00 04 1 [MdW(0012,05)] d8e6dec1c6caebeb
mem write 000011abc3e7fe80 -1 -001 -1 -1 1 [MdW] d8e6dec1c6caebeb
l2 evict 000011abc3e7fe80 01 0004 00 00 [IcR(0012,05)] d8e6dec1c6caebeb
mem read 00006e7158c618c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006e7158c618c0 01 0006 01 03 0 [McW(0012,05)] 0000000000000000
l1d-0 write 00006e7158c618c0 00 0003 01 03 0 [MdW] 5179e06e6d1134ab
mem read 000046663e4def00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000046663e4def00 00 0031 00 04 0 [McW(0023,03)] 0000000000000000
l1d-0 write 000046663e4def00 00 0012 01 03 0 [MdW] e21542a5128e9ecb
mem read 0000c86d27a3d040 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c86d27a3d040 00 0002 00 04 0 [McW(0030,03)] 0000000000000000
l1d-0 write 0000c86d27a3d040 00 0001 01 03 0 [MdW] 86409ff435d1c7bf
mem read 000029aaf453f380 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000029aaf453f380 01 0017 00 04 0 [McW(0028,00)] 0000000000000000
l1d-1 write 000029aaf453f380 00 0014 01 03 0 [MdW] a9bb42631a861d60
l1d-0 evict 0000a40aa8666480 00 0002 01 03 [IcR] b516458655735b72
l2 write 0000a40aa8666480 01 0000 00 04 1 [MdW(0018,07)] b516458655735b72
mem write 0000a40aa8666480 -1 -001 -1 -1 1 [MdW] b516458655735b72
l2 evict 0000a40aa8666480 01 0000 00 00 [IcR(0018,07)] b516458655735b72
mem read 00002cbcc4bef440 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002cbcc4bef440 00 0001 00 04 0 [McW(0018,07)] 0000000000000000
l1d-0 write 00002cbcc4bef440 00 0001 02 03 0 [MdW] dd17905e4616865e
l1d-0 evict 0000c7e07b801e00 00 0008 01 02 [IcR] edaed707c9f0d11e
l2 write 0000c7e07b801e00 01 0001 02 03 1 [MdW(0018,05)] edaed707c9f0d11e
mem write 0000c7e07b801e00 -1 -001 -1 -1 1 [MdW] edaed707c9f0d11e
l2 evict 0000c7e07b801e00 01 0001 02 00 [IcR(0018,05)] edaed707c9f0d11e
mem read 00001ffbc4ff1a40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001ffbc4ff1a40 01 0029 01 03 0 [McW(0018,05)] 0000000000000000
l1d-1 write 00001ffbc4ff1a40 00 0009 01 03 0 [MdW] 3e4f7192e70a1235
mem read 00009a603343d580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009a603343d580 01 0003 00 04 0 [McW(0020,03)] 0000000000000000
l1d-0 write 00009a603343d580 00 0006 02 03 0 [MdW] 75aae8a3bba85efe
mem read 00004149ff11d440 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004149ff11d440 01 0016 01 03 0 [McW(0007,04)] 0000000000000000
l1d-0 write 00004149ff11d440 00 0001 03 03 0 [MdW] 72b1be7a9fb5a8cd
mem read 0000c3a56b5f8bc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c3a56b5f8bc0 00 0010 00 04 0 [McW(0018,04)] 0000000000000000
l1d-1 write 0000c3a56b5f8bc0 00 0015 00 03 0 [MdW] 9b4a314f80de0e14
l2 write 0000adfec432bac0 00 0006 00 04 1 [MdW(0014,07)] 59f49d91de97aae8
l1d-1 evict 0000adfec432bac0 00 0011 01 00 [IcR] 59f49d91de97aae8
mem read 000048777e448ac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000048777e448ac0 01 0020 01 03 0 [McW(0006,00)] 0000000000000000
l1d-1 write 000048777e448ac0 00 0011 01 03 0 [MdW] ebc6d4db1d9b7ded
mem read 0000c72e4af4f8c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c72e4af4f8c0 01 0000 00 04 0 [McW(0007,06)] 0000000000000000
l1d-1 write 0000c72e4af4f8c0 00 0003 01 03 0 [MdW] 9dd6e27e91bc9863
mem read 0000872d66386580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000872d66386580 01 0015 01 03 0 [McW(0021,01)] 0000000000000000
l1d-1 write 0000872d66386580 00 0006 03 03 0 [MdW] b53b1938ff066c6d
mem read 0000d090b8181100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d090b8181100 01 0017 01 03 0 [McW(0004,03)] 0000000000000000
l1d-1 write 0000d090b8181100 00 0004 01 03 0 [MdW] 916619a5f0fd52ba
l2 write 0000908064eef6c0 00 0003 00 04 1 [MdW(0000,07)] 63b934d5bef74a33
l1d-0 evict 0000908064eef6c0 00 0011 02 00 [IcR] 63b934d5bef74a33
mem read 00004dcada9f52c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004dcada9f52c0 01 0010 00 04 0 [McW(0025,04)] 0000000000000000
l1d-0 write 00004dcada9f52c0 00 0011 02 03 0 [MdW] e9b8fce55ce2beb8
l1d-1 read 00007e3437831800 00 0000 00 03 1 [MdW] 6b9d76bb27c3ffa3
l2 write 0000c8ee96a39ac0 00 0028 00 04 1 [MdW(0016,05)] 020b007dc30de857
l1d-1 evict 0000c8ee96a39ac0 00 0011 02 00 [IcR] 020b007dc30de857
mem read 0000e21b98b426c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e21b98b426c0 00 0013 01 03 0 [McW(0010,01)] 0000000000000000
l1d-1 write 0000e21b98b426c0 00 0011 02 03 0 [MdW] efda01f1f1ed6559
l1d-1 read 000029aaf453f380 00 0014 01 03 1 [MdW] a9bb42631a861d60
mem read 000057c442889400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000057c442889400 01 0025 01 03 0 [McW(0002,06)] 0000000000000000
l1d-1 write 000057c442889400 00 0000 02 03 0 [MdW] d17309df336a0e01
l1d-1 evict 00001ffbc4ff1a40 00 0009 01 03 [IcR] 3e4f7192e70a1235
l2 write 00001ffbc4ff1a40 01 0029 01 03 1 [MdW(0018,05)] 3e4f7192e70a1235
mem write 00001ffbc4ff1a40 -1 -001 -1 -1 1 [MdW] 3e4f7192e70a1235
l2 evict 00001ffbc4ff1a40 01 0029 01 00 [IcR(0018,05)] 3e4f7192e70a1235
mem read 00001e12c123a180 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001e12c123a180 01 0018 00 04 0 [McW(0018,05)] 0000000000000000
l1d-0 write 00001e12c123a180 00 0006 03 03 0 [MdW] ff1d2beb43b9b33b
mem read 000031e4a2646740 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000031e4a2646740 00 0031 01 03 0 [McW(0027,01)] 0000000000000000
l1d-0 write 000031e4a2646740 00 0013 03 03 0 [MdW] ad706d8054dc34c1
l1d-0 evict 000052d61b6d5a00 00 0008 00 01 [IcR] e775afa1004c0eb4
l2 write 000052d61b6d5a00 01 0013 00 03 1 [MdW(0000,04)] e775afa1004c0eb4
mem write 000052d61b6d5a00 -1 -001 -1 -1 1 [MdW] e775afa1004c0eb4
l2 evict 000052d61b6d5a00 01 0013 00 00 [IcR(0000,04)] e775afa1004c0eb4
mem read 00005de844e94fc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005de844e94fc0 00 0010 01 03 0 [McW(0000,04)] 0000000000000000
l1d-1 write 00005de844e94fc0 00 0015 02 03 0 [MdW] 81b80adc76842711
mem read 0000f88b44bf5840 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f88b44bf5840 01 0027 00 04 0 [McW(0017,00)] 0000000000000000
l1d-1 write 0000f88b44bf5840 00 0001 02 03 0 [MdW] 5835bf5c1572177d
l1d-1 read 000008ededd7fd80 00 0006 01 03 1 [MdW] 7e9c23661053827d
l2 write 0000fe2140a6f980 01 0009 00 03 1 [MdW(0009,06)] 4e2ed36498da5bfc
l1d-1 evict 0000fe2140a6f980 00 0006 00 00 [IcR] 4e2ed36498da5bfc
l1d-0 evict 0000fa408c35ba00 00 0008 02 03 [IcR] 7eec603efdcdea3b
l2 write 0000fa408c35ba00 01 0031 00 04 1 [MdW(0019,07)] 7eec603efdcdea3b
mem write 0000fa408c35ba00 -1 -001 -1 -1 1 [MdW] 7eec603efdcdea3b
l2 evict 0000fa408c35ba00 01 0031 00 00 [IcR(0019,07)] 7eec603efdcdea3b
mem read 0000780ab040b980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000780ab040b980 01 0002 00 04 0 [McW(0019,07)] 0000000000000000
l1d-1 write 0000780ab040b980 00 0006 00 03 0 [MdW] 0968e82e4bb02b18
l1d-0 evict 0000e5a32a13e780 00 0014 02 03 [IcR] 2ffc914fca61ecc0
l2 write 0000e5a32a13e780 00 0019 00 04 1 [MdW(0023,07)] 2ffc914fca61ecc0
mem write 0000e5a32a13e780 -1 -001 -1 -1 1 [MdW] 2ffc914fca61ecc0
l2 evict 0000e5a32a13e780 00 0019 00 00 [IcR(0023,07)] 2ffc914fca61ecc0
mem read 00009fde26f888c0 -1 -001 -1 -1 1 [McW] 405e3e9d2ede086b
l2 read 00009fde26f888c0 00 0005 01 03 0 [ScW(0023,07)] 405e3e9d2ede086b
l1d-0 read 00009fde26f888c0 00 0003 02 03 0 [ScR] 405e3e9d2ede086b
l1d-1 read 00009aaf14205900 00 0004 00 03 1 [MdW] 6e85f64de7e125d5
mem read 0000a91cd2b18040 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a91cd2b18040 00 0024 01 03 0 [McW(0030,07)] 0000000000000000
l1d-1 write 0000a91cd2b18040 00 0001 03 03 0 [MdW] 826c97612426419e
mem read 0000ae053b607e40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ae053b607e40 00 0011 01 03 0 [McW(0028,02)] 0000000000000000
l1d-1 write 0000ae053b607e40 00 0009 01 03 0 [MdW] 33aab749622ce144
l1d-1 write 0000799fa07cabc0 00 0015 01 03 1 [MdW] 5045fca347d4f27e
l1d-0 write 0000c86d27a3d040 00 0001 01 03 1 [MdW] 11d1789f7e517168
l1d-0 evict 0000dd1751df6340 00 0013 01 01 [IcR] ca36f02aad46d4dd
l2 write 0000dd1751df6340 00 0004 01 03 1 [MdW(0024,05)] ca36f02aad46d4dd
mem write 0000dd1751df6340 -1 -001 -1 -1 1 [MdW] ca36f02aad46d4dd
l2 evict 0000dd1751df6340 00 0004 01 00 [IcR(0024,05)] ca36f02aad46d4dd
mem read 0000d8ad57bdad00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d8ad57bdad00 00 0020 01 03 0 [McW(0024,05)] 0000000000000000
l1d-1 write 0000d8ad57bdad00 00 0004 02 03 0 [MdW] d54d77b5577490c8
l1d-1 evict 00004ff679346ec0 00 0011 00 01 [IcR] 69165a7d7db29609
l2 write 00004ff679346ec0 01 0026 00 04 1 [MdW(0015,00)] 69165a7d7db29609
mem write 00004ff679346ec0 -1 -001 -1 -1 1 [MdW] 69165a7d7db29609
l2 evict 00004ff679346ec0 01 0026 00 00 [IcR(0015,00)] 69165a7d7db29609
mem read 00006afec145fe80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006afec145fe80 00 0006 01 03 0 [McW(0015,00)] 0000000000000000
l1d-1 write 00006afec145fe80 00 0010 01 03 0 [MdW] 36968b104d056d30
mem read 000052d61b6d5a00 -1 -001 -1 -1 1 [McW] e775afa1004c0eb4
l2 read 000052d61b6d5a00 00 0016 01 03 0 [ScW(0002,07)] e775afa1004c0eb4
l1d-0 read 000052d61b6d5a00 00 0008 00 03 0 [ScR] e775afa1004c0eb4
l1d-1 read 00006a36c42b4840 00 0001 01 03 1 [MdW] f142984e5c1a9135
l1d-1 read 0000d090b8181100 00 0004 01 03 1 [MdW] 916619a5f0fd52ba
l2 write 0000a18bf258f2c0 01 0029 00 04 1 [MdW(0004,04)] 3e7401997ef17cd7
l1d-0 evict 0000a18bf258f2c0 00 0011 03 00 [IcR] 3e7401997ef17cd7
l2 write 000048777e448ac0 01 0020 01 03 1 [MdW(0006,00)] ebc6d4db1d9b7ded
l2 read 000048777e448ac0 01 0020 01 03 1 [SdW(0006,00)] ebc6d4db1d9b7ded
l1d-0 read 000048777e448ac0 00 0011 03 03 0 [ScR] ebc6d4db1d9b7ded
mem read 0000ba16e8b8b540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ba16e8b8b540 01 0011 01 03 0 [McW(0014,02)] 0000000000000000
l1d-0 write 0000ba16e8b8b540 00 0005 02 03 0 [MdW] 3de612c8e734de20
mem read 0000d314b6aa3a80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d314b6aa3a80 01 0021 00 04 0 [McW(0031,04)] 0000000000000000
l1d-1 write 0000d314b6aa3a80 00 0010 02 03 0 [MdW] 078cbf83c936f307
l2 write 0000726ad1114c40 00 0011 00 03 1 [MdW(0006,02)] 018da7dff3d2ca2c
l1d-1 evict 0000726ad1114c40 00 0001 00 00 [IcR] 018da7dff3d2ca2c
l1d-0 evict 00004149ff11d440 00 0001 03 02 [IcR] 72b1be7a9fb5a8cd
l2 write 00004149ff11d440 01 0016 01 03 1 [MdW(0007,04)] 72b1be7a9fb5a8cd
l2 read 00004149ff11d440 01 0016 01 03 1 [MdW(0007,04)] 72b1be7a9fb5a8cd
l1d-1 write 00004149ff11d440 00 0001 00 03 0 [MdW] dbc0b014e9a8cd6b
mem read 00001ad58832f640 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001ad58832f640 00 0009 00 04 0 [McW(0025,06)] 0000000000000000
l1d-0 write 00001ad58832f640 00 0009 03 03 0 [MdW] 98a208d3aedf4d84
l1d-1 read 000057c442889400 00 0000 02 03 1 [MdW] d17309df336a0e01
mem read 000065dc0cb58f00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000065dc0cb58f00 01 0029 01 03 0 [McW(0025,02)] 0000000000000000
l1d-0 write 000065dc0cb58f00 00 0012 02 03 0 [MdW] 01d6f903bd704355
l1d-0 evict 0000d2e78beabf80 00 0014 01 02 [IcR] bebed8958f71442d
l2 write 0000d2e78beabf80 01 0007 00 04 1 [MdW(0001,07)] bebed8958f71442d
mem write 0000d2e78beabf80 -1 -001 -1 -1 1 [MdW] bebed8958f71442d
l2 evict 0000d2e78beabf80 01 0007 00 00 [IcR(0001,07)] bebed8958f71442d
mem read 00006bf6751e90c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00006bf6751e90c0 00 0004 01 03 0 [McW(0001,07)] 0000000000000000
l1d-0 write 00006bf6751e90c0 00 0003 03 03 0 [MdW] d8e76133f5e6b04d
l1d-0 evict 0000d3afe5d1ca40 00 0009 00 00 [IcR] e87fc143f4844ad9
l2 write 0000d3afe5d1ca40 01 0001 00 03 1 [MdW(0012,06)] e87fc143f4844ad9
mem write 0000d3afe5d1ca40 -1 -001 -1 -1 1 [MdW] e87fc143f4844ad9
l2 evict 0000d3afe5d1ca40 01 0001 00 00 [IcR(0012,06)] e87fc143f4844ad9
mem read 0000015d1559b380 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000015d1559b380 01 0021 01 03 0 [McW(0012,06)] 0000000000000000
l1d-1 write 0000015d1559b380 00 0014 02 03 0 [MdW] 70b67a115d2588f4
mem read 0000f8857becc7c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f8857becc7c0 00 0017 02 03 0 [McW(0023,02)] 0000000000000000
l1d-1 write 0000f8857becc7c0 00 0015 03 03 0 [MdW] 72975557d7d3aa91
l1d-1 read 0000f8857becc7c0 00 0015 03 03 1 [MdW] 72975557d7d3aa91
mem read 00005549adeaf440 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005549adeaf440 01 0014 00 04 0 [McW(0009,07)] 0000000000000000
l1d-0 write 00005549adeaf440 00 0001 03 03 0 [MdW] f710a3fc6c88c778
l2 write 000011812db55cc0 00 0023 00 03 1 [MdW(0003,07)] b1bf6b2b3542a0b8
l1d-0 evict 000011812db55cc0 00 0003 00 00 [IcR] b1bf6b2b3542a0b8
mem read 00009a461a9864c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00009a461a9864c0 00 0019 00 04 0 [McW(0024,03)] 0000000000000000
l1d-0 write 00009a461a9864c0 00 0003 00 03 0 [MdW] ad2c5b4dca99e317
mem read 0000219accc59ec0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000219accc59ec0 01 0014 01 03 0 [McW(0005,06)] 0000000000000000
l1d-1 write 0000219accc59ec0 00 0011 00 03 0 [MdW] eb4acfe9e698c78e
l2 write 00006e7158c618c0 01 0006 01 03 1 [MdW(0012,05)] 5179e06e6d1134ab
l1d-0 evict 00006e7158c618c0 00 0003 01 00 [IcR] 5179e06e6d1134ab
mem read 00004fefb0cb7cc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004fefb0cb7cc0 00 0016 02 03 0 [McW(0031,05)] 0000000000000000
l1d-0 write 00004fefb0cb7cc0 00 0003 01 03 0 [MdW] e98c3d92048e71e7
mem read 00007cc1e5f42e40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007cc1e5f42e40 00 0027 00 04 0 [McW(0023,05)] 0000000000000000
l1d-1 write 00007cc1e5f42e40 00 0009 02 03 0 [MdW] 38334869bbcf71a3
mem read 0000045cce7b2a40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000045cce7b2a40 00 0030 00 04 0 [McW(0005,02)] 0000000000000000
l1d-0 write 0000045cce7b2a40 00 0009 00 03 0 [MdW] 23260c93a8186343
mem read 00004813c834cdc0 -1 -001 -1 -1 1 [McW] 705c2dbf4c432cbe
l2 read 00004813c834cdc0 00 0025 01 03 0 [ScW(0020,02)] 705c2dbf4c432cbe
l1d-0 read 00004813c834cdc0 00 0007 01 03 0 [ScR] 705c2dbf4c432cbe
l1d-0 read 0000ba16e8b8b540 00 0005 02 03 1 [MdW] 3de612c8e734de20
mem read 000019e8db69b240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000019e8db69b240 00 0001 01 03 0 [McW(0021,04)] 0000000000000000
l1d-1 write 000019e8db69b240 00 0009 03 03 0 [MdW] e88dd55a43222698
l1d-0 evict 00009fde26f888c0 00 0003 02 00 [IcR] 405e3e9d2ede086b
l2 read 00006e7158c618c0 01 0006 01 03 1 [SdW(0012,05)] 5179e06e6d1134ab
l1d-0 read 00006e7158c618c0 00 0003 02 03 0 [ScR] 5179e06e6d1134ab
l1d-1 read 00005de844e94fc0 00 0015 02 03 1 [MdW] 81b80adc76842711
mem read 0000c0773417d200 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c0773417d200 01 0023 01 03 0 [McW(0013,05)] 0000000000000000
l1d-1 write 0000c0773417d200 00 0008 01 03 0 [MdW] 092299a4bfa2bf4f
l2 write 0000c3a56b5f8bc0 00 0010 00 03 1 [MdW(0018,04)] 9b4a314f80de0e14
l1d-1 evict 0000c3a56b5f8bc0 00 0015 00 00 [IcR] 9b4a314f80de0e14
mem read 000077988753abc0 -1 -001 -1 -1 1 [McW] 6a88399658070358
l2 read 000077988753abc0 01 0030 00 03 0 [ScW(0007,02)] 6a88399658070358
l1d-1 read 000077988753abc0 00 0015 00 03 0 [ScR] 6a88399658070358
l2 write 00006bf6751e90c0 00 0004 01 03 1 [MdW(0001,07)] d8e76133f5e6b04d
l1d-0 evict 00006bf6751e90c0 00 0003 03 00 [IcR] d8e76133f5e6b04d
mem write 0000adfec432bac0 -1 -001 -1 -1 1 [MdW] 59f49d91de97aae8
l2 evict 0000adfec432bac0 00 0006 00 00 [IcR(0014,07)] 59f49d91de97aae8
mem read 0000c66c607618c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c66c607618c0 00 0023 02 03 0 [McW(0014,07)] 0000000000000000
l1d-0 write 0000c66c607618c0 00 0003 03 03 0 [MdW] ecc19bfa60ae4cae
l1d-0 write 0000c662cc646980 00 0006 00 03 1 [MdW] cb7a2ac78d75ea1e
l1d-0 evict 000086890a9e27c0 00 0015 00 03 [IcR] e5b8948696e0bed1
l2 write 000086890a9e27c0 01 0005 00 04 1 [MdW(0030,06)] e5b8948696e0bed1
mem write 000086890a9e27c0 -1 -001 -1 -1 1 [MdW] e5b8948696e0bed1
l2 evict 000086890a9e27c0 01 0005 00 00 [IcR(0030,06)] e5b8948696e0bed1
mem read 0000a462f1bb1500 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a462f1bb1500 00 0029 01 03 0 [McW(0030,06)] 0000000000000000
l1d-0 write 0000a462f1bb1500 00 0004 00 03 0 [MdW] 836865657f27e721
l1d-1 read 000008ededd7fd80 00 0006 01 03 1 [MdW] 7e9c23661053827d
mem read 00007a0ccec77d00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007a0ccec77d00 01 0014 02 03 0 [McW(0015,07)] 0000000000000000
l1d-1 write 00007a0ccec77d00 00 0004 03 03 0 [MdW] c921aab4717f265e
mem read 0000b78d2a790900 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b78d2a790900 01 0011 02 03 0 [McW(0007,00)] 0000000000000000
l1d-0 write 0000b78d2a790900 00 0004 01 03 0 [MdW] e1b5104d91b6911e
l1d-1 evict 00005f4478ac3180 00 0006 02 00 [IcR] 8d9cf30f1c4ad7ad
l2 write 00005f4478ac3180 00 0023 01 02 1 [MdW(0028,05)] 8d9cf30f1c4ad7ad
mem write 00005f4478ac3180 -1 -001 -1 -1 1 [MdW] 8d9cf30f1c4ad7ad
l2 evict 00005f4478ac3180 00 0023 01 00 [IcR(0028,05)] 8d9cf30f1c4ad7ad
mem read 0000517854abf080 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000517854abf080 01 0004 00 04 0 [McW(0028,05)] 0000000000000000
l1d-1 write 0000517854abf080 00 0002 01 03 0 [MdW] e0a55470670fd6c5
l1d-0 evict 00001ad58832f640 00 0009 03 02 [IcR] 98a208d3aedf4d84
l2 write 00001ad58832f640 00 0009 00 04 1 [MdW(0025,06)] 98a208d3aedf4d84
mem write 00001ad58832f640 -1 -001 -1 -1 1 [MdW] 98a208d3aedf4d84
l2 evict 00001ad58832f640 00 0009 00 00 [IcR(0025,06)] 98a208d3aedf4d84
mem read 0000d053f6b48540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d053f6b48540 00 0006 00 03 0 [McW(0025,06)] 0000000000000000
l1d-1 write 0000d053f6b48540 00 0005 01 03 0 [MdW] a4fca9060769b884
mem read 0000ced5eac0d680 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ced5eac0d680 01 0007 00 04 0 [McW(0029,04)] 0000000000000000
l1d-0 write 0000ced5eac0d680 00 0010 01 03 0 [MdW] 1d2194cf7fc214b2
l2 write 0000f88b44bf5840 01 0027 00 04 1 [MdW(0017,00)] 5835bf5c1572177d
l1d-1 evict 0000f88b44bf5840 00 0001 02 00 [IcR] 5835bf5c1572177d
l2 read 0000726ad1114c40 00 0011 00 04 1 [MdW(0006,02)] 018da7dff3d2ca2c
l1d-1 write 0000726ad1114c40 00 0001 02 03 0 [MdW] bd10168e51a99e6f
mem write 00006bf6751e90c0 -1 -001 -1 -1 1 [MdW] d8e76133f5e6b04d
l2 evict 00006bf6751e90c0 00 0004 01 00 [IcR(0001,07)] d8e76133f5e6b04d
mem read 000063036c943940 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000063036c943940 01 0022 00 04 0 [McW(0001,07)] 0000000000000000
l1d-0 write 000063036c943940 00 0005 03 03 0 [MdW] 1d26ae93ce6a6db6
l2 read 0000fe2140a6f980 01 0009 00 04 1 [SdW(0009,06)] 4e2ed36498da5bfc
l1d-1 read 0000fe2140a6f980 00 0006 02 03 0 [ScR] 4e2ed36498da5bfc
l2 write 00002b4766af8580 00 0026 00 04 1 [MdW(0024,06)] 9f9038d2bb1fa8a4
l1d-0 evict 00002b4766af8580 00 0006 01 00 [IcR] 9f9038d2bb1fa8a4
mem read 0000c97dfb94fd80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c97dfb94fd80 00 0019 01 03 0 [McW(0026,07)] 0000000000000000
l1d-0 write 0000c97dfb94fd80 00 0006 01 03 0 [MdW] 2fba7336b9505ed4
mem read 0000bb8c7eafac00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000bb8c7eafac00 01 0022 01 03 0 [McW(0012,02)] 0000000000000000
l1d-1 write 0000bb8c7eafac00 00 0000 03 03 0 [MdW] 209d7976d327f65d
l1d-1 read 0000fe2140a6f980 00 0006 02 03 1 [ScR] 4e2ed36498da5bfc
l1d-0 read 00009a603343d580 00 0006 02 03 1 [MdW] 75aae8a3bba85efe
mem read 0000fa408c35ba00 -1 -001 -1 -1 1 [McW] 7eec603efdcdea3b
l2 read 0000fa408c35ba00 01 0031 00 04 0 [ScW(0026,00)] 7eec603efdcdea3b
l1d-0 read 0000fa408c35ba00 00 0008 01 03 0 [ScR] 7eec603efdcdea3b
l2 write 00006cfd00fe8ac0 00 0024 00 03 1 [MdW(0006,06)] b025b1f23a5ed092
l2 read 00006cfd00fe8ac0 00 0024 00 04 1 [SdW(0006,06)] b025b1f23a5ed092
l1i-0 read 00006cfd00fe8ac0 00 0011 00 03 0 [ScR] b025b1f23a5ed092
l1d-1 evict 00007e3437831800 00 0000 00 01 [IcR] 6b9d76bb27c3ffa3
l2 write 00007e3437831800 00 0017 01 02 1 [MdW(0026,04)] 6b9d76bb27c3ffa3
mem write 00007e3437831800 -1 -001 -1 -1 1 [MdW] 6b9d76bb27c3ffa3
l2 evict 00007e3437831800 00 0017 01 00 [IcR(0026,04)] 6b9d76bb27c3ffa3
mem read 0000afd2a9e735c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000afd2a9e735c0 01 0005 00 04 0 [McW(0026,04)] 0000000000000000
l1d-1 write 0000afd2a9e735c0 00 0007 01 03 0 [MdW] 5f63bfdb9b9fe352
l1d-1 read 0000219accc59ec0 00 0011 00 03 1 [MdW] eb4acfe9e698c78e
mem read 0000f448c073e880 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f448c073e880 01 0030 02 03 0 [McW(0005,01)] 0000000000000000
l1d-0 write 0000f448c073e880 00 0002 01 03 0 [MdW] 8c8ab877bdd6b24f
mem read 00002c011c660300 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002c011c660300 00 0012 01 03 0 [McW(0023,04)] 0000000000000000
l1d-0 write 00002c011c660300 00 0012 03 03 0 [MdW] aacfbf30c579992e
l1d-0 read 000031e4a2646740 00 0013 03 03 1 [MdW] ad706d8054dc34c1
l2 write 00009aaf14205900 01 0030 01 02 1 [MdW(0015,03)] 6e85f64de7e125d5
l1d-1 evict 00009aaf14205900 00 0004 00 00 [IcR] 6e85f64de7e125d5
mem read 00001fd6787ba100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00001fd6787ba100 00 0007 00 04 0 [McW(0010,06)] 0000000000000000
l1d-1 write 00001fd6787ba100 00 0004 00 03 0 [MdW] 6ec02943a5ad4367
l1d-0 evict 00004fefb0cb7cc0 00 0003 01 01 [IcR] e98c3d92048e71e7
l2 write 00004fefb0cb7cc0 00 0016 02 03 1 [MdW(0031,05)] e98c3d92048e71e7
mem write 00004fefb0cb7cc0 -1 -001 -1 -1 1 [MdW] e98c3d92048e71e7
l2 evict 00004fefb0cb7cc0 00 0016 02 00 [IcR(0031,05)] e98c3d92048e71e7
mem read 000044ca9c649400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000044ca9c649400 00 0030 01 03 0 [McW(0031,05)] 0000000000000000
l1d-1 write 000044ca9c649400 00 0000 00 03 0 [MdW] 58da3250723bdd77
l1d-1 write 000008ededd7fd80 00 0006 01 03 1 [MdW] ae3bc19b04dd337c
l1d-1 read 0000afd2a9e735c0 00 0007 01 03 1 [MdW] 5f63bfdb9b9fe352
mem write 0000f88b44bf5840 -1 -001 -1 -1 1 [MdW] 5835bf5c1572177d
l2 evict 0000f88b44bf5840 01 0027 00 00 [IcR(0017,00)] 5835bf5c1572177d
mem read 00004ed4d0955b80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004ed4d0955b80 00 0014 00 04 0 [McW(0017,00)] 0000000000000000
l1d-1 write 00004ed4d0955b80 00 0014 03 03 0 [MdW] 5d48e651e3307f1b
l1d-0 read 0000a462f1bb1500 00 0004 00 03 1 [MdW] 836865657f27e721
l1d-1 evict 00004149ff11d440 00 0001 00 02 [IcR] dbc0b014e9a8cd6b
l2 write 00004149ff11d440 01 0016 01 03 1 [MdW(0007,04)] dbc0b014e9a8cd6b
mem write 00004149ff11d440 -1 -001 -1 -1 1 [MdW] dbc0b014e9a8cd6b
l2 evict 00004149ff11d440 01 0016 01 00 [IcR(0007,04)] dbc0b014e9a8cd6b
mem read 00001ad58832f640 -1 -001 -1 -1 1 [McW] 98a208d3aedf4d84
l2 read 00001ad58832f640 00 0009 00 04 0 [McW(0007,04)] 98a208d3aedf4d84
l1d-0 write 00001ad58832f640 00 0009 03 03 0 [MdW] 796192d34cb6befd
mem read 000091e69e86bc00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000091e69e86bc00 01 0002 01 03 0 [McW(0006,03)] 0000000000000000
l1d-0 write 000091e69e86bc00 00 0000 00 03 0 [MdW] 1efa6f33b940169e
l1d-0 evict 00006cfd00fe8ac0 00 0011 00 00 [IcR] b025b1f23a5ed092
l1d-0 evict 000063036c943940 00 0005 03 03 [IcR] 1d26ae93ce6a6db6
l2 write 000063036c943940 01 0022 00 03 1 [MdW(0001,07)] 1d26ae93ce6a6db6
mem write 000063036c943940 -1 -001 -1 -1 1 [MdW] 1d26ae93ce6a6db6
l2 evict 000063036c943940 01 0022 00 00 [IcR(0001,07)] 1d26ae93ce6a6db6
mem read 000057ef223eb2c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000057ef223eb2c0 00 0009 01 03 0 [McW(0001,07)] 0000000000000000
l1d-0 write 000057ef223eb2c0 00 0011 00 03 0 [MdW] 2d826de3e09ee626
mem read 00004f46a7d2ea80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004f46a7d2ea80 00 0020 02 03 0 [McW(0017,02)] 0000000000000000
l1d-1 write 00004f46a7d2ea80 00 0010 03 03 0 [MdW] a5bec612d1eb9d9a
mem read 0000c79b07073dc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c79b07073dc0 01 0017 02 03 0 [McW(0013,06)] 0000000000000000
l1d-1 write 0000c79b07073dc0 00 0007 02 03 0 [MdW] dc55730c9000f4d6
l1d-0 read 0000418397142480 00 0002 00 03 1 [MdW] 30dbb666b2eba234
l2 write 000036f519c3f6c0 00 0000 00 04 1 [MdW(0012,07)] 55e565dc6cf2d794
l1d-1 evict 000036f519c3f6c0 00 0011 03 00 [IcR] 55e565dc6cf2d794
l1d-0 evict 000052d61b6d5a00 00 0008 00 02 [IcR] e775afa1004c0eb4
l2 evict 000052d61b6d5a00 00 0016 01 00 [IcR(0002,07)] e775afa1004c0eb4
mem read 0000302899d8cac0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000302899d8cac0 01 0012 02 03 0 [McW(0002,07)] 0000000000000000
l1d-1 write 0000302899d8cac0 00 0011 03 03 0 [MdW] bdd24610b537bb57
mem read 000034b9affcc8c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000034b9affcc8c0 01 0005 01 03 0 [McW(0006,04)] 0000000000000000
l1d-1 write 000034b9affcc8c0 00 0003 02 03 0 [MdW] 1c123c3c03dd01e9
l2 write 0000a4ed67fcb240 01 0015 00 03 1 [MdW(0028,07)] 4dbd028faad33d6c
l1d-0 evict 0000a4ed67fcb240 00 0009 01 00 [IcR] 4dbd028faad33d6c
l1d-0 evict 0000333bb344eb40 00 0013 00 00 [IcR] 2a5c80345e469f5d
l2 write 0000333bb344eb40 00 0013 00 03 1 [MdW(0006,05)] 2a5c80345e469f5d
mem write 0000333bb344eb40 -1 -001 -1 -1 1 [MdW] 2a5c80345e469f5d
l2 evict 0000333bb344eb40 00 0013 00 00 [IcR(0006,05)] 2a5c80345e469f5d
mem read 00004c22aaaafa40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004c22aaaafa40 01 0021 02 03 0 [McW(0006,05)] 0000000000000000
l1d-0 write 00004c22aaaafa40 00 0009 01 03 0 [MdW] 2d93d3fed33d69e0
l1d-0 read 0000c86d27a3d040 00 0001 01 03 1 [MdW] 11d1789f7e517168
l2 write 0000740d5897eb00 00 0016 00 04 1 [MdW(0020,01)] 024d94b6ba577e25
l1d-0 evict 0000740d5897eb00 00 0012 00 00 [IcR] 024d94b6ba577e25
mem read 00007fdc5854bb00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007fdc5854bb00 00 0007 01 03 0 [McW(0031,02)] 0000000000000000
l1d-0 write 00007fdc5854bb00 00 0012 00 03 0 [MdW] 5239f66a34ddf76a
l1d-0 read 0000c97dfb94fd80 00 0006 01 03 1 [MdW] 2fba7336b9505ed4
l1d-0 read 00006f44ab8bcf80 00 0014 00 03 1 [MdW] 23fb33a840c4d118
mem read 0000f88b44bf5840 -1 -001 -1 -1 1 [McW] 5835bf5c1572177d
l2 read 0000f88b44bf5840 01 0027 00 04 0 [ScW(0022,02)] 5835bf5c1572177d
l1d-1 read 0000f88b44bf5840 00 0001 00 03 0 [ScR] 5835bf5c1572177d
l1d-1 read 000044ca9c649400 00 0000 00 03 1 [MdW] 58da3250723bdd77
l1d-0 write 0000c86d27a3d040 00 0001 01 03 1 [MdW] b7fe082719be048b
l1d-1 read 000057c442889400 00 0000 02 03 1 [MdW] d17309df336a0e01
l1d-0 evict 00004813c834cdc0 00 0007 01 03 [IcR] 705c2dbf4c432cbe
l2 evict 00004813c834cdc0 00 0025 01 00 [IcR(0020,02)] 705c2dbf4c432cbe
mem read 00004cfb5e6fc8c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004cfb5e6fc8c0 00 0002 01 03 0 [McW(0020,02)] 0000000000000000
l1d-0 write 00004cfb5e6fc8c0 00 0003 01 03 0 [MdW] bb786e37d55629f0
l2 read 0000c3a56b5f8bc0 00 0010 00 04 1 [SdW(0018,04)] 9b4a314f80de0e14
l1d-0 read 0000c3a56b5f8bc0 00 0015 00 03 0 [ScR] 9b4a314f80de0e14
l1d-0 evict 0000fa408c35ba00 00 0008 01 03 [IcR] 7eec603efdcdea3b
l2 evict 0000fa408c35ba00 01 0031 00 00 [IcR(0026,00)] 7eec603efdcdea3b
mem read 000087a8e7348c80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000087a8e7348c80 01 0019 01 03 0 [McW(0026,00)] 0000000000000000
l1d-0 write 000087a8e7348c80 00 0002 02 03 0 [MdW] 479e4ab56425a27e
l2 write 000095873da506c0 01 0012 01 02 1 [MdW(0016,04)] 64a74b273feb83c9
l1d-0 evict 000095873da506c0 00 0011 01 00 [IcR] 64a74b273feb83c9
mem read 0000afa7e0db12c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000afa7e0db12c0 01 0019 02 03 0 [McW(0013,04)] 0000000000000000
l1d-0 write 0000afa7e0db12c0 00 0011 01 03 0 [MdW] fbf332b5f72ab798
mem read 00003f232f338000 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003f232f338000 00 0021 00 04 0 [McW(0000,03)] 0000000000000000
l1d-0 write 00003f232f338000 00 0000 01 03 0 [MdW] 304bee8ad7731636
l2 write 000046663e4def00 00 0031 00 03 1 [MdW(0023,03)] e21542a5128e9ecb
l1d-0 evict 000046663e4def00 00 0012 01 00 [IcR] e21542a5128e9ecb
mem write 000036f519c3f6c0 -1 -001 -1 -1 1 [MdW] 55e565dc6cf2d794
l2 evict 000036f519c3f6c0 00 0000 00 00 [IcR(0012,07)] 55e565dc6cf2d794
mem read 0000d9b688e86700 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000d9b688e86700 01 0031 00 04 0 [McW(0012,07)] 0000000000000000
l1d-0 write 0000d9b688e86700 00 0012 01 03 0 [MdW] c311a871a624c062
l1d-1 read 0000fe2140a6f980 00 0006 02 03 1 [ScR] 4e2ed36498da5bfc
l2 write 0000dcedffd5d840 00 0018 00 04 1 [MdW(0001,01)] df69ebf16388cff7
l1d-0 evict 0000dcedffd5d840 00 0001 00 00 [IcR] df69ebf16388cff7
l2 evict 00009fde26f888c0 00 0005 01 00 [IcR(0023,07)] 405e3e9d2ede086b
mem read 0000232a73ed2040 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000232a73ed2040 00 0013 00 03 0 [McW(0023,07)] 0000000000000000
l1d-0 write 0000232a73ed2040 00 0001 00 03 0 [MdW] f06374fe1abab634
mem read 0000fb280d796f00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000fb280d796f00 00 0016 01 03 0 [McW(0003,02)] 0000000000000000
l1d-1 write 0000fb280d796f00 00 0012 01 03 0 [MdW] 034702017a6f4b77
l1d-1 read 00007a0ccec77d00 00 0004 03 03 1 [MdW] c921aab4717f265e
l1d-0 read 000087a8e7348c80 00 0002 02 03 1 [MdW] 479e4ab56425a27e
mem read 000026d8a5685e00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000026d8a5685e00 01 0027 01 03 0 [McW(0020,05)] 0000000000000000
l1d-0 write 000026d8a5685e00 00 0008 00 03 0 [MdW] bdc0ca095c5c90ba
l1d-0 read 00006e7158c618c0 00 0003 02 03 1 [ScR] 5179e06e6d1134ab
l1d-1 read 00004ed4d0955b80 00 0014 03 03 1 [MdW] 5d48e651e3307f1b
l2 write 00009a461a9864c0 00 0019 00 03 1 [MdW(0024,03)] ad2c5b4dca99e317
l1d-0 evict 00009a461a9864c0 00 0003 00 00 [IcR] ad2c5b4dca99e317
l1d-1 evict 0000799fa07cabc0 00 0015 01 00 [IcR] 5045fca347d4f27e
l2 write 0000799fa07cabc0 01 0016 00 04 1 [MdW(0031,06)] 5045fca347d4f27e
mem write 0000799fa07cabc0 -1 -001 -1 -1 1 [MdW] 5045fca347d4f27e
l2 evict 0000799fa07cabc0 01 0016 00 00 [IcR(0031,06)] 5045fca347d4f27e
mem read 0000c2b04eebfcc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c2b04eebfcc0 01 0018 01 03 0 [McW(0031,06)] 0000000000000000
l1d-0 write 0000c2b04eebfcc0 00 0003 00 03 0 [MdW] aa640df3e7475762
mem read 0000a40aa8666480 -1 -001 -1 -1 1 [McW] b516458655735b72
l2 read 0000a40aa8666480 01 0000 01 03 0 [ScW(0015,01)] b516458655735b72
l1d-0 read 0000a40aa8666480 00 0002 03 03 0 [ScR] b516458655735b72
l2 write 00004d48d3ab6400 00 0025 00 04 1 [MdW(0005,00)] 0bad902dc5dbfa0f
l1d-1 evict 00004d48d3ab6400 00 0000 01 00 [IcR] 0bad902dc5dbfa0f
l1d-0 evict 0000d9b688e86700 00 0012 01 03 [IcR] c311a871a624c062
l2 write 0000d9b688e86700 01 0031 00 04 1 [MdW(0012,07)] c311a871a624c062
mem write 0000d9b688e86700 -1 -001 -1 -1 1 [MdW] c311a871a624c062
l2 evict 0000d9b688e86700 01 0031 00 00 [IcR(0012,07)] c311a871a624c062
mem read 0000df16e7f1d400 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000df16e7f1d400 00 0028 01 03 0 [McW(0012,07)] 0000000000000000
l1d-1 write 0000df16e7f1d400 00 0000 01 03 0 [MdW] a67a11e1cf49b77b
l1i-1 evict 00006980d04a3400 00 0000 00 03 [IcR] fe5ed69efed3831b
l2 write 0000bb8c7eafac00 01 0022 01 03 1 [MdW(0012,02)] 209d7976d327f65d
l1d-1 evict 0000bb8c7eafac00 00 0000 03 00 [IcR] 209d7976d327f65d
mem read 00006980d04a3400 -1 -001 -1 -1 1 [McW] fe5ed69efed3831b
l2 read 00006980d04a3400 00 0009 02 03 0 [McW(0000,05)] fe5ed69efed3831b
l1d-1 write 00006980d04a3400 00 0000 03 03 0 [MdW] 7ef963a07731ba85
l1d-1 read 000077988753abc0 00 0015 00 03 1 [ScR] 6a88399658070358
l2 write 0000c66c607618c0 00 0023 02 03 1 [MdW(0014,07)] ecc19bfa60ae4cae
l1d-0 evict 0000c66c607618c0 00 0003 03 00 [IcR] ecc19bfa60ae4cae
mem read 0000c20e6058a4c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c20e6058a4c0 00 0004 01 03 0 [McW(0009,05)] 0000000000000000
l1d-0 write 0000c20e6058a4c0 00 0003 03 03 0 [MdW] 5831af44fc76ffdb
l2 write 000084af1bf9eb80 00 0022 00 03 1 [MdW(0025,01)] 2898ddc5bb04ad23
l1d-1 evict 000084af1bf9eb80 00 0014 00 00 [IcR] 2898ddc5bb04ad23
mem read 0000d2e78beabf80 -1 -001 -1 -1 1 [McW] bebed8958f71442d
l2 read 0000d2e78beabf80 01 0007 01 03 0 [ScW(0011,05)] bebed8958f71442d
l1d-1 read 0000d2e78beabf80 00 0014 00 03 0 [ScR] bebed8958f71442d
mem read 0000e030a3d78740 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e030a3d78740 01 0010 01 03 0 [McW(0010,04)] 0000000000000000
l1d-0 write 0000e030a3d78740 00 0013 00 03 0 [MdW] 707af21411b2423c
l1d-0 read 0000c662cc646980 00 0006 00 03 1 [MdW] cb7a2ac78d75ea1e
mem read 000063036c943940 -1 -001 -1 -1 1 [McW] 1d26ae93ce6a6db6
l2 read 000063036c943940 00 0026 01 03 0 [McW(0022,06)] 1d26ae93ce6a6db6
l1d-0 write 000063036c943940 00 0005 03 03 0 [MdW] 7fa9ed2821c9db2a
l2 write 0000872d66386580 01 0015 01 03 1 [MdW(0021,01)] b53b1938ff066c6d
l1d-1 evict 0000872d66386580 00 0006 03 00 [IcR] b53b1938ff066c6d
mem read 0000e0ad5d373580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e0ad5d373580 00 0008 00 04 0 [McW(0031,01)] 0000000000000000
l1d-1 write 0000e0ad5d373580 00 0006 03 03 0 [MdW] 5c9bdc6f4e724176
l1d-1 write 000008ededd7fd80 00 0006 01 03 1 [MdW] dffe7dbda5a630ab
l1d-1 write 0000205a116a7d40 00 0005 00 03 1 [MdW] 64c5ac835efc8d57
l2 write 0000aa6ad32c4a40 01 0012 00 02 1 [MdW(0012,01)] 600bfac00272b065
l1d-1 evict 0000aa6ad32c4a40 00 0009 00 00 [IcR] 600bfac00272b065
mem write 00009aaf14205900 -1 -001 -1 -1 1 [MdW] 6e85f64de7e125d5
l2 evict 00009aaf14205900 01 0030 01 00 [IcR(0015,03)] 6e85f64de7e125d5
mem read 0000f081b09aa240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f081b09aa240 00 0029 02 03 0 [McW(0015,03)] 0000000000000000
l1d-1 write 0000f081b09aa240 00 0009 00 03 0 [MdW] 30470642eb039e5b
l2 write 000044ca9c649400 00 0030 01 03 1 [MdW(0031,05)] 58da3250723bdd77
l1d-1 evict 000044ca9c649400 00 0000 00 00 [IcR] 58da3250723bdd77
mem write 0000bb8c7eafac00 -1 -001 -1 -1 1 [MdW] 209d7976d327f65d
l2 evict 0000bb8c7eafac00 01 0022 01 00 [IcR(0012,02)] 209d7976d327f65d
mem read 000073703a455800 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000073703a455800 00 0004 02 03 0 [McW(0012,02)] 0000000000000000
l1d-1 write 000073703a455800 00 0000 00 03 0 [MdW] 9fc569fe6ed32a01
l1d-1 read 0000726ad1114c40 00 0001 02 03 1 [MdW] bd10168e51a99e6f
l1d-1 read 0000c0773417d200 00 0008 01 03 1 [MdW] 092299a4bfa2bf4f
mem read 00004813c834cdc0 -1 -001 -1 -1 1 [McW] 705c2dbf4c432cbe
l2 read 00004813c834cdc0 00 0025 01 03 0 [ScW(0007,03)] 705c2dbf4c432cbe
l1d-0 read 00004813c834cdc0 00 0007 01 03 0 [ScR] 705c2dbf4c432cbe
l1d-0 write 000026d8a5685e00 00 0008 00 03 1 [MdW] ead7b1b4f2b53fe5
l2 write 00004cfb5e6fc8c0 00 0002 01 03 1 [MdW(0020,02)] bb786e37d55629f0
l1d-0 evict 00004cfb5e6fc8c0 00 0003 01 00 [IcR] bb786e37d55629f0
mem read 000000f97fae5cc0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000000f97fae5cc0 00 0003 01 03 0 [McW(0021,02)] 0000000000000000
l1d-0 write 000000f97fae5cc0 00 0003 01 03 0 [MdW] fb933a96c629912c
l1d-1 evict 000048777e448ac0 00 0011 01 00 [IcR] ebc6d4db1d9b7ded
mem read 00003f92117466c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00003f92117466c0 01 0009 02 03 0 [McW(0003,05)] 0000000000000000
l1d-1 write 00003f92117466c0 00 0011 01 03 0 [MdW] e875ffc98e7626d6
l1d-1 evict 0000726ad1114c40 00 0001 02 03 [IcR] bd10168e51a99e6f
l2 write 0000726ad1114c40 00 0011 00 04 1 [MdW(0006,02)] bd10168e51a99e6f
mem write 0000726ad1114c40 -1 -001 -1 -1 1 [MdW] bd10168e51a99e6f
l2 evict 0000726ad1114c40 00 0011 00 00 [IcR(0006,02)] bd10168e51a99e6f
mem read 0000ade01f76c940 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ade01f76c940 01 0028 01 03 0 [McW(0006,02)] 0000000000000000
l1d-1 write 0000ade01f76c940 00 0005 02 03 0 [MdW] 7e76db3a89663ea8
l1d-0 evict 00006e7158c618c0 00 0003 02 00 [IcR] 5179e06e6d1134ab
mem read 0000136b8cb094c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000136b8cb094c0 01 0030 01 02 0 [McW(0010,02)] 0000000000000000
l1d-0 write 0000136b8cb094c0 00 0003 02 03 0 [MdW] 93f725490a41ea1d
l1d-0 read 00003f232f338000 00 0000 01 03 1 [MdW] 304bee8ad7731636
mem read 00007b42479583c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007b42479583c0 01 0008 00 04 0 [McW(0008,03)] 0000000000000000
l1d-0 write 00007b42479583c0 00 0015 01 03 0 [MdW] 1eb25cab9f3314d6
l2 write 0000780ab040b980 01 0002 00 03 1 [MdW(0019,07)] 0968e82e4bb02b18
l1d-1 evict 0000780ab040b980 00 0006 00 00 [IcR] 0968e82e4bb02b18
mem read 0000ed89583b9580 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ed89583b9580 00 0018 01 03 0 [McW(0024,00)] 0000000000000000
l1d-1 write 0000ed89583b9580 00 0006 00 03 0 [MdW] fb960620c6243046
l2 write 00004dcada9f52c0 01 0010 00 03 1 [MdW(0025,04)] e9b8fce55ce2beb8
l1d-0 evict 00004dcada9f52c0 00 0011 02 00 [IcR] e9b8fce55ce2beb8
l2 read 0000b8f3e311dac0 00 0015 00 04 1 [SdW(0023,00)] e250fdaf6f64e5b7
l1d-0 read 0000b8f3e311dac0 00 0011 02 03 0 [ScR] e250fdaf6f64e5b7
mem read 000086890a9e27c0 -1 -001 -1 -1 1 [McW] e5b8948696e0bed1
l2 read 000086890a9e27c0 01 0005 02 03 0 [McW(0031,00)] e5b8948696e0bed1
l1d-0 write 000086890a9e27c0 00 0015 02 03 0 [MdW] f1e17884a7f951c6
l1d-0 evict 000048777e448ac0 00 0011 03 00 [IcR] ebc6d4db1d9b7ded
mem read 00006bb87d1516c0 -1 -001 -1 -1 1 [McW] 7bd8aa2129e9a455
l2 read 00006bb87d1516c0 00 0012 02 03 0 [McW(0025,05)] 7bd8aa2129e9a455
l1d-0 write 00006bb87d1516c0 00 0011 03 03 0 [MdW] 8ad9943922ec9dad
l1d-1 read 0000c0773417d200 00 0008 01 03 1 [MdW] 092299a4bfa2bf4f
l2 write 000057ef223eb2c0 00 0009 01 02 1 [MdW(0001,07)] 2d826de3e09ee626
l1d-0 evict 000057ef223eb2c0 00 0011 00 00 [IcR] 2d826de3e09ee626
l2 read 000095873da506c0 01 0012 01 03 1 [SdW(0016,04)] 64a74b273feb83c9
l1d-0 read 000095873da506c0 00 0011 00 03 0 [ScR] 64a74b273feb83c9
l1d-0 read 000026d8a5685e00 00 0008 00 03 1 [MdW] ead7b1b4f2b53fe5
l1d-0 read 00002c011c660300 00 0012 03 03 1 [MdW] aacfbf30c579992e
l2 write 000057c442889400 01 0025 01 03 1 [MdW(0002,06)] d17309df336a0e01
l1d-1 evict 000057c442889400 00 0000 02 00 [IcR] d17309df336a0e01
mem write 0000aa6ad32c4a40 -1 -001 -1 -1 1 [MdW] 600bfac00272b065
l2 evict 0000aa6ad32c4a40 01 0012 00 00 [IcR(0012,01)] 600bfac00272b065
mem read 00007e3437831800 -1 -001 -1 -1 1 [McW] 6b9d76bb27c3ffa3
l2 read 00007e3437831800 01 0013 00 03 0 [ScW(0012,01)] 6b9d76bb27c3ffa3
l1d-1 read 00007e3437831800 00 0000 02 03 0 [ScR] 6b9d76bb27c3ffa3
l1d-0 evict 0000c97dfb94fd80 00 0006 01 02 [IcR] 2fba7336b9505ed4
l2 write 0000c97dfb94fd80 00 0019 01 03 1 [MdW(0026,07)] 2fba7336b9505ed4
mem write 0000c97dfb94fd80 -1 -001 -1 -1 1 [MdW] 2fba7336b9505ed4
l2 evict 0000c97dfb94fd80 00 0019 01 00 [IcR(0026,07)] 2fba7336b9505ed4
mem read 00005066f9d0b480 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005066f9d0b480 00 0026 02 03 0 [McW(0026,07)] 0000000000000000
l1d-1 write 00005066f9d0b480 00 0002 02 03 0 [MdW] 53940c35436b8a64
l1d-1 read 00007e3437831800 00 0000 02 03 1 [ScR] 6b9d76bb27c3ffa3
l1d-0 write 000087a8e7348c80 00 0002 02 03 1 [MdW] b4727a351299efba
mem write 000046663e4def00 -1 -001 -1 -1 1 [MdW] e21542a5128e9ecb
l2 evict 000046663e4def00 00 0031 00 00 [IcR(0023,03)] e21542a5128e9ecb
mem read 0000bbc9c32465c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000bbc9c32465c0 00 0015 01 03 0 [McW(0023,03)] 0000000000000000
l1d-0 write 0000bbc9c32465c0 00 0007 02 03 0 [MdW] a06ae50259dfb6f1
l1d-0 read 0000bbc9c32465c0 00 0007 02 03 1 [MdW] a06ae50259dfb6f1
l2 write 0000df16e7f1d400 00 0028 01 03 1 [MdW(0012,07)] a67a11e1cf49b77b
l1d-1 evict 0000df16e7f1d400 00 0000 01 00 [IcR] a67a11e1cf49b77b
l2 read 000057c442889400 01 0025 01 03 1 [MdW(0002,06)] d17309df336a0e01
l1d-1 write 000057c442889400 00 0000 01 03 0 [MdW] 3bbaa19fee680867
l1d-0 read 0000232a73ed2040 00 0001 00 03 1 [MdW] f06374fe1abab634
l2 write 0000afa7e0db12c0 01 0019 02 03 1 [MdW(0013,04)] fbf332b5f72ab798
l1d-0 evict 0000afa7e0db12c0 00 0011 01 00 [IcR] fbf332b5f72ab798
l2 read 0000908064eef6c0 00 0003 00 04 1 [SdW(0000,07)] 63b934d5bef74a33
l1d-0 read 0000908064eef6c0 00 0011 01 03 0 [ScR] 63b934d5bef74a33
l1d-1 write 000008ededd7fd80 00 0006 01 03 1 [MdW] 650994f63b533953
l1d-1 read 000008ededd7fd80 00 0006 01 03 1 [MdW] 650994f63b533953
mem read 00002d9824d83d80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00002d9824d83d80 00 0021 01 03 0 [McW(0010,07)] 0000000000000000
l1d-0 write 00002d9824d83d80 00 0006 01 03 0 [MdW] 78173ca74385638d
l1d-0 evict 00002cbcc4bef440 00 0001 02 00 [IcR] dd17905e4616865e
l2 write 00002cbcc4bef440 00 0001 00 03 1 [MdW(0018,07)] dd17905e4616865e
mem write 00002cbcc4bef440 -1 -001 -1 -1 1 [MdW] dd17905e4616865e
l2 evict 00002cbcc4bef440 00 0001 00 00 [IcR(0018,07)] dd17905e4616865e
mem read 000052d61b6d5a00 -1 -001 -1 -1 1 [McW] e775afa1004c0eb4
l2 read 000052d61b6d5a00 01 0013 02 03 0 [ScW(0018,07)] e775afa1004c0eb4
l1d-0 read 000052d61b6d5a00 00 0008 01 03 0 [ScR] e775afa1004c0eb4
l1d-1 write 00004f46a7d2ea80 00 0010 03 03 1 [MdW] c6da95c57f5d5cb2
l2 write 0000d8ad57bdad00 00 0020 01 02 1 [MdW(0024,05)] d54d77b5577490c8
l1d-1 evict 0000d8ad57bdad00 00 0004 02 00 [IcR] d54d77b5577490c8
mem read 000084e1ad47e100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000084e1ad47e100 00 0008 01 03 0 [McW(0014,06)] 0000000000000000
l1d-1 write 000084e1ad47e100 00 0004 02 03 0 [MdW] 4e8fcbcb2b46a775
l1d-0 read 00001ad58832f640 00 0009 03 03 1 [MdW] 796192d34cb6befd
mem read 000072629a2641c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000072629a2641c0 00 0011 00 03 0 [McW(0018,06)] 0000000000000000
l1d-1 write 000072629a2641c0 00 0007 03 03 0 [MdW] cff65dd3605c7fe3
mem read 0000f59b70013a00 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000f59b70013a00 01 0023 02 03 0 [McW(0018,02)] 0000000000000000
l1d-1 write 0000f59b70013a00 00 0008 02 03 0 [MdW] 4f9092de9564d05f
l1d-0 evict 000016f64b35ad40 00 0005 01 01 [IcR] 292bf8907b74edd2
l2 write 000016f64b35ad40 01 0019 00 02 1 [MdW(0022,04)] 292bf8907b74edd2
mem write 000016f64b35ad40 -1 -001 -1 -1 1 [MdW] 292bf8907b74edd2
l2 evict 000016f64b35ad40 01 0019 00 00 [IcR(0022,04)] 292bf8907b74edd2
mem read 000030295cbb89c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000030295cbb89c0 00 0031 00 03 0 [McW(0022,04)] 0000000000000000
l1d-0 write 000030295cbb89c0 00 0007 03 03 0 [MdW] 808a6a34835c5ae7
l2 write 00001e12c123a180 01 0018 00 03 1 [MdW(0018,05)] ff1d2beb43b9b33b
l1d-0 evict 00001e12c123a180 00 0006 03 00 [IcR] ff1d2beb43b9b33b
mem read 000018d5c901f980 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000018d5c901f980 01 0001 00 03 0 [McW(0014,00)] 0000000000000000
l1d-0 write 000018d5c901f980 00 0006 03 03 0 [MdW] 3ab4306e1fd65d85
l1d-0 read 000049afd5e02b40 00 0013 02 03 1 [MdW] 283b644b3a7a9886
mem read 0000c194bc8acb40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c194bc8acb40 01 0003 01 03 0 [McW(0016,00)] 0000000000000000
l1d-1 write 0000c194bc8acb40 00 0013 00 03 0 [MdW] b2a2ff4da4c2c04b
l2 write 000089351da6e1c0 00 0029 00 02 1 [MdW(0016,01)] 3ca049e9cff6d872
l1d-1 evict 000089351da6e1c0 00 0007 00 00 [IcR] 3ca049e9cff6d872
l1d-0 evict 00002c011c660300 00 0012 03 03 [IcR] aacfbf30c579992e
l2 write 00002c011c660300 00 0012 01 02 1 [MdW(0023,04)] aacfbf30c579992e
mem write 00002c011c660300 -1 -001 -1 -1 1 [MdW] aacfbf30c579992e
l2 evict 00002c011c660300 00 0012 01 00 [IcR(0023,04)] aacfbf30c579992e
mem read 0000ecb652ef69c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000ecb652ef69c0 01 0012 00 02 0 [McW(0023,04)] 0000000000000000
l1d-1 write 0000ecb652ef69c0 00 0007 00 03 0 [MdW] eb59c87e9e41fe96
l1d-0 read 00004813c834cdc0 00 0007 01 03 1 [ScR] 705c2dbf4c432cbe
mem read 0000e5a32a13e780 -1 -001 -1 -1 1 [McW] 2ffc914fca61ecc0
l2 read 0000e5a32a13e780 00 0019 01 03 0 [ScW(0005,07)] 2ffc914fca61ecc0
l1i-0 read 0000e5a32a13e780 00 0014 00 03 0 [ScR] 2ffc914fca61ecc0
l1d-0 read 0000c86d27a3d040 00 0001 01 03 1 [MdW] b7fe082719be048b
mem read 0000c9ac457e9140 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000c9ac457e9140 00 0007 02 03 0 [McW(0001,02)] 0000000000000000
l1d-1 write 0000c9ac457e9140 00 0005 03 03 0 [MdW] 246c1639ddc18c48
l1d-1 evict 0000fe2140a6f980 00 0006 02 00 [IcR] 4e2ed36498da5bfc
l1d-0 evict 00006f44ab8bcf80 00 0014 00 03 [IcR] 23fb33a840c4d118
l2 write 00006f44ab8bcf80 00 0017 00 03 1 [MdW(0002,02)] 23fb33a840c4d118
mem write 00006f44ab8bcf80 -1 -001 -1 -1 1 [MdW] 23fb33a840c4d118
l2 evict 00006f44ab8bcf80 00 0017 00 00 [IcR(0002,02)] 23fb33a840c4d118
mem read 000075fd554aed80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000075fd554aed80 00 0021 02 03 0 [McW(0002,02)] 0000000000000000
l1d-1 write 000075fd554aed80 00 0006 02 03 0 [MdW] 96f8c40189bf5862
l1d-0 write 0000c20e6058a4c0 00 0003 03 03 1 [MdW] 212a13ad0ffcb4e3
l2 write 000005ccfbfe3240 00 0012 00 03 1 [MdW(0029,03)] 816f140018ef71ee
l1d-0 evict 000005ccfbfe3240 00 0009 02 00 [IcR] 816f140018ef71ee
mem write 00001e12c123a180 -1 -001 -1 -1 1 [MdW] ff1d2beb43b9b33b
l2 evict 00001e12c123a180 01 0018 00 00 [IcR(0018,05)] ff1d2beb43b9b33b
mem read 0000af4203bc4640 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000af4203bc4640 00 0024 02 03 0 [McW(0018,05)] 0000000000000000
l1d-0 write 0000af4203bc4640 00 0009 02 03 0 [MdW] 8ec0b565fb3202a0
l2 write 0000ae053b607e40 00 0011 01 03 1 [MdW(0028,02)] 33aab749622ce144
l1d-1 evict 0000ae053b607e40 00 0009 01 00 [IcR] 33aab749622ce144
l1d-0 evict 000063036c943940 00 0005 03 03 [IcR] 7fa9ed2821c9db2a
l2 write 000063036c943940 00 0026 01 02 1 [MdW(0022,06)] 7fa9ed2821c9db2a
mem write 000063036c943940 -1 -001 -1 -1 1 [MdW] 7fa9ed2821c9db2a
l2 evict 000063036c943940 00 0026 01 00 [IcR(0022,06)] 7fa9ed2821c9db2a
mem read 00004be09470fa40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00004be09470fa40 00 0000 00 04 0 [McW(0022,06)] 0000000000000000
l1d-1 write 00004be09470fa40 00 0009 01 03 0 [MdW] d75b3bf448b79ed6
l2 write 00007cc1e5f42e40 00 0027 00 04 1 [MdW(0023,05)] 38334869bbcf71a3
l1d-1 evict 00007cc1e5f42e40 00 0009 02 00 [IcR] 38334869bbcf71a3
mem read 0000b5edcfe07e40 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b5edcfe07e40 01 0016 00 04 0 [McW(0026,05)] 0000000000000000
l1d-1 write 0000b5edcfe07e40 00 0009 02 03 0 [MdW] df83c9e60deff983
mem read 0000cb907584dc80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000cb907584dc80 01 0004 01 03 0 [McW(0025,07)] 0000000000000000
l1d-1 write 0000cb907584dc80 00 0002 03 03 0 [MdW] 7d8a4e2a232b5292
l2 write 00009a603343d580 01 0003 00 03 1 [MdW(0020,03)] 75aae8a3bba85efe
l1d-0 evict 00009a603343d580 00 0006 02 00 [IcR] 75aae8a3bba85efe
mem read 00005f4478ac3180 -1 -001 -1 -1 1 [McW] 8d9cf30f1c4ad7ad
l2 read 00005f4478ac3180 01 0025 02 02 0 [ScW(0028,06)] 8d9cf30f1c4ad7ad
l1d-0 read 00005f4478ac3180 00 0006 02 03 0 [ScR] 8d9cf30f1c4ad7ad
l1d-1 read 00006a36c42b4840 00 0001 01 03 1 [MdW] f142984e5c1a9135
mem write 0000740d5897eb00 -1 -001 -1 -1 1 [MdW] 024d94b6ba577e25
l2 evict 0000740d5897eb00 00 0016 00 00 [IcR(0020,01)] 024d94b6ba577e25
mem read 000046663e4def00 -1 -001 -1 -1 1 [McW] e21542a5128e9ecb
l2 read 000046663e4def00 00 0031 02 03 0 [ScW(0020,01)] e21542a5128e9ecb
l1d-0 read 000046663e4def00 00 0012 01 03 0 [ScR] e21542a5128e9ecb
l2 write 0000e21b98b426c0 00 0013 01 03 1 [MdW(0010,01)] efda01f1f1ed6559
l1d-1 evict 0000e21b98b426c0 00 0011 02 00 [IcR] efda01f1f1ed6559
l1d-0 evict 000030295cbb89c0 00 0007 03 02 [IcR] 808a6a34835c5ae7
l2 write 000030295cbb89c0 00 0031 00 02 1 [MdW(0022,04)] 808a6a34835c5ae7
mem write 000030295cbb89c0 -1 -001 -1 -1 1 [MdW] 808a6a34835c5ae7
l2 evict 000030295cbb89c0 00 0031 00 00 [IcR(0022,04)] 808a6a34835c5ae7
mem read 0000dda2631186c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000dda2631186c0 00 0026 01 02 0 [McW(0022,04)] 0000000000000000
l1d-1 write 0000dda2631186c0 00 0011 02 03 0 [MdW] 2389031e21d4a9ca
l1d-0 evict 0000b8f3e311dac0 00 0011 02 00 [IcR] e250fdaf6f64e5b7
l2 read 000057ef223eb2c0 00 0009 01 03 1 [SdW(0001,07)] 2d826de3e09ee626
l1d-0 read 000057ef223eb2c0 00 0011 02 03 0 [ScR] 2d826de3e09ee626
mem read 000098857a80b0c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000098857a80b0c0 01 0015 02 03 0 [McW(0000,01)] 0000000000000000
l1d-1 write 000098857a80b0c0 00 0003 03 03 0 [MdW] 4af1df55aebdd3e6
l1d-0 evict 000065dc0cb58f00 00 0012 02 00 [IcR] 01d6f903bd704355
l2 write 000065dc0cb58f00 01 0029 01 03 1 [MdW(0025,02)] 01d6f903bd704355
mem write 000065dc0cb58f00 -1 -001 -1 -1 1 [MdW] 01d6f903bd704355
l2 evict 000065dc0cb58f00 01 0029 01 00 [IcR(0025,02)] 01d6f903bd704355
mem read 0000b16b39d563c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000b16b39d563c0 00 0027 01 03 0 [McW(0025,02)] 0000000000000000
l1d-0 write 0000b16b39d563c0 00 0015 03 03 0 [MdW] 911f9c450394e00e
mem write 0000872d66386580 -1 -001 -1 -1 1 [MdW] b53b1938ff066c6d
l2 evict 0000872d66386580 01 0015 01 00 [IcR(0021,01)] b53b1938ff066c6d
mem read 00007121fd387e80 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00007121fd387e80 00 0004 03 03 0 [McW(0021,01)] 0000000000000000
l1d-0 write 00007121fd387e80 00 0010 02 03 0 [MdW] 1be8eab393ca122c
l1d-0 read 0000c662cc646980 00 0006 00 03 1 [MdW] cb7a2ac78d75ea1e
mem read 0000fa408c35ba00 -1 -001 -1 -1 1 [McW] 7eec603efdcdea3b
l2 read 0000fa408c35ba00 01 0031 00 04 0 [ScW(0028,01)] 7eec603efdcdea3b
l1d-0 read 0000fa408c35ba00 00 0008 02 03 0 [ScR] 7eec603efdcdea3b
mem read 0000a240433c0100 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000a240433c0100 00 0022 02 03 0 [McW(0003,04)] 0000000000000000
l1d-0 write 0000a240433c0100 00 0004 02 03 0 [MdW] 3c86a591f8f297ce
l2 write 0000045cce7b2a40 00 0030 00 03 1 [MdW(0005,02)] 23260c93a8186343
l1d-0 evict 0000045cce7b2a40 00 0009 00 00 [IcR] 23260c93a8186343
l1d-1 evict 0000c72e4af4f8c0 00 0003 01 01 [IcR] 9dd6e27e91bc9863
l2 write 0000c72e4af4f8c0 01 0000 00 03 1 [MdW(0007,06)] 9dd6e27e91bc9863
mem write 0000c72e4af4f8c0 -1 -001 -1 -1 1 [MdW] 9dd6e27e91bc9863
l2 evict 0000c72e4af4f8c0 01 0000 00 00 [IcR(0007,06)] 9dd6e27e91bc9863
mem read 000090b2573a1240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000090b2573a1240 01 0009 03 03 0 [McW(0007,06)] 0000000000000000
l1d-0 write 000090b2573a1240 00 0009 00 03 0 [MdW] a6b936148fd55125
l2 write 0000afd2a9e735c0 01 0005 00 02 1 [MdW(0026,04)] 5f63bfdb9b9fe352
l1d-1 evict 0000afd2a9e735c0 00 0007 01 00 [IcR] 5f63bfdb9b9fe352
mem read 0000e44fac6af1c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000e44fac6af1c0 01 0018 00 03 0 [McW(0006,07)] 0000000000000000
l1d-1 write 0000e44fac6af1c0 00 0007 01 03 0 [MdW] 3b888b23c33eb7f2
l2 write 0000c2b04eebfcc0 01 0018 01 03 1 [MdW(0031,06)] aa640df3e7475762
l1d-0 evict 0000c2b04eebfcc0 00 0003 00 00 [IcR] aa640df3e7475762
mem read 0000534534d814c0 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 0000534534d814c0 00 0006 02 03 0 [McW(0002,05)] 0000000000000000
l1d-0 write 0000534534d814c0 00 0003 00 03 0 [MdW] ec0af5df425fb3d3
l1d-0 evict 00006074635435c0 00 0007 00 00 [IcR] 2d3837be469f574c
l2 write 00006074635435c0 01 0023 00 02 1 [MdW(0008,01)] 2d3837be469f574c
mem write 00006074635435c0 -1 -001 -1 -1 1 [MdW] 2d3837be469f574c
l2 evict 00006074635435c0 01 0023 00 00 [IcR(0008,01)] 2d3837be469f574c
mem read 0000dd1751df6340 -1 -001 -1 -1 1 [McW] ca36f02aad46d4dd
l2 read 0000dd1751df6340 01 0011 03 03 0 [McW(0008,01)] ca36f02aad46d4dd
l1d-0 write 0000dd1751df6340 00 0013 01 03 0 [MdW] adf40caecba14b7b
mem read 000076807a07f540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000076807a07f540 01 0017 03 03 0 [McW(0019,03)] 0000000000000000
l1d-0 write 000076807a07f540 00 0005 01 03 0 [MdW] 5e9696a11ad02c72
l2 write 00006bb87d1516c0 00 0012 02 03 1 [MdW(0025,05)] 8ad9943922ec9dad
l1d-0 evict 00006bb87d1516c0 00 0011 03 00 [IcR] 8ad9943922ec9dad
l1d-0 evict 000086890a9e27c0 00 0015 02 02 [IcR] f1e17884a7f951c6
l2 write 000086890a9e27c0 01 0005 02 03 1 [MdW(0031,00)] f1e17884a7f951c6
mem write 000086890a9e27c0 -1 -001 -1 -1 1 [MdW] f1e17884a7f951c6
l2 evict 000086890a9e27c0 01 0005 02 00 [IcR(0031,00)] f1e17884a7f951c6
mem read 0000adfec432bac0 -1 -001 -1 -1 1 [McW] 59f49d91de97aae8
l2 read 0000adfec432bac0 01 0000 00 03 0 [ScW(0031,00)] 59f49d91de97aae8
l1d-0 read 0000adfec432bac0 00 0011 03 03 0 [ScR] 59f49d91de97aae8
l1d-0 read 000046663e4def00 00 0012 01 03 1 [ScR] e21542a5128e9ecb
l1d-0 read 000091e69e86bc00 00 0000 00 03 1 [MdW] 1efa6f33b940169e
l1d-0 read 0000b78d2a790900 00 0004 01 03 1 [MdW] e1b5104d91b6911e
l1d-0 read 0000232a73ed2040 00 0001 00 03 1 [MdW] f06374fe1abab634
l1d-0 read 000031e4a2646740 00 0013 03 03 1 [MdW] ad706d8054dc34c1
l2 write 00002d9824d83d80 00 0021 01 02 1 [MdW(0010,07)] 78173ca74385638d
l1d-0 evict 00002d9824d83d80 00 0006 01 00 [IcR] 78173ca74385638d
l1d-1 evict 0000e0ad5d373580 00 0006 03 00 [IcR] 5c9bdc6f4e724176
l2 write 0000e0ad5d373580 00 0008 00 03 1 [MdW(0031,01)] 5c9bdc6f4e724176
l2 read 0000e0ad5d373580 00 0008 00 04 1 [MdW(0031,01)] 5c9bdc6f4e724176
l1d-0 write 0000e0ad5d373580 00 0006 01 03 0 [MdW] 032c152e3f44b83d
l2 write 0000d053f6b48540 00 0006 00 02 1 [MdW(0025,06)] a4fca9060769b884
l1d-1 evict 0000d053f6b48540 00 0005 01 00 [IcR] a4fca9060769b884
l1d-0 evict 000046663e4def00 00 0012 01 03 [IcR] e21542a5128e9ecb
l2 evict 000046663e4def00 00 0031 02 00 [IcR(0020,01)] e21542a5128e9ecb
mem read 00005e644f2ad540 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 00005e644f2ad540 00 0031 00 03 0 [McW(0020,01)] 0000000000000000
l1d-1 write 00005e644f2ad540 00 0005 01 03 0 [MdW] c7002ca6c9947314
l2 write 00004c22aaaafa40 01 0021 02 03 1 [MdW(0006,05)] 2d93d3fed33d69e0
l1d-0 evict 00004c22aaaafa40 00 0009 01 00 [IcR] 2d93d3fed33d69e0
mem write 00007cc1e5f42e40 -1 -001 -1 -1 1 [MdW] 38334869bbcf71a3
l2 evict 00007cc1e5f42e40 00 0027 00 00 [IcR(0023,05)] 38334869bbcf71a3
mem read 000019a40a160240 -1 -001 -1 -1 1 [McW] 0000000000000000
l2 read 000019a40a160240 00 0008 02 03 0 [McW(0023,05)] 0000000000000000
l1d-0 write 000019a40a160240 00 0009 01 03 0 [MdW] 49b4646d11db34bf
l2 write 00004e306c77ba80 00 0005 00 04 1 [MdW(0019,04)] e1a5b4847aabaabd
l1d-1 evict 00004e306c77ba80 00 0010 00 00 [IcR] e1a5b4847aabaabd
mem read 000011abc3e7fe80 -1 -001 -1 -1 1 [McW] d8e6dec1c6caebeb
l2 read 000011abc3e7fe80 00 0023 01 02 0 [ScW(0020,04)] d8e6dec1c6caebeb
l1d-1 read 000011abc3e7fe80 00 0010 00 03 0 [ScR] d8e6dec1c6caebeb
l1d-1 read 00004f46a7d2ea80 00 0010 03 03 1 [MdW] c6da95c57f5d5cb2
l2 write 000019e8db69b240 00 0001 01 03 1 [MdW(0021,04)] e88dd55a43222698
l1d-1 evict 000019e8db69b240 00 0009 03 00 [IcR] e88dd55a43222698