X86: Update stats now that the dest reg isn't read unnecessarily to set flags.

This commit is contained in:
Gabe Black 2011-02-13 17:45:30 -08:00
parent bce2be525d
commit 44306e8114
43 changed files with 197 additions and 197 deletions

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/00.gzip/x86/linux/o3-timing -re tests/run.py build/X86_SE/tests/fast/long/00.gzip/x86/linux/o3-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 248801 # Simulator instruction rate (inst/s)
host_mem_usage 232880 # Number of bytes of host memory used
host_seconds 6517.22 # Real time elapsed on the host
host_tick_rate 116459266 # Simulator tick rate (ticks/s)
host_inst_rate 240879 # Simulator instruction rate (inst/s)
host_mem_usage 232888 # Number of bytes of host memory used
host_seconds 6731.58 # Real time elapsed on the host
host_tick_rate 112750685 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 1621493982 # Number of instructions simulated
sim_seconds 0.758991 # Number of seconds simulated
@ -217,9 +217,9 @@ system.cpu.iew.EXEC:rate 1.113825 # In
system.cpu.iew.EXEC:refs 627755630 # number of memory reference insts executed
system.cpu.iew.EXEC:stores 190105687 # Number of stores executed
system.cpu.iew.EXEC:swp 0 # number of swp insts executed
system.cpu.iew.WB:consumers 2045668274 # num instructions consuming a value
system.cpu.iew.WB:consumers 1860684264 # num instructions consuming a value
system.cpu.iew.WB:count 1687762822 # cumulative count of insts written-back
system.cpu.iew.WB:fanout 0.647025 # average fanout of values written-back
system.cpu.iew.WB:fanout 0.711350 # average fanout of values written-back
system.cpu.iew.WB:penalized 0 # number of instrctions required to write to 'other' IQ
system.cpu.iew.WB:penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ
system.cpu.iew.WB:producers 1323598001 # num instructions producing a value
@ -253,7 +253,7 @@ system.cpu.iew.lsq.thread.0.squashedStores 10245257 #
system.cpu.iew.memOrderViolationEvents 6882405 # Number of memory order violations
system.cpu.iew.predictedNotTakenIncorrect 2235 # Number of branches that were predicted not taken incorrectly
system.cpu.iew.predictedTakenIncorrect 6111107 # Number of branches that were predicted taken incorrectly
system.cpu.int_regfile_reads 3449745474 # number of integer regfile reads
system.cpu.int_regfile_reads 3195299120 # number of integer regfile reads
system.cpu.int_regfile_writes 1684589292 # number of integer regfile writes
system.cpu.ipc 1.068191 # IPC: Instructions Per Cycle
system.cpu.ipc_total 1.068191 # IPC: Total IPC of All Threads
@ -360,7 +360,7 @@ system.cpu.iq.iqNonSpecInstsAdded 67 # Nu
system.cpu.iq.iqSquashedInstsExamined 174090375 # Number of squashed instructions iterated over during squash; mainly for profiling
system.cpu.iq.iqSquashedInstsIssued 3040 # Number of squashed instructions issued
system.cpu.iq.iqSquashedNonSpecRemoved 17 # Number of squashed non-spec instructions that were removed
system.cpu.iq.iqSquashedOperandsExamined 340356814 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.iq.iqSquashedOperandsExamined 322977188 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.l2cache.ReadExReq_accesses 247374 # number of ReadExReq accesses(hits+misses)
system.cpu.l2cache.ReadExReq_avg_miss_latency 34288.873379 # average ReadExReq miss latency
system.cpu.l2cache.ReadExReq_avg_mshr_miss_latency 31083.636921 # average ReadExReq mshr miss latency
@ -444,7 +444,7 @@ system.cpu.rename.RENAME:IQFullEvents 33672472 # Nu
system.cpu.rename.RENAME:IdleCycles 389992916 # Number of cycles rename is idle
system.cpu.rename.RENAME:LSQFullEvents 45640252 # Number of times rename has blocked due to LSQ full
system.cpu.rename.RENAME:ROBFullEvents 23 # Number of times rename has blocked due to ROB full
system.cpu.rename.RENAME:RenameLookups 4730693313 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenameLookups 4455391031 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenamedInsts 1827559293 # Number of instructions processed by rename
system.cpu.rename.RENAME:RenamedOperands 1825935922 # Number of destination operands rename has renamed
system.cpu.rename.RENAME:RunCycles 951399892 # Number of cycles rename is running
@ -452,7 +452,7 @@ system.cpu.rename.RENAME:SquashCycles 29266045 # Nu
system.cpu.rename.RENAME:UnblockCycles 118119949 # Number of cycles rename is unblocking
system.cpu.rename.RENAME:UndoneMaps 207941272 # Number of HB maps that are undone due to squashing
system.cpu.rename.RENAME:fp_rename_lookups 32 # Number of floating rename lookups
system.cpu.rename.RENAME:int_rename_lookups 4730693281 # Number of integer rename lookups
system.cpu.rename.RENAME:int_rename_lookups 4455390999 # Number of integer rename lookups
system.cpu.rename.RENAME:serializeStallCycles 2126 # count of cycles rename stalled for serializing inst
system.cpu.rename.RENAME:serializingInsts 68 # count of serializing insts renamed
system.cpu.rename.RENAME:skidInsts 172417007 # count of insts added to the skid buffer

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/00.gzip/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/fast/long/00.gzip/x86/linux/simple-atomic
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 2143892 # Simulator instruction rate (inst/s)
host_mem_usage 223996 # Number of bytes of host memory used
host_seconds 756.33 # Real time elapsed on the host
host_tick_rate 1274562548 # Simulator tick rate (ticks/s)
host_inst_rate 2470310 # Simulator instruction rate (inst/s)
host_mem_usage 224012 # Number of bytes of host memory used
host_seconds 656.39 # Real time elapsed on the host
host_tick_rate 1468620897 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 1621493983 # Number of instructions simulated
sim_seconds 0.963993 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 1621493983 # Number of instructions executed
system.cpu.num_int_alu_accesses 1621354493 # Number of integer alu accesses
system.cpu.num_int_insts 1621354493 # number of integer instructions
system.cpu.num_int_register_reads 4205693190 # number of times the integer registers were read
system.cpu.num_int_register_reads 3953866002 # number of times the integer registers were read
system.cpu.num_int_register_writes 1617994650 # number of times the integer registers were written
system.cpu.num_load_insts 419042125 # Number of load instructions
system.cpu.num_mem_refs 607228182 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/00.gzip/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/fast/long/00.gzip/x86/linux/simple-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1483739 # Simulator instruction rate (inst/s)
host_mem_usage 231720 # Number of bytes of host memory used
host_seconds 1092.84 # Real time elapsed on the host
host_tick_rate 1650061335 # Simulator tick rate (ticks/s)
host_inst_rate 1667736 # Simulator instruction rate (inst/s)
host_mem_usage 231728 # Number of bytes of host memory used
host_seconds 972.27 # Real time elapsed on the host
host_tick_rate 1854683738 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 1621493983 # Number of instructions simulated
sim_seconds 1.803259 # Number of seconds simulated
@ -213,7 +213,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 1621493983 # Number of instructions executed
system.cpu.num_int_alu_accesses 1621354493 # Number of integer alu accesses
system.cpu.num_int_insts 1621354493 # number of integer instructions
system.cpu.num_int_register_reads 4205693190 # number of times the integer registers were read
system.cpu.num_int_register_reads 3953866002 # number of times the integer registers were read
system.cpu.num_int_register_writes 1617994650 # number of times the integer registers were written
system.cpu.num_load_insts 419042125 # Number of load instructions
system.cpu.num_mem_refs 607228182 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:47
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:51
M5 compiled Feb 8 2011 00:58:27
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:30
M5 executing on burrito
command line: build/X86_FS/m5.fast -d build/X86_FS/tests/fast/long/10.linux-boot/x86/linux/pc-simple-atomic -re tests/run.py build/X86_FS/tests/fast/long/10.linux-boot/x86/linux/pc-simple-atomic
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1847456 # Simulator instruction rate (inst/s)
host_mem_usage 370792 # Number of bytes of host memory used
host_seconds 220.10 # Real time elapsed on the host
host_tick_rate 23226044729 # Simulator tick rate (ticks/s)
host_inst_rate 1892986 # Simulator instruction rate (inst/s)
host_mem_usage 370804 # Number of bytes of host memory used
host_seconds 214.81 # Real time elapsed on the host
host_tick_rate 23798444654 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 406624453 # Number of instructions simulated
sim_seconds 5.112051 # Number of seconds simulated
@ -341,7 +341,7 @@ system.cpu.num_idle_cycles 9770620811.997942
system.cpu.num_insts 406624453 # Number of instructions executed
system.cpu.num_int_alu_accesses 391833833 # Number of integer alu accesses
system.cpu.num_int_insts 391833833 # number of integer instructions
system.cpu.num_int_register_reads 896752479 # number of times the integer registers were read
system.cpu.num_int_register_reads 836347867 # number of times the integer registers were read
system.cpu.num_int_register_writes 419160860 # number of times the integer registers were written
system.cpu.num_load_insts 29720540 # Number of load instructions
system.cpu.num_mem_refs 38133606 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:47
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:51
M5 compiled Feb 8 2011 00:58:27
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:30
M5 executing on burrito
command line: build/X86_FS/m5.fast -d build/X86_FS/tests/fast/long/10.linux-boot/x86/linux/pc-simple-timing -re tests/run.py build/X86_FS/tests/fast/long/10.linux-boot/x86/linux/pc-simple-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1318453 # Simulator instruction rate (inst/s)
host_mem_usage 367344 # Number of bytes of host memory used
host_seconds 200.51 # Real time elapsed on the host
host_tick_rate 25871076282 # Simulator tick rate (ticks/s)
host_inst_rate 1227876 # Simulator instruction rate (inst/s)
host_mem_usage 367348 # Number of bytes of host memory used
host_seconds 215.31 # Real time elapsed on the host
host_tick_rate 24093749418 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 264367743 # Number of instructions simulated
sim_seconds 5.187507 # Number of seconds simulated
@ -395,7 +395,7 @@ system.cpu.num_idle_cycles 9771315874.126116
system.cpu.num_insts 264367743 # Number of instructions executed
system.cpu.num_int_alu_accesses 249584659 # Number of integer alu accesses
system.cpu.num_int_insts 249584659 # number of integer instructions
system.cpu.num_int_register_reads 590325911 # number of times the integer registers were read
system.cpu.num_int_register_reads 543556622 # number of times the integer registers were read
system.cpu.num_int_register_writes 266062505 # number of times the integer registers were written
system.cpu.num_load_insts 14817593 # Number of load instructions
system.cpu.num_mem_refs 23178416 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/10.mcf/x86/linux/o3-timing -re tests/run.py build/X86_SE/tests/fast/long/10.mcf/x86/linux/o3-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 206155 # Simulator instruction rate (inst/s)
host_mem_usage 367336 # Number of bytes of host memory used
host_seconds 1349.43 # Real time elapsed on the host
host_tick_rate 101786117 # Simulator tick rate (ticks/s)
host_inst_rate 205513 # Simulator instruction rate (inst/s)
host_mem_usage 367352 # Number of bytes of host memory used
host_seconds 1353.65 # Real time elapsed on the host
host_tick_rate 101468739 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 278192519 # Number of instructions simulated
sim_seconds 0.137353 # Number of seconds simulated
@ -218,9 +218,9 @@ system.cpu.iew.EXEC:rate 1.141834 # In
system.cpu.iew.EXEC:refs 137788104 # number of memory reference insts executed
system.cpu.iew.EXEC:stores 32893684 # Number of stores executed
system.cpu.iew.EXEC:swp 0 # number of swp insts executed
system.cpu.iew.WB:consumers 277834485 # num instructions consuming a value
system.cpu.iew.WB:consumers 268477654 # num instructions consuming a value
system.cpu.iew.WB:count 310858537 # cumulative count of insts written-back
system.cpu.iew.WB:fanout 0.803184 # average fanout of values written-back
system.cpu.iew.WB:fanout 0.831176 # average fanout of values written-back
system.cpu.iew.WB:penalized 0 # number of instrctions required to write to 'other' IQ
system.cpu.iew.WB:penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ
system.cpu.iew.WB:producers 223152216 # num instructions producing a value
@ -254,7 +254,7 @@ system.cpu.iew.lsq.thread.0.squashedStores 4785956 #
system.cpu.iew.memOrderViolationEvents 373621 # Number of memory order violations
system.cpu.iew.predictedNotTakenIncorrect 7861 # Number of branches that were predicted not taken incorrectly
system.cpu.iew.predictedTakenIncorrect 5424940 # Number of branches that were predicted taken incorrectly
system.cpu.int_regfile_reads 583701883 # number of integer regfile reads
system.cpu.int_regfile_reads 553724199 # number of integer regfile reads
system.cpu.int_regfile_writes 279097661 # number of integer regfile writes
system.cpu.ipc 1.012689 # IPC: Instructions Per Cycle
system.cpu.ipc_total 1.012689 # IPC: Total IPC of All Threads
@ -361,7 +361,7 @@ system.cpu.iq.iqNonSpecInstsAdded 453 # Nu
system.cpu.iq.iqSquashedInstsExamined 61001038 # Number of squashed instructions iterated over during squash; mainly for profiling
system.cpu.iq.iqSquashedInstsIssued 492 # Number of squashed instructions issued
system.cpu.iq.iqSquashedNonSpecRemoved 7 # Number of squashed non-spec instructions that were removed
system.cpu.iq.iqSquashedOperandsExamined 78304745 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.iq.iqSquashedOperandsExamined 74571352 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.l2cache.ReadExReq_accesses 106364 # number of ReadExReq accesses(hits+misses)
system.cpu.l2cache.ReadExReq_avg_miss_latency 34222.852226 # average ReadExReq miss latency
system.cpu.l2cache.ReadExReq_avg_mshr_miss_latency 31038.534987 # average ReadExReq mshr miss latency
@ -445,7 +445,7 @@ system.cpu.rename.RENAME:IQFullEvents 11638 # Nu
system.cpu.rename.RENAME:IdleCycles 72242818 # Number of cycles rename is idle
system.cpu.rename.RENAME:LSQFullEvents 253088 # Number of times rename has blocked due to LSQ full
system.cpu.rename.RENAME:ROBFullEvents 2 # Number of times rename has blocked due to ROB full
system.cpu.rename.RENAME:RenameLookups 902485567 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenameLookups 867316457 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenamedInsts 357042681 # Number of instructions processed by rename
system.cpu.rename.RENAME:RenamedOperands 317208618 # Number of destination operands rename has renamed
system.cpu.rename.RENAME:RunCycles 190696526 # Number of cycles rename is running
@ -453,7 +453,7 @@ system.cpu.rename.RENAME:SquashCycles 10324266 # Nu
system.cpu.rename.RENAME:UnblockCycles 414923 # Number of cycles rename is unblocking
system.cpu.rename.RENAME:UndoneMaps 68864426 # Number of HB maps that are undone due to squashing
system.cpu.rename.RENAME:fp_rename_lookups 276 # Number of floating rename lookups
system.cpu.rename.RENAME:int_rename_lookups 902485291 # Number of integer rename lookups
system.cpu.rename.RENAME:int_rename_lookups 867316181 # Number of integer rename lookups
system.cpu.rename.RENAME:serializeStallCycles 5222 # count of cycles rename stalled for serializing inst
system.cpu.rename.RENAME:serializingInsts 452 # count of serializing insts renamed
system.cpu.rename.RENAME:skidInsts 585103 # count of insts added to the skid buffer

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/10.mcf/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/fast/long/10.mcf/x86/linux/simple-atomic
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1484941 # Simulator instruction rate (inst/s)
host_mem_usage 358488 # Number of bytes of host memory used
host_seconds 187.34 # Real time elapsed on the host
host_tick_rate 901823457 # Simulator tick rate (ticks/s)
host_inst_rate 1568972 # Simulator instruction rate (inst/s)
host_mem_usage 358500 # Number of bytes of host memory used
host_seconds 177.31 # Real time elapsed on the host
host_tick_rate 952856596 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 278192520 # Number of instructions simulated
sim_seconds 0.168950 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 278192520 # Number of instructions executed
system.cpu.num_int_alu_accesses 278186228 # Number of integer alu accesses
system.cpu.num_int_insts 278186228 # number of integer instructions
system.cpu.num_int_register_reads 713132571 # number of times the integer registers were read
system.cpu.num_int_register_reads 685043114 # number of times the integer registers were read
system.cpu.num_int_register_writes 248344166 # number of times the integer registers were written
system.cpu.num_load_insts 90779388 # Number of load instructions
system.cpu.num_mem_refs 122219139 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/10.mcf/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/fast/long/10.mcf/x86/linux/simple-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 949258 # Simulator instruction rate (inst/s)
host_mem_usage 366212 # Number of bytes of host memory used
host_seconds 293.06 # Real time elapsed on the host
host_tick_rate 1262562260 # Simulator tick rate (ticks/s)
host_inst_rate 1018906 # Simulator instruction rate (inst/s)
host_mem_usage 366224 # Number of bytes of host memory used
host_seconds 273.03 # Real time elapsed on the host
host_tick_rate 1355197592 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 278192520 # Number of instructions simulated
sim_seconds 0.370011 # Number of seconds simulated
@ -213,7 +213,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 278192520 # Number of instructions executed
system.cpu.num_int_alu_accesses 278186228 # Number of integer alu accesses
system.cpu.num_int_insts 278186228 # number of integer instructions
system.cpu.num_int_register_reads 713132571 # number of times the integer registers were read
system.cpu.num_int_register_reads 685043114 # number of times the integer registers were read
system.cpu.num_int_register_writes 248344166 # number of times the integer registers were written
system.cpu.num_load_insts 90779388 # Number of load instructions
system.cpu.num_mem_refs 122219139 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 10 2011 20:38:27
M5 revision 944f6c89dbb7 7941 default qtip regwidthdecstats.patch tip
M5 started Feb 10 2011 20:38:30
M5 compiled Feb 10 2011 23:58:37
M5 revision a36c6a370231 7943 default qtip resforflagsstats.patch tip
M5 started Feb 10 2011 23:58:40
M5 executing on burrito
command line: build/X86_SE/m5.opt -d build/X86_SE/tests/opt/long/20.parser/x86/linux/o3-timing -re tests/run.py build/X86_SE/tests/opt/long/20.parser/x86/linux/o3-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 136830 # Simulator instruction rate (inst/s)
host_mem_usage 244640 # Number of bytes of host memory used
host_seconds 11174.38 # Real time elapsed on the host
host_tick_rate 62508267 # Simulator tick rate (ticks/s)
host_inst_rate 139548 # Simulator instruction rate (inst/s)
host_mem_usage 244652 # Number of bytes of host memory used
host_seconds 10956.69 # Real time elapsed on the host
host_tick_rate 63750196 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 1528988756 # Number of instructions simulated
sim_seconds 0.698491 # Number of seconds simulated
@ -217,9 +217,9 @@ system.cpu.iew.EXEC:rate 1.173655 # In
system.cpu.iew.EXEC:refs 571924541 # number of memory reference insts executed
system.cpu.iew.EXEC:stores 156120222 # Number of stores executed
system.cpu.iew.EXEC:swp 0 # number of swp insts executed
system.cpu.iew.WB:consumers 1636048139 # num instructions consuming a value
system.cpu.iew.WB:consumers 1557537154 # num instructions consuming a value
system.cpu.iew.WB:count 1628444279 # cumulative count of insts written-back
system.cpu.iew.WB:fanout 0.722963 # average fanout of values written-back
system.cpu.iew.WB:fanout 0.759406 # average fanout of values written-back
system.cpu.iew.WB:penalized 0 # number of instrctions required to write to 'other' IQ
system.cpu.iew.WB:penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ
system.cpu.iew.WB:producers 1182802327 # num instructions producing a value
@ -253,7 +253,7 @@ system.cpu.iew.lsq.thread.0.squashedStores 21387316 #
system.cpu.iew.memOrderViolationEvents 154646 # Number of memory order violations
system.cpu.iew.predictedNotTakenIncorrect 515713 # Number of branches that were predicted not taken incorrectly
system.cpu.iew.predictedTakenIncorrect 18238103 # Number of branches that were predicted taken incorrectly
system.cpu.int_regfile_reads 3040879637 # number of integer regfile reads
system.cpu.int_regfile_reads 2891828761 # number of integer regfile reads
system.cpu.int_regfile_writes 1524435086 # number of integer regfile writes
system.cpu.ipc 1.094494 # IPC: Instructions Per Cycle
system.cpu.ipc_total 1.094494 # IPC: Total IPC of All Threads
@ -360,7 +360,7 @@ system.cpu.iq.iqNonSpecInstsAdded 570 # Nu
system.cpu.iq.iqSquashedInstsExamined 250539717 # Number of squashed instructions iterated over during squash; mainly for profiling
system.cpu.iq.iqSquashedInstsIssued 30635 # Number of squashed instructions issued
system.cpu.iq.iqSquashedNonSpecRemoved 17 # Number of squashed non-spec instructions that were removed
system.cpu.iq.iqSquashedOperandsExamined 457117092 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.iq.iqSquashedOperandsExamined 443519402 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.l2cache.ReadExReq_accesses 789066 # number of ReadExReq accesses(hits+misses)
system.cpu.l2cache.ReadExReq_avg_miss_latency 34257.778038 # average ReadExReq miss latency
system.cpu.l2cache.ReadExReq_avg_mshr_miss_latency 31001.587520 # average ReadExReq mshr miss latency
@ -454,7 +454,7 @@ system.cpu.rename.RENAME:IQFullEvents 5884693 # Nu
system.cpu.rename.RENAME:IdleCycles 361176398 # Number of cycles rename is idle
system.cpu.rename.RENAME:LSQFullEvents 2156935 # Number of times rename has blocked due to LSQ full
system.cpu.rename.RENAME:ROBFullEvents 61 # Number of times rename has blocked due to ROB full
system.cpu.rename.RENAME:RenameLookups 4527342452 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenameLookups 4360508954 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenamedInsts 1840516856 # Number of instructions processed by rename
system.cpu.rename.RENAME:RenamedOperands 1743217369 # Number of destination operands rename has renamed
system.cpu.rename.RENAME:RunCycles 971079353 # Number of cycles rename is running
@ -462,7 +462,7 @@ system.cpu.rename.RENAME:SquashCycles 39316255 # Nu
system.cpu.rename.RENAME:UnblockCycles 11053475 # Number of cycles rename is unblocking
system.cpu.rename.RENAME:UndoneMaps 315918342 # Number of HB maps that are undone due to squashing
system.cpu.rename.RENAME:fp_rename_lookups 168 # Number of floating rename lookups
system.cpu.rename.RENAME:int_rename_lookups 4527342284 # Number of integer rename lookups
system.cpu.rename.RENAME:int_rename_lookups 4360508786 # Number of integer rename lookups
system.cpu.rename.RENAME:serializeStallCycles 6080 # count of cycles rename stalled for serializing inst
system.cpu.rename.RENAME:serializingInsts 557 # count of serializing insts renamed
system.cpu.rename.RENAME:skidInsts 18505861 # count of insts added to the skid buffer

View file

@ -61,7 +61,7 @@ type=ExeTracer
[system.cpu.workload]
type=LiveProcess
cmd=parser 2.1.dict -batch
cwd=build/X86_SE/tests/fast/long/20.parser/x86/linux/simple-atomic
cwd=build/X86_SE/tests/opt/long/20.parser/x86/linux/simple-atomic
egid=100
env=
errout=cerr

View file

@ -5,11 +5,11 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 11 2011 23:35:10
M5 revision c3deaa585dd3 7949 default qtip resforflagsstats.patch tip
M5 started Feb 11 2011 23:35:13
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/20.parser/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/fast/long/20.parser/x86/linux/simple-atomic
command line: build/X86_SE/m5.opt -d build/X86_SE/tests/opt/long/20.parser/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/opt/long/20.parser/x86/linux/simple-atomic
Global frequency set at 1000000000000 ticks per second
info: Entering event queue @ 0. Starting simulation...

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 2138348 # Simulator instruction rate (inst/s)
host_mem_usage 227776 # Number of bytes of host memory used
host_seconds 715.03 # Real time elapsed on the host
host_tick_rate 1238025751 # Simulator tick rate (ticks/s)
host_inst_rate 1866600 # Simulator instruction rate (inst/s)
host_mem_usage 231212 # Number of bytes of host memory used
host_seconds 819.13 # Real time elapsed on the host
host_tick_rate 1080693863 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 1528988757 # Number of instructions simulated
sim_seconds 0.885229 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 1528988757 # Number of instructions executed
system.cpu.num_int_alu_accesses 1528317615 # Number of integer alu accesses
system.cpu.num_int_insts 1528317615 # number of integer instructions
system.cpu.num_int_register_reads 3724500872 # number of times the integer registers were read
system.cpu.num_int_register_reads 3581460239 # number of times the integer registers were read
system.cpu.num_int_register_writes 1427299027 # number of times the integer registers were written
system.cpu.num_load_insts 384102160 # Number of load instructions
system.cpu.num_mem_refs 533262345 # number of memory refs

View file

@ -161,7 +161,7 @@ type=ExeTracer
[system.cpu.workload]
type=LiveProcess
cmd=parser 2.1.dict -batch
cwd=build/X86_SE/tests/fast/long/20.parser/x86/linux/simple-timing
cwd=build/X86_SE/tests/opt/long/20.parser/x86/linux/simple-timing
egid=100
env=
errout=cerr

View file

@ -5,11 +5,11 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 11 2011 23:35:10
M5 revision c3deaa585dd3 7949 default qtip resforflagsstats.patch tip
M5 started Feb 11 2011 23:35:13
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/20.parser/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/fast/long/20.parser/x86/linux/simple-timing
command line: build/X86_SE/m5.opt -d build/X86_SE/tests/opt/long/20.parser/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/opt/long/20.parser/x86/linux/simple-timing
Global frequency set at 1000000000000 ticks per second
info: Entering event queue @ 0. Starting simulation...

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1467057 # Simulator instruction rate (inst/s)
host_mem_usage 235504 # Number of bytes of host memory used
host_seconds 1042.22 # Real time elapsed on the host
host_tick_rate 1591542347 # Simulator tick rate (ticks/s)
host_inst_rate 1188316 # Simulator instruction rate (inst/s)
host_mem_usage 238940 # Number of bytes of host memory used
host_seconds 1286.69 # Real time elapsed on the host
host_tick_rate 1289149200 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 1528988757 # Number of instructions simulated
sim_seconds 1.658730 # Number of seconds simulated
@ -213,7 +213,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 1528988757 # Number of instructions executed
system.cpu.num_int_alu_accesses 1528317615 # Number of integer alu accesses
system.cpu.num_int_insts 1528317615 # number of integer instructions
system.cpu.num_int_register_reads 3724500872 # number of times the integer registers were read
system.cpu.num_int_register_reads 3581460239 # number of times the integer registers were read
system.cpu.num_int_register_writes 1427299027 # number of times the integer registers were written
system.cpu.num_load_insts 384102160 # Number of load instructions
system.cpu.num_mem_refs 533262345 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/60.bzip2/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/fast/long/60.bzip2/x86/linux/simple-atomic
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 2678815 # Simulator instruction rate (inst/s)
host_mem_usage 223852 # Number of bytes of host memory used
host_seconds 1749.60 # Real time elapsed on the host
host_tick_rate 1626658976 # Simulator tick rate (ticks/s)
host_inst_rate 2540540 # Simulator instruction rate (inst/s)
host_mem_usage 223860 # Number of bytes of host memory used
host_seconds 1844.83 # Real time elapsed on the host
host_tick_rate 1542694185 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 4686862651 # Number of instructions simulated
sim_seconds 2.846007 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 4686862651 # Number of instructions executed
system.cpu.num_int_alu_accesses 4686862580 # Number of integer alu accesses
system.cpu.num_int_insts 4686862580 # number of integer instructions
system.cpu.num_int_register_reads 12056454713 # number of times the integer registers were read
system.cpu.num_int_register_reads 11558008181 # number of times the integer registers were read
system.cpu.num_int_register_writes 4679057393 # number of times the integer registers were written
system.cpu.num_load_insts 1239184749 # Number of load instructions
system.cpu.num_mem_refs 1677713086 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:51
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/60.bzip2/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/fast/long/60.bzip2/x86/linux/simple-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1551749 # Simulator instruction rate (inst/s)
host_mem_usage 231572 # Number of bytes of host memory used
host_seconds 3020.38 # Real time elapsed on the host
host_tick_rate 1961196022 # Simulator tick rate (ticks/s)
host_inst_rate 1546064 # Simulator instruction rate (inst/s)
host_mem_usage 231584 # Number of bytes of host memory used
host_seconds 3031.48 # Real time elapsed on the host
host_tick_rate 1954011316 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 4686862651 # Number of instructions simulated
sim_seconds 5.923548 # Number of seconds simulated
@ -213,7 +213,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 4686862651 # Number of instructions executed
system.cpu.num_int_alu_accesses 4686862580 # Number of integer alu accesses
system.cpu.num_int_insts 4686862580 # number of integer instructions
system.cpu.num_int_register_reads 12056454713 # number of times the integer registers were read
system.cpu.num_int_register_reads 11558008181 # number of times the integer registers were read
system.cpu.num_int_register_writes 4679057393 # number of times the integer registers were written
system.cpu.num_load_insts 1239184749 # Number of load instructions
system.cpu.num_mem_refs 1677713086 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/70.twolf/x86/linux/o3-timing -re tests/run.py build/X86_SE/tests/fast/long/70.twolf/x86/linux/o3-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 194147 # Simulator instruction rate (inst/s)
host_mem_usage 240836 # Number of bytes of host memory used
host_seconds 1140.18 # Real time elapsed on the host
host_tick_rate 100023677 # Simulator tick rate (ticks/s)
host_inst_rate 187440 # Simulator instruction rate (inst/s)
host_mem_usage 240848 # Number of bytes of host memory used
host_seconds 1180.98 # Real time elapsed on the host
host_tick_rate 96568147 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 221363017 # Number of instructions simulated
sim_seconds 0.114045 # Number of seconds simulated
@ -218,9 +218,9 @@ system.cpu.iew.EXEC:rate 1.062789 # In
system.cpu.iew.EXEC:refs 86183722 # number of memory reference insts executed
system.cpu.iew.EXEC:stores 21962366 # Number of stores executed
system.cpu.iew.EXEC:swp 0 # number of swp insts executed
system.cpu.iew.WB:consumers 309612264 # num instructions consuming a value
system.cpu.iew.WB:consumers 296340219 # num instructions consuming a value
system.cpu.iew.WB:count 239588905 # cumulative count of insts written-back
system.cpu.iew.WB:fanout 0.616985 # average fanout of values written-back
system.cpu.iew.WB:fanout 0.644617 # average fanout of values written-back
system.cpu.iew.WB:penalized 0 # number of instrctions required to write to 'other' IQ
system.cpu.iew.WB:penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ
system.cpu.iew.WB:producers 191026075 # num instructions producing a value
@ -254,7 +254,7 @@ system.cpu.iew.lsq.thread.0.squashedStores 3622207 #
system.cpu.iew.memOrderViolationEvents 128891 # Number of memory order violations
system.cpu.iew.predictedNotTakenIncorrect 152659 # Number of branches that were predicted not taken incorrectly
system.cpu.iew.predictedTakenIncorrect 3506423 # Number of branches that were predicted taken incorrectly
system.cpu.int_regfile_reads 508933345 # number of integer regfile reads
system.cpu.int_regfile_reads 488710459 # number of integer regfile reads
system.cpu.int_regfile_writes 250225793 # number of integer regfile writes
system.cpu.ipc 0.970506 # IPC: Instructions Per Cycle
system.cpu.ipc_total 0.970506 # IPC: Total IPC of All Threads
@ -361,7 +361,7 @@ system.cpu.iq.iqNonSpecInstsAdded 1273 # Nu
system.cpu.iq.iqSquashedInstsExamined 47650161 # Number of squashed instructions iterated over during squash; mainly for profiling
system.cpu.iq.iqSquashedInstsIssued 258 # Number of squashed instructions issued
system.cpu.iq.iqSquashedNonSpecRemoved 27 # Number of squashed non-spec instructions that were removed
system.cpu.iq.iqSquashedOperandsExamined 93569764 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.iq.iqSquashedOperandsExamined 91534276 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.l2cache.ReadExReq_accesses 1576 # number of ReadExReq accesses(hits+misses)
system.cpu.l2cache.ReadExReq_avg_miss_latency 34382.484076 # average ReadExReq miss latency
system.cpu.l2cache.ReadExReq_avg_mshr_miss_latency 31064.649682 # average ReadExReq mshr miss latency
@ -445,7 +445,7 @@ system.cpu.rename.RENAME:CommittedMaps 234363409 # Nu
system.cpu.rename.RENAME:IQFullEvents 638720 # Number of times rename has blocked due to IQ full
system.cpu.rename.RENAME:IdleCycles 52054674 # Number of cycles rename is idle
system.cpu.rename.RENAME:LSQFullEvents 682190 # Number of times rename has blocked due to LSQ full
system.cpu.rename.RENAME:RenameLookups 755867290 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenameLookups 732163494 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenamedInsts 280433210 # Number of instructions processed by rename
system.cpu.rename.RENAME:RenamedOperands 305502440 # Number of destination operands rename has renamed
system.cpu.rename.RENAME:RunCycles 166205742 # Number of cycles rename is running
@ -453,7 +453,7 @@ system.cpu.rename.RENAME:SquashCycles 7787199 # Nu
system.cpu.rename.RENAME:UnblockCycles 1869216 # Number of cycles rename is unblocking
system.cpu.rename.RENAME:UndoneMaps 71139031 # Number of HB maps that are undone due to squashing
system.cpu.rename.RENAME:fp_rename_lookups 7184355 # Number of floating rename lookups
system.cpu.rename.RENAME:int_rename_lookups 748682935 # Number of integer rename lookups
system.cpu.rename.RENAME:int_rename_lookups 724979139 # Number of integer rename lookups
system.cpu.rename.RENAME:serializeStallCycles 15879 # count of cycles rename stalled for serializing inst
system.cpu.rename.RENAME:serializingInsts 1273 # count of serializing insts renamed
system.cpu.rename.RENAME:skidInsts 3670415 # count of insts added to the skid buffer

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:51
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/70.twolf/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/fast/long/70.twolf/x86/linux/simple-atomic
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 1450024 # Simulator instruction rate (inst/s)
host_mem_usage 231316 # Number of bytes of host memory used
host_seconds 152.66 # Real time elapsed on the host
host_tick_rate 860680554 # Simulator tick rate (ticks/s)
host_inst_rate 1396551 # Simulator instruction rate (inst/s)
host_mem_usage 231332 # Number of bytes of host memory used
host_seconds 158.51 # Real time elapsed on the host
host_tick_rate 828940820 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 221363018 # Number of instructions simulated
sim_seconds 0.131393 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 221363018 # Number of instructions executed
system.cpu.num_int_alu_accesses 220339607 # Number of integer alu accesses
system.cpu.num_int_insts 220339607 # number of integer instructions
system.cpu.num_int_register_reads 587077446 # number of times the integer registers were read
system.cpu.num_int_register_reads 567557364 # number of times the integer registers were read
system.cpu.num_int_register_writes 232532006 # number of times the integer registers were written
system.cpu.num_load_insts 56649590 # Number of load instructions
system.cpu.num_mem_refs 77165306 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/long/70.twolf/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/fast/long/70.twolf/x86/linux/simple-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 935342 # Simulator instruction rate (inst/s)
host_mem_usage 239036 # Number of bytes of host memory used
host_seconds 236.67 # Real time elapsed on the host
host_tick_rate 1060402082 # Simulator tick rate (ticks/s)
host_inst_rate 920852 # Simulator instruction rate (inst/s)
host_mem_usage 239052 # Number of bytes of host memory used
host_seconds 240.39 # Real time elapsed on the host
host_tick_rate 1043974445 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 221363018 # Number of instructions simulated
sim_seconds 0.250961 # Number of seconds simulated
@ -213,7 +213,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 221363018 # Number of instructions executed
system.cpu.num_int_alu_accesses 220339607 # Number of integer alu accesses
system.cpu.num_int_insts 220339607 # number of integer instructions
system.cpu.num_int_register_reads 587077446 # number of times the integer registers were read
system.cpu.num_int_register_reads 567557364 # number of times the integer registers were read
system.cpu.num_int_register_writes 232532006 # number of times the integer registers were written
system.cpu.num_load_insts 56649590 # Number of load instructions
system.cpu.num_mem_refs 77165306 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/quick/00.hello/x86/linux/o3-timing -re tests/run.py build/X86_SE/tests/fast/quick/00.hello/x86/linux/o3-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 74664 # Simulator instruction rate (inst/s)
host_mem_usage 228156 # Number of bytes of host memory used
host_seconds 0.13 # Real time elapsed on the host
host_tick_rate 103594447 # Simulator tick rate (ticks/s)
host_inst_rate 59245 # Simulator instruction rate (inst/s)
host_mem_usage 228168 # Number of bytes of host memory used
host_seconds 0.17 # Real time elapsed on the host
host_tick_rate 82238527 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 9809 # Number of instructions simulated
sim_seconds 0.000014 # Number of seconds simulated
@ -217,9 +217,9 @@ system.cpu.iew.EXEC:rate 0.445373 # In
system.cpu.iew.EXEC:refs 2437 # number of memory reference insts executed
system.cpu.iew.EXEC:stores 1088 # Number of stores executed
system.cpu.iew.EXEC:swp 0 # number of swp insts executed
system.cpu.iew.WB:consumers 9392 # num instructions consuming a value
system.cpu.iew.WB:consumers 9192 # num instructions consuming a value
system.cpu.iew.WB:count 11991 # cumulative count of insts written-back
system.cpu.iew.WB:fanout 0.786095 # average fanout of values written-back
system.cpu.iew.WB:fanout 0.803198 # average fanout of values written-back
system.cpu.iew.WB:penalized 0 # number of instrctions required to write to 'other' IQ
system.cpu.iew.WB:penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ
system.cpu.iew.WB:producers 7383 # num instructions producing a value
@ -253,7 +253,7 @@ system.cpu.iew.lsq.thread.0.squashedStores 296 #
system.cpu.iew.memOrderViolationEvents 10 # Number of memory order violations
system.cpu.iew.predictedNotTakenIncorrect 385 # Number of branches that were predicted not taken incorrectly
system.cpu.iew.predictedTakenIncorrect 89 # Number of branches that were predicted taken incorrectly
system.cpu.int_regfile_reads 21267 # number of integer regfile reads
system.cpu.int_regfile_reads 19557 # number of integer regfile reads
system.cpu.int_regfile_writes 11326 # number of integer regfile writes
system.cpu.ipc 0.359620 # IPC: Instructions Per Cycle
system.cpu.ipc_total 0.359620 # IPC: Total IPC of All Threads
@ -360,7 +360,7 @@ system.cpu.iq.iqNonSpecInstsAdded 16 # Nu
system.cpu.iq.iqSquashedInstsExamined 3282 # Number of squashed instructions iterated over during squash; mainly for profiling
system.cpu.iq.iqSquashedInstsIssued 1 # Number of squashed instructions issued
system.cpu.iq.iqSquashedNonSpecRemoved 3 # Number of squashed non-spec instructions that were removed
system.cpu.iq.iqSquashedOperandsExamined 4201 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.iq.iqSquashedOperandsExamined 3903 # Number of squashed operands that are examined and possibly removed from graph
system.cpu.l2cache.ReadExReq_accesses 78 # number of ReadExReq accesses(hits+misses)
system.cpu.l2cache.ReadExReq_avg_miss_latency 34512.820513 # average ReadExReq miss latency
system.cpu.l2cache.ReadExReq_avg_mshr_miss_latency 31358.974359 # average ReadExReq mshr miss latency
@ -438,7 +438,7 @@ system.cpu.rename.RENAME:CommittedMaps 9368 # Nu
system.cpu.rename.RENAME:IQFullEvents 6 # Number of times rename has blocked due to IQ full
system.cpu.rename.RENAME:IdleCycles 6548 # Number of cycles rename is idle
system.cpu.rename.RENAME:LSQFullEvents 15 # Number of times rename has blocked due to LSQ full
system.cpu.rename.RENAME:RenameLookups 33593 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenameLookups 31415 # Number of register rename lookups that rename has made
system.cpu.rename.RENAME:RenamedInsts 14729 # Number of instructions processed by rename
system.cpu.rename.RENAME:RenamedOperands 13866 # Number of destination operands rename has renamed
system.cpu.rename.RENAME:RunCycles 8021 # Number of cycles rename is running
@ -446,7 +446,7 @@ system.cpu.rename.RENAME:SquashCycles 701 # Nu
system.cpu.rename.RENAME:UnblockCycles 105 # Number of cycles rename is unblocking
system.cpu.rename.RENAME:UndoneMaps 4498 # Number of HB maps that are undone due to squashing
system.cpu.rename.RENAME:fp_rename_lookups 16 # Number of floating rename lookups
system.cpu.rename.RENAME:int_rename_lookups 33577 # Number of integer rename lookups
system.cpu.rename.RENAME:int_rename_lookups 31399 # Number of integer rename lookups
system.cpu.rename.RENAME:serializeStallCycles 257 # count of cycles rename stalled for serializing inst
system.cpu.rename.RENAME:serializingInsts 19 # count of serializing insts renamed
system.cpu.rename.RENAME:skidInsts 159 # count of insts added to the skid buffer

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/quick/00.hello/x86/linux/simple-atomic -re tests/run.py build/X86_SE/tests/fast/quick/00.hello/x86/linux/simple-atomic
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 164320 # Simulator instruction rate (inst/s)
host_mem_usage 219604 # Number of bytes of host memory used
host_seconds 0.06 # Real time elapsed on the host
host_tick_rate 94262580 # Simulator tick rate (ticks/s)
host_inst_rate 992012 # Simulator instruction rate (inst/s)
host_mem_usage 219616 # Number of bytes of host memory used
host_seconds 0.01 # Real time elapsed on the host
host_tick_rate 556721453 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 9810 # Number of instructions simulated
sim_seconds 0.000006 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 9810 # Number of instructions executed
system.cpu.num_int_alu_accesses 9715 # Number of integer alu accesses
system.cpu.num_int_insts 9715 # number of integer instructions
system.cpu.num_int_register_reads 22822 # number of times the integer registers were read
system.cpu.num_int_register_reads 21313 # number of times the integer registers were read
system.cpu.num_int_register_writes 9368 # number of times the integer registers were written
system.cpu.num_load_insts 1056 # Number of load instructions
system.cpu.num_mem_refs 1990 # number of memory refs

View file

@ -34,7 +34,7 @@ periodic_stats_period: 1000000
================ End RubySystem Configuration Print ================
Real time: Feb/07/2011 20:06:52
Real time: Feb/08/2011 00:58:34
Profiler Stats
--------------
@ -43,18 +43,18 @@ Elapsed_time_in_minutes: 0
Elapsed_time_in_hours: 0
Elapsed_time_in_days: 0
Virtual_time_in_seconds: 0.32
Virtual_time_in_minutes: 0.00533333
Virtual_time_in_hours: 8.88889e-05
Virtual_time_in_days: 3.7037e-06
Virtual_time_in_seconds: 0.26
Virtual_time_in_minutes: 0.00433333
Virtual_time_in_hours: 7.22222e-05
Virtual_time_in_days: 3.00926e-06
Ruby_current_time: 276484
Ruby_start_time: 0
Ruby_cycles: 276484
mbytes_resident: 38.6328
mbytes_total: 231.969
resident_ratio: 0.16656
mbytes_resident: 38.6797
mbytes_total: 231.98
resident_ratio: 0.166754
ruby_cycles_executed: [ 276485 ]
@ -125,7 +125,7 @@ Resource Usage
page_size: 4096
user_time: 0
system_time: 0
page_reclaims: 10987
page_reclaims: 11003
page_faults: 0
swaps: 0
block_inputs: 0

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:51
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/quick/00.hello/x86/linux/simple-timing-ruby -re tests/run.py build/X86_SE/tests/fast/quick/00.hello/x86/linux/simple-timing-ruby
Global frequency set at 1000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 41724 # Simulator instruction rate (inst/s)
host_mem_usage 237540 # Number of bytes of host memory used
host_seconds 0.24 # Real time elapsed on the host
host_tick_rate 1174763 # Simulator tick rate (ticks/s)
host_inst_rate 81703 # Simulator instruction rate (inst/s)
host_mem_usage 237552 # Number of bytes of host memory used
host_seconds 0.12 # Real time elapsed on the host
host_tick_rate 2292859 # Simulator tick rate (ticks/s)
sim_freq 1000000000 # Frequency of simulated ticks
sim_insts 9810 # Number of instructions simulated
sim_seconds 0.000276 # Number of seconds simulated
@ -24,7 +24,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 9810 # Number of instructions executed
system.cpu.num_int_alu_accesses 9715 # Number of integer alu accesses
system.cpu.num_int_insts 9715 # number of integer instructions
system.cpu.num_int_register_reads 22822 # number of times the integer registers were read
system.cpu.num_int_register_reads 21313 # number of times the integer registers were read
system.cpu.num_int_register_writes 9368 # number of times the integer registers were written
system.cpu.num_load_insts 1056 # Number of load instructions
system.cpu.num_mem_refs 1990 # number of memory refs

View file

@ -5,9 +5,9 @@ The Regents of The University of Michigan
All Rights Reserved
M5 compiled Feb 7 2011 20:06:49
M5 revision 698a266e9195 7937 default qtip regwidthdecstats.patch tip
M5 started Feb 7 2011 20:06:52
M5 compiled Feb 8 2011 00:58:32
M5 revision 705a4d351a43 7939 default qtip resforflagsstats.patch tip
M5 started Feb 8 2011 00:58:34
M5 executing on burrito
command line: build/X86_SE/m5.fast -d build/X86_SE/tests/fast/quick/00.hello/x86/linux/simple-timing -re tests/run.py build/X86_SE/tests/fast/quick/00.hello/x86/linux/simple-timing
Global frequency set at 1000000000000 ticks per second

View file

@ -1,9 +1,9 @@
---------- Begin Simulation Statistics ----------
host_inst_rate 498409 # Simulator instruction rate (inst/s)
host_mem_usage 227324 # Number of bytes of host memory used
host_inst_rate 525864 # Simulator instruction rate (inst/s)
host_mem_usage 227336 # Number of bytes of host memory used
host_seconds 0.02 # Real time elapsed on the host
host_tick_rate 1439810006 # Simulator tick rate (ticks/s)
host_tick_rate 1518719132 # Simulator tick rate (ticks/s)
sim_freq 1000000000000 # Frequency of simulated ticks
sim_insts 9810 # Number of instructions simulated
sim_seconds 0.000029 # Number of seconds simulated
@ -208,7 +208,7 @@ system.cpu.num_idle_cycles 0 # Nu
system.cpu.num_insts 9810 # Number of instructions executed
system.cpu.num_int_alu_accesses 9715 # Number of integer alu accesses
system.cpu.num_int_insts 9715 # number of integer instructions
system.cpu.num_int_register_reads 22822 # number of times the integer registers were read
system.cpu.num_int_register_reads 21313 # number of times the integer registers were read
system.cpu.num_int_register_writes 9368 # number of times the integer registers were written
system.cpu.num_load_insts 1056 # Number of load instructions
system.cpu.num_mem_refs 1990 # number of memory refs