From 5fb00e1df6b2b7d9db472d0c25765263ed1b839f Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Mon, 7 Jan 2013 13:05:52 -0500 Subject: [PATCH] tests: Add CPU switching tests This changeset adds a set of tests that stress the CPU switching code. It adds the following test configurations: * tsunami-switcheroo-full -- Alpha system (atomic, timing, O3) * realview-switcheroo-atomic -- ARM system (atomic<->atomic) * realview-switcheroo-timing -- ARM system (timing<->timing) * realview-switcheroo-o3 -- ARM system (O3<->O3) * realview-switcheroo-full -- ARM system (atomic, timing, O3) Reference data is provided for the 10.linux-boot test case. All of the tests trigger a CPU switch once per millisecond during the boot process. The in-order CPU model was not included in any of the tests as it does not support CPU handover. --- tests/SConscript | 9 +- tests/configs/alpha_generic.py | 7 + tests/configs/arm_generic.py | 8 + tests/configs/base_config.py | 24 +- tests/configs/realview-switcheroo-atomic.py | 48 + tests/configs/realview-switcheroo-full.py | 48 + tests/configs/realview-switcheroo-o3.py | 48 + tests/configs/realview-switcheroo-timing.py | 48 + tests/configs/switcheroo.py | 138 + tests/configs/tsunami-switcheroo-full.py | 48 + .../linux/tsunami-switcheroo-full/config.ini | 1265 ++ .../linux/tsunami-switcheroo-full/simerr | 9 + .../linux/tsunami-switcheroo-full/simout | 6245 +++++++++ .../linux/tsunami-switcheroo-full/stats.txt | 1554 +++ .../tsunami-switcheroo-full/system.terminal | 108 + .../linux/realview-switcheroo-full/config.ini | 1204 ++ .../arm/linux/realview-switcheroo-full/simerr | 28 + .../arm/linux/realview-switcheroo-full/simout | 4106 ++++++ .../linux/realview-switcheroo-full/stats.txt | 1572 +++ .../realview-switcheroo-full/system.terminal | Bin 0 -> 5878 bytes .../linux/realview-switcheroo-o3/config.ini | 1457 +++ .../arm/linux/realview-switcheroo-o3/simerr | 18 + .../arm/linux/realview-switcheroo-o3/simout | 2620 ++++ .../linux/realview-switcheroo-o3/stats.txt | 1684 +++ .../realview-switcheroo-o3/system.terminal | Bin 0 -> 5878 bytes .../realview-switcheroo-timing/config.ini | 795 ++ .../linux/realview-switcheroo-timing/simerr | 40 + .../linux/realview-switcheroo-timing/simout | 10763 ++++++++++++++++ .../realview-switcheroo-timing/stats.txt | 1067 ++ .../system.terminal | Bin 0 -> 5878 bytes .../realview-switcheroo-atomic/config.ini | 803 ++ .../linux/realview-switcheroo-atomic/simerr | 22 + .../linux/realview-switcheroo-atomic/simout | 9344 ++++++++++++++ .../realview-switcheroo-atomic/stats.txt | 689 + .../system.terminal | Bin 0 -> 5878 bytes tests/run.py | 18 +- 36 files changed, 45824 insertions(+), 13 deletions(-) create mode 100644 tests/configs/realview-switcheroo-atomic.py create mode 100644 tests/configs/realview-switcheroo-full.py create mode 100644 tests/configs/realview-switcheroo-o3.py create mode 100644 tests/configs/realview-switcheroo-timing.py create mode 100644 tests/configs/switcheroo.py create mode 100644 tests/configs/tsunami-switcheroo-full.py create mode 100644 tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/config.ini create mode 100755 tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simerr create mode 100755 tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simout create mode 100644 tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/stats.txt create mode 100644 tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/system.terminal create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/config.ini create mode 100755 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simerr create mode 100755 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simout create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/stats.txt create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/system.terminal create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/config.ini create mode 100755 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/simerr create mode 100755 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/simout create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/stats.txt create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/system.terminal create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/config.ini create mode 100755 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/simerr create mode 100755 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/simout create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/stats.txt create mode 100644 tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/system.terminal create mode 100644 tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/config.ini create mode 100755 tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simerr create mode 100755 tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simout create mode 100644 tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/stats.txt create mode 100644 tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/system.terminal diff --git a/tests/SConscript b/tests/SConscript index ea65dad8f..2faa3216c 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -301,7 +301,8 @@ if env['TARGET_ISA'] == 'alpha': 'tsunami-simple-timing-dual', 'twosys-tsunami-simple-atomic', 'tsunami-o3', 'tsunami-o3-dual', - 'tsunami-inorder'] + 'tsunami-inorder', + 'tsunami-switcheroo-full'] if env['TARGET_ISA'] == 'sparc': configs += ['t1000-simple-atomic', 't1000-simple-timing'] @@ -314,7 +315,11 @@ if env['TARGET_ISA'] == 'arm': 'realview-simple-timing-dual', 'realview-o3', 'realview-o3-checker', - 'realview-o3-dual'] + 'realview-o3-dual', + 'realview-switcheroo-atomic', + 'realview-switcheroo-timing', + 'realview-switcheroo-o3', + 'realview-switcheroo-full'] if env['TARGET_ISA'] == 'x86': configs += ['pc-simple-atomic', 'pc-simple-timing', diff --git a/tests/configs/alpha_generic.py b/tests/configs/alpha_generic.py index 429f4faba..a4ebba54d 100644 --- a/tests/configs/alpha_generic.py +++ b/tests/configs/alpha_generic.py @@ -91,3 +91,10 @@ class LinuxAlphaFSSystemUniprocessor(LinuxAlphaSystemBuilder, def __init__(self, **kwargs): BaseFSSystemUniprocessor.__init__(self, **kwargs) LinuxAlphaSystemBuilder.__init__(self) + +class LinuxAlphaFSSwitcheroo(LinuxAlphaSystemBuilder, BaseFSSwitcheroo): + """Uniprocessor Alpha system prepared for CPU switching""" + + def __init__(self, **kwargs): + BaseFSSwitcheroo.__init__(self, **kwargs) + LinuxAlphaSystemBuilder.__init__(self) diff --git a/tests/configs/arm_generic.py b/tests/configs/arm_generic.py index 07251f2d6..95f9b8bd1 100644 --- a/tests/configs/arm_generic.py +++ b/tests/configs/arm_generic.py @@ -93,3 +93,11 @@ class LinuxArmFSSystemUniprocessor(LinuxArmSystemBuilder, def __init__(self, machine_type='RealView_PBX', **kwargs): BaseFSSystemUniprocessor.__init__(self, **kwargs) LinuxArmSystemBuilder.__init__(self, machine_type) + + +class LinuxArmFSSwitcheroo(LinuxArmSystemBuilder, BaseFSSwitcheroo): + """Uniprocessor ARM system prepared for CPU switching""" + + def __init__(self, machine_type='RealView_PBX', **kwargs): + BaseFSSwitcheroo.__init__(self, **kwargs) + LinuxArmSystemBuilder.__init__(self, machine_type) diff --git a/tests/configs/base_config.py b/tests/configs/base_config.py index 945bcb495..370b76c46 100644 --- a/tests/configs/base_config.py +++ b/tests/configs/base_config.py @@ -121,10 +121,13 @@ class BaseSystem(object): sha_bus = self.create_caches_shared(system) for cpu in system.cpu: - self.create_caches_private(cpu) - self.init_cpu(system, cpu) - cpu.connectAllPorts(sha_bus if sha_bus != None else system.membus, - system.membus) + if not cpu.switched_out: + self.create_caches_private(cpu) + self.init_cpu(system, cpu) + cpu.connectAllPorts(sha_bus if sha_bus != None else system.membus, + system.membus) + else: + self.init_cpu(system, cpu) @abstractmethod def create_system(self): @@ -173,3 +176,16 @@ class BaseFSSystemUniprocessor(BaseFSSystem): def create_caches_shared(self, system): return None + +class BaseFSSwitcheroo(BaseFSSystem): + """Uniprocessor system prepared for CPU switching""" + + def __init__(self, cpu_classes, **kwargs): + BaseFSSystem.__init__(self, **kwargs) + self.cpu_classes = tuple(cpu_classes) + + def create_cpus(self): + cpus = [ cclass(cpu_id=0, clock='2GHz', switched_out=True) + for cclass in self.cpu_classes ] + cpus[0].switched_out = False + return cpus diff --git a/tests/configs/realview-switcheroo-atomic.py b/tests/configs/realview-switcheroo-atomic.py new file mode 100644 index 000000000..880162527 --- /dev/null +++ b/tests/configs/realview-switcheroo-atomic.py @@ -0,0 +1,48 @@ +# Copyright (c) 2012 ARM Limited +# All rights reserved. +# +# The license below extends only to copyright in the software and shall +# not be construed as granting a license to any other intellectual +# property including but not limited to intellectual property relating +# to a hardware implementation of the functionality of the software +# licensed hereunder. You may use the software subject to the license +# terms below provided that you ensure that this notice is replicated +# unmodified and in its entirety in all distributions of the software, +# modified or unmodified, in source code or in binary form. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer; +# redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution; +# neither the name of the copyright holders nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Authors: Andreas Sandberg + +from m5.objects import * +from arm_generic import * +import switcheroo + +root = LinuxArmFSSwitcheroo( + cpu_classes=(AtomicSimpleCPU, AtomicSimpleCPU) + ).create_root() + +# Setup a custom test method that uses the switcheroo tester that +# switches between CPU models. +run_test = switcheroo.run_test diff --git a/tests/configs/realview-switcheroo-full.py b/tests/configs/realview-switcheroo-full.py new file mode 100644 index 000000000..091357114 --- /dev/null +++ b/tests/configs/realview-switcheroo-full.py @@ -0,0 +1,48 @@ +# Copyright (c) 2012 ARM Limited +# All rights reserved. +# +# The license below extends only to copyright in the software and shall +# not be construed as granting a license to any other intellectual +# property including but not limited to intellectual property relating +# to a hardware implementation of the functionality of the software +# licensed hereunder. You may use the software subject to the license +# terms below provided that you ensure that this notice is replicated +# unmodified and in its entirety in all distributions of the software, +# modified or unmodified, in source code or in binary form. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer; +# redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution; +# neither the name of the copyright holders nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Authors: Andreas Sandberg + +from m5.objects import * +from arm_generic import * +import switcheroo + +root = LinuxArmFSSwitcheroo( + cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU) + ).create_root() + +# Setup a custom test method that uses the switcheroo tester that +# switches between CPU models. +run_test = switcheroo.run_test diff --git a/tests/configs/realview-switcheroo-o3.py b/tests/configs/realview-switcheroo-o3.py new file mode 100644 index 000000000..6079402e2 --- /dev/null +++ b/tests/configs/realview-switcheroo-o3.py @@ -0,0 +1,48 @@ +# Copyright (c) 2012 ARM Limited +# All rights reserved. +# +# The license below extends only to copyright in the software and shall +# not be construed as granting a license to any other intellectual +# property including but not limited to intellectual property relating +# to a hardware implementation of the functionality of the software +# licensed hereunder. You may use the software subject to the license +# terms below provided that you ensure that this notice is replicated +# unmodified and in its entirety in all distributions of the software, +# modified or unmodified, in source code or in binary form. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer; +# redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution; +# neither the name of the copyright holders nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Authors: Andreas Sandberg + +from m5.objects import * +from arm_generic import * +import switcheroo + +root = LinuxArmFSSwitcheroo( + cpu_classes=(DerivO3CPU, DerivO3CPU) + ).create_root() + +# Setup a custom test method that uses the switcheroo tester that +# switches between CPU models. +run_test = switcheroo.run_test diff --git a/tests/configs/realview-switcheroo-timing.py b/tests/configs/realview-switcheroo-timing.py new file mode 100644 index 000000000..2329de6b0 --- /dev/null +++ b/tests/configs/realview-switcheroo-timing.py @@ -0,0 +1,48 @@ +# Copyright (c) 2012 ARM Limited +# All rights reserved. +# +# The license below extends only to copyright in the software and shall +# not be construed as granting a license to any other intellectual +# property including but not limited to intellectual property relating +# to a hardware implementation of the functionality of the software +# licensed hereunder. You may use the software subject to the license +# terms below provided that you ensure that this notice is replicated +# unmodified and in its entirety in all distributions of the software, +# modified or unmodified, in source code or in binary form. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer; +# redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution; +# neither the name of the copyright holders nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Authors: Andreas Sandberg + +from m5.objects import * +from arm_generic import * +import switcheroo + +root = LinuxArmFSSwitcheroo( + cpu_classes=(TimingSimpleCPU, TimingSimpleCPU) + ).create_root() + +# Setup a custom test method that uses the switcheroo tester that +# switches between CPU models. +run_test = switcheroo.run_test diff --git a/tests/configs/switcheroo.py b/tests/configs/switcheroo.py new file mode 100644 index 000000000..dadf8db03 --- /dev/null +++ b/tests/configs/switcheroo.py @@ -0,0 +1,138 @@ +# Copyright (c) 2012 ARM Limited +# All rights reserved. +# +# The license below extends only to copyright in the software and shall +# not be construed as granting a license to any other intellectual +# property including but not limited to intellectual property relating +# to a hardware implementation of the functionality of the software +# licensed hereunder. You may use the software subject to the license +# terms below provided that you ensure that this notice is replicated +# unmodified and in its entirety in all distributions of the software, +# modified or unmodified, in source code or in binary form. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer; +# redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution; +# neither the name of the copyright holders nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Authors: Andreas Sandberg + +import m5 +from m5.objects import * +m5.util.addToPath('../configs/common') +from Caches import * + +def _memMode(cclass): + if cclass == AtomicSimpleCPU: + return "atomic", m5.objects.params.atomic + else: + return "timing", m5.objects.params.timing + +class Sequential: + """Sequential CPU switcher. + + The sequential CPU switches between all CPUs in a system in + order. The CPUs in the system must have been prepared for + switching, which in practice means that only one CPU is switched + in. base_config.BaseFSSwitcheroo can be used to create such a + system. + """ + def __init__(self, cpus): + self.first_cpu = None + for (cpuno, cpu) in enumerate(cpus): + if not cpu.switched_out: + if self.first_cpu != None: + fatal("More than one CPU is switched in"); + self.first_cpu = cpuno + + if self.first_cpu == None: + fatal("The system contains no switched in CPUs") + + self.cur_cpu = self.first_cpu + self.cpus = cpus + + def next(self): + self.cur_cpu = (self.cur_cpu + 1) % len(self.cpus) + return self.cpus[self.cur_cpu] + + def first(self): + return self.cpus[self.first_cpu] + +def run_test(root, switcher=None, freq=1000): + """Test runner for CPU switcheroo tests. + + The switcheroo test runner is used to switch CPUs in a system that + has been prepared for CPU switching. Such systems should have + multiple CPUs when they are instantiated, but only one should be + switched in. Such configurations can be created using the + base_config.BaseFSSwitcheroo class. + + A CPU switcher object is used to control switching. The default + switcher sequentially switches between all CPUs in a system, + starting with the CPU that is currently switched in. + + Unlike most other test runners, this one automatically configures + the memory mode of the system based on the first CPU the switcher + reports. + + Keyword Arguments: + switcher -- CPU switcher implementation. See Sequential for + an example implementation. + period -- Switching frequency in Hz. + """ + + if switcher == None: + switcher = Sequential(root.system.cpu) + + current_cpu = switcher.first() + system = root.system + system.mem_mode = _memMode(type(current_cpu))[0] + + # instantiate configuration + m5.instantiate() + + # Determine the switching period, this has to be done after + # instantiating the system since the time base must be fixed. + period = m5.ticks.fromSeconds(1.0 / freq) + while True: + exit_event = m5.simulate(period) + exit_cause = exit_event.getCause() + + if exit_cause == "simulate() limit reached": + next_cpu = switcher.next() + + print "Switching CPUs..." + print "Next CPU: %s" % type(next_cpu) + m5.drain(system) + system.setMemoryMode(_memMode(type(next_cpu))[1]) + if current_cpu != next_cpu: + m5.switchCpus([ (current_cpu, next_cpu) ]) + else: + print "Source CPU and destination CPU are the same, skipping..." + m5.resume(system) + current_cpu = next_cpu + elif exit_cause == "target called exit()" or \ + exit_cause == "m5_exit instruction encountered": + + sys.exit(0) + else: + print "Test failed: Unknown exit cause: %s" % exit_cause + sys.exit(1) diff --git a/tests/configs/tsunami-switcheroo-full.py b/tests/configs/tsunami-switcheroo-full.py new file mode 100644 index 000000000..d2be0ebfa --- /dev/null +++ b/tests/configs/tsunami-switcheroo-full.py @@ -0,0 +1,48 @@ +# Copyright (c) 2012 ARM Limited +# All rights reserved. +# +# The license below extends only to copyright in the software and shall +# not be construed as granting a license to any other intellectual +# property including but not limited to intellectual property relating +# to a hardware implementation of the functionality of the software +# licensed hereunder. You may use the software subject to the license +# terms below provided that you ensure that this notice is replicated +# unmodified and in its entirety in all distributions of the software, +# modified or unmodified, in source code or in binary form. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer; +# redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution; +# neither the name of the copyright holders nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# Authors: Andreas Sandberg + +from m5.objects import * +from alpha_generic import * +import switcheroo + +root = LinuxAlphaFSSwitcheroo( + cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU) + ).create_root() + +# Setup a custom test method that uses the switcheroo tester that +# switches between CPU models. +run_test = switcheroo.run_test diff --git a/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/config.ini b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/config.ini new file mode 100644 index 000000000..3b827b59e --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/config.ini @@ -0,0 +1,1265 @@ +[root] +type=Root +children=system +full_system=true +time_sync_enable=false +time_sync_period=100000000000 +time_sync_spin_threshold=100000000 + +[system] +type=LinuxAlphaSystem +children=bridge cpu0 cpu1 cpu2 disk0 disk2 intrctrl iobus iocache l2c membus physmem simple_disk terminal toL2Bus tsunami +boot_cpu_frequency=500 +boot_osflags=root=/dev/hda1 console=ttyS0 +clock=1000 +console=/arm/scratch/sysexplr/dist/binaries/console +init_param=0 +kernel=/arm/scratch/sysexplr/dist/binaries/vmlinux +load_addr_mask=1099511627775 +mem_mode=atomic +mem_ranges=0:134217727 +memories=system.physmem +num_work_ids=16 +pal=/arm/scratch/sysexplr/dist/binaries/ts_osfpal +readfile=tests/halt.sh +symbolfile= +system_rev=1024 +system_type=34 +work_begin_ckpt_count=0 +work_begin_cpu_id_exit=-1 +work_begin_exit_count=0 +work_cpus_ckpt_count=0 +work_end_ckpt_count=0 +work_end_exit_count=0 +work_item_id=-1 +system_port=system.membus.slave[0] + +[system.bridge] +type=Bridge +clock=1000 +delay=50000 +ranges=8796093022208:18446744073709551615 +req_size=16 +resp_size=16 +master=system.iobus.slave[0] +slave=system.membus.master[0] + +[system.cpu0] +type=AtomicSimpleCPU +children=dcache dtb icache interrupts isa itb tracer +checker=Null +clock=500 +cpu_id=0 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu0.dtb +fastmem=false +function_trace=false +function_trace_start=0 +interrupts=system.cpu0.interrupts +isa=system.cpu0.isa +itb=system.cpu0.itb +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +numThreads=1 +profile=0 +progress_interval=0 +simulate_data_stalls=false +simulate_inst_stalls=false +switched_out=false +system=system +tracer=system.cpu0.tracer +width=1 +workload= +dcache_port=system.cpu0.dcache.cpu_side +icache_port=system.cpu0.icache.cpu_side + +[system.cpu0.dcache] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=4 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=2 +is_top_level=true +max_miss_count=0 +mshrs=4 +prefetch_on_access=false +prefetcher=Null +response_latency=2 +size=32768 +system=system +tgts_per_mshr=20 +two_queue=false +write_buffers=8 +cpu_side=system.cpu0.dcache_port +mem_side=system.toL2Bus.slave[1] + +[system.cpu0.dtb] +type=AlphaTLB +size=64 + +[system.cpu0.icache] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=1 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=2 +is_top_level=true +max_miss_count=0 +mshrs=4 +prefetch_on_access=false +prefetcher=Null +response_latency=2 +size=32768 +system=system +tgts_per_mshr=20 +two_queue=false +write_buffers=8 +cpu_side=system.cpu0.icache_port +mem_side=system.toL2Bus.slave[0] + +[system.cpu0.interrupts] +type=AlphaInterrupts + +[system.cpu0.isa] +type=AlphaISA + +[system.cpu0.itb] +type=AlphaTLB +size=48 + +[system.cpu0.tracer] +type=ExeTracer + +[system.cpu1] +type=TimingSimpleCPU +children=dtb interrupts isa itb tracer +checker=Null +clock=500 +cpu_id=0 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu1.dtb +function_trace=false +function_trace_start=0 +interrupts=system.cpu1.interrupts +isa=system.cpu1.isa +itb=system.cpu1.itb +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +numThreads=1 +profile=0 +progress_interval=0 +switched_out=true +system=system +tracer=system.cpu1.tracer +workload= + +[system.cpu1.dtb] +type=AlphaTLB +size=64 + +[system.cpu1.interrupts] +type=AlphaInterrupts + +[system.cpu1.isa] +type=AlphaISA + +[system.cpu1.itb] +type=AlphaTLB +size=48 + +[system.cpu1.tracer] +type=ExeTracer + +[system.cpu2] +type=DerivO3CPU +children=dtb fuPool interrupts isa itb tracer +BTBEntries=4096 +BTBTagSize=16 +LFSTSize=1024 +LQEntries=32 +LSQCheckLoads=true +LSQDepCheckShift=4 +RASSize=16 +SQEntries=32 +SSITSize=1024 +activity=0 +backComSize=5 +cachePorts=200 +checker=Null +choiceCtrBits=2 +choicePredictorSize=8192 +clock=500 +commitToDecodeDelay=1 +commitToFetchDelay=1 +commitToIEWDelay=1 +commitToRenameDelay=1 +commitWidth=8 +cpu_id=0 +decodeToFetchDelay=1 +decodeToRenameDelay=1 +decodeWidth=8 +dispatchWidth=8 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu2.dtb +fetchToDecodeDelay=1 +fetchTrapLatency=1 +fetchWidth=8 +forwardComSize=5 +fuPool=system.cpu2.fuPool +function_trace=false +function_trace_start=0 +globalCtrBits=2 +globalHistoryBits=13 +globalPredictorSize=8192 +iewToCommitDelay=1 +iewToDecodeDelay=1 +iewToFetchDelay=1 +iewToRenameDelay=1 +instShiftAmt=2 +interrupts=system.cpu2.interrupts +isa=system.cpu2.isa +issueToExecuteDelay=1 +issueWidth=8 +itb=system.cpu2.itb +localCtrBits=2 +localHistoryBits=11 +localHistoryTableSize=2048 +localPredictorSize=2048 +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +needsTSO=false +numIQEntries=64 +numPhysFloatRegs=256 +numPhysIntRegs=256 +numROBEntries=192 +numRobs=1 +numThreads=1 +predType=tournament +profile=0 +progress_interval=0 +renameToDecodeDelay=1 +renameToFetchDelay=1 +renameToIEWDelay=2 +renameToROBDelay=1 +renameWidth=8 +smtCommitPolicy=RoundRobin +smtFetchPolicy=SingleThread +smtIQPolicy=Partitioned +smtIQThreshold=100 +smtLSQPolicy=Partitioned +smtLSQThreshold=100 +smtNumFetchingThreads=1 +smtROBPolicy=Partitioned +smtROBThreshold=100 +squashWidth=8 +store_set_clear_period=250000 +switched_out=true +system=system +tracer=system.cpu2.tracer +trapLatency=13 +wbDepth=1 +wbWidth=8 +workload= + +[system.cpu2.dtb] +type=AlphaTLB +size=64 + +[system.cpu2.fuPool] +type=FUPool +children=FUList0 FUList1 FUList2 FUList3 FUList4 FUList5 FUList6 FUList7 FUList8 +FUList=system.cpu2.fuPool.FUList0 system.cpu2.fuPool.FUList1 system.cpu2.fuPool.FUList2 system.cpu2.fuPool.FUList3 system.cpu2.fuPool.FUList4 system.cpu2.fuPool.FUList5 system.cpu2.fuPool.FUList6 system.cpu2.fuPool.FUList7 system.cpu2.fuPool.FUList8 + +[system.cpu2.fuPool.FUList0] +type=FUDesc +children=opList +count=6 +opList=system.cpu2.fuPool.FUList0.opList + +[system.cpu2.fuPool.FUList0.opList] +type=OpDesc +issueLat=1 +opClass=IntAlu +opLat=1 + +[system.cpu2.fuPool.FUList1] +type=FUDesc +children=opList0 opList1 +count=2 +opList=system.cpu2.fuPool.FUList1.opList0 system.cpu2.fuPool.FUList1.opList1 + +[system.cpu2.fuPool.FUList1.opList0] +type=OpDesc +issueLat=1 +opClass=IntMult +opLat=3 + +[system.cpu2.fuPool.FUList1.opList1] +type=OpDesc +issueLat=19 +opClass=IntDiv +opLat=20 + +[system.cpu2.fuPool.FUList2] +type=FUDesc +children=opList0 opList1 opList2 +count=4 +opList=system.cpu2.fuPool.FUList2.opList0 system.cpu2.fuPool.FUList2.opList1 system.cpu2.fuPool.FUList2.opList2 + +[system.cpu2.fuPool.FUList2.opList0] +type=OpDesc +issueLat=1 +opClass=FloatAdd +opLat=2 + +[system.cpu2.fuPool.FUList2.opList1] +type=OpDesc +issueLat=1 +opClass=FloatCmp +opLat=2 + +[system.cpu2.fuPool.FUList2.opList2] +type=OpDesc +issueLat=1 +opClass=FloatCvt +opLat=2 + +[system.cpu2.fuPool.FUList3] +type=FUDesc +children=opList0 opList1 opList2 +count=2 +opList=system.cpu2.fuPool.FUList3.opList0 system.cpu2.fuPool.FUList3.opList1 system.cpu2.fuPool.FUList3.opList2 + +[system.cpu2.fuPool.FUList3.opList0] +type=OpDesc +issueLat=1 +opClass=FloatMult +opLat=4 + +[system.cpu2.fuPool.FUList3.opList1] +type=OpDesc +issueLat=12 +opClass=FloatDiv +opLat=12 + +[system.cpu2.fuPool.FUList3.opList2] +type=OpDesc +issueLat=24 +opClass=FloatSqrt +opLat=24 + +[system.cpu2.fuPool.FUList4] +type=FUDesc +children=opList +count=0 +opList=system.cpu2.fuPool.FUList4.opList + +[system.cpu2.fuPool.FUList4.opList] +type=OpDesc +issueLat=1 +opClass=MemRead +opLat=1 + +[system.cpu2.fuPool.FUList5] +type=FUDesc +children=opList00 opList01 opList02 opList03 opList04 opList05 opList06 opList07 opList08 opList09 opList10 opList11 opList12 opList13 opList14 opList15 opList16 opList17 opList18 opList19 +count=4 +opList=system.cpu2.fuPool.FUList5.opList00 system.cpu2.fuPool.FUList5.opList01 system.cpu2.fuPool.FUList5.opList02 system.cpu2.fuPool.FUList5.opList03 system.cpu2.fuPool.FUList5.opList04 system.cpu2.fuPool.FUList5.opList05 system.cpu2.fuPool.FUList5.opList06 system.cpu2.fuPool.FUList5.opList07 system.cpu2.fuPool.FUList5.opList08 system.cpu2.fuPool.FUList5.opList09 system.cpu2.fuPool.FUList5.opList10 system.cpu2.fuPool.FUList5.opList11 system.cpu2.fuPool.FUList5.opList12 system.cpu2.fuPool.FUList5.opList13 system.cpu2.fuPool.FUList5.opList14 system.cpu2.fuPool.FUList5.opList15 system.cpu2.fuPool.FUList5.opList16 system.cpu2.fuPool.FUList5.opList17 system.cpu2.fuPool.FUList5.opList18 system.cpu2.fuPool.FUList5.opList19 + +[system.cpu2.fuPool.FUList5.opList00] +type=OpDesc +issueLat=1 +opClass=SimdAdd +opLat=1 + +[system.cpu2.fuPool.FUList5.opList01] +type=OpDesc +issueLat=1 +opClass=SimdAddAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList02] +type=OpDesc +issueLat=1 +opClass=SimdAlu +opLat=1 + +[system.cpu2.fuPool.FUList5.opList03] +type=OpDesc +issueLat=1 +opClass=SimdCmp +opLat=1 + +[system.cpu2.fuPool.FUList5.opList04] +type=OpDesc +issueLat=1 +opClass=SimdCvt +opLat=1 + +[system.cpu2.fuPool.FUList5.opList05] +type=OpDesc +issueLat=1 +opClass=SimdMisc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList06] +type=OpDesc +issueLat=1 +opClass=SimdMult +opLat=1 + +[system.cpu2.fuPool.FUList5.opList07] +type=OpDesc +issueLat=1 +opClass=SimdMultAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList08] +type=OpDesc +issueLat=1 +opClass=SimdShift +opLat=1 + +[system.cpu2.fuPool.FUList5.opList09] +type=OpDesc +issueLat=1 +opClass=SimdShiftAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList10] +type=OpDesc +issueLat=1 +opClass=SimdSqrt +opLat=1 + +[system.cpu2.fuPool.FUList5.opList11] +type=OpDesc +issueLat=1 +opClass=SimdFloatAdd +opLat=1 + +[system.cpu2.fuPool.FUList5.opList12] +type=OpDesc +issueLat=1 +opClass=SimdFloatAlu +opLat=1 + +[system.cpu2.fuPool.FUList5.opList13] +type=OpDesc +issueLat=1 +opClass=SimdFloatCmp +opLat=1 + +[system.cpu2.fuPool.FUList5.opList14] +type=OpDesc +issueLat=1 +opClass=SimdFloatCvt +opLat=1 + +[system.cpu2.fuPool.FUList5.opList15] +type=OpDesc +issueLat=1 +opClass=SimdFloatDiv +opLat=1 + +[system.cpu2.fuPool.FUList5.opList16] +type=OpDesc +issueLat=1 +opClass=SimdFloatMisc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList17] +type=OpDesc +issueLat=1 +opClass=SimdFloatMult +opLat=1 + +[system.cpu2.fuPool.FUList5.opList18] +type=OpDesc +issueLat=1 +opClass=SimdFloatMultAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList19] +type=OpDesc +issueLat=1 +opClass=SimdFloatSqrt +opLat=1 + +[system.cpu2.fuPool.FUList6] +type=FUDesc +children=opList +count=0 +opList=system.cpu2.fuPool.FUList6.opList + +[system.cpu2.fuPool.FUList6.opList] +type=OpDesc +issueLat=1 +opClass=MemWrite +opLat=1 + +[system.cpu2.fuPool.FUList7] +type=FUDesc +children=opList0 opList1 +count=4 +opList=system.cpu2.fuPool.FUList7.opList0 system.cpu2.fuPool.FUList7.opList1 + +[system.cpu2.fuPool.FUList7.opList0] +type=OpDesc +issueLat=1 +opClass=MemRead +opLat=1 + +[system.cpu2.fuPool.FUList7.opList1] +type=OpDesc +issueLat=1 +opClass=MemWrite +opLat=1 + +[system.cpu2.fuPool.FUList8] +type=FUDesc +children=opList +count=1 +opList=system.cpu2.fuPool.FUList8.opList + +[system.cpu2.fuPool.FUList8.opList] +type=OpDesc +issueLat=3 +opClass=IprAccess +opLat=3 + +[system.cpu2.interrupts] +type=AlphaInterrupts + +[system.cpu2.isa] +type=AlphaISA + +[system.cpu2.itb] +type=AlphaTLB +size=48 + +[system.cpu2.tracer] +type=ExeTracer + +[system.disk0] +type=IdeDisk +children=image +delay=1000000 +driveID=master +image=system.disk0.image + +[system.disk0.image] +type=CowDiskImage +children=child +child=system.disk0.image.child +image_file= +read_only=false +table_size=65536 + +[system.disk0.image.child] +type=RawDiskImage +image_file=/arm/scratch/sysexplr/dist/disks/linux-latest.img +read_only=true + +[system.disk2] +type=IdeDisk +children=image +delay=1000000 +driveID=master +image=system.disk2.image + +[system.disk2.image] +type=CowDiskImage +children=child +child=system.disk2.image.child +image_file= +read_only=false +table_size=65536 + +[system.disk2.image.child] +type=RawDiskImage +image_file=/arm/scratch/sysexplr/dist/disks/linux-bigswap2.img +read_only=true + +[system.intrctrl] +type=IntrControl +sys=system + +[system.iobus] +type=NoncoherentBus +block_size=64 +clock=1000 +header_cycles=1 +use_default_range=true +width=8 +default=system.tsunami.pciconfig.pio +master=system.tsunami.cchip.pio system.tsunami.pchip.pio system.tsunami.fake_sm_chip.pio system.tsunami.fake_uart1.pio system.tsunami.fake_uart2.pio system.tsunami.fake_uart3.pio system.tsunami.fake_uart4.pio system.tsunami.fake_ppc.pio system.tsunami.fake_OROM.pio system.tsunami.fake_pnp_addr.pio system.tsunami.fake_pnp_write.pio system.tsunami.fake_pnp_read0.pio system.tsunami.fake_pnp_read1.pio system.tsunami.fake_pnp_read2.pio system.tsunami.fake_pnp_read3.pio system.tsunami.fake_pnp_read4.pio system.tsunami.fake_pnp_read5.pio system.tsunami.fake_pnp_read6.pio system.tsunami.fake_pnp_read7.pio system.tsunami.fake_ata0.pio system.tsunami.fake_ata1.pio system.tsunami.fb.pio system.tsunami.io.pio system.tsunami.uart.pio system.tsunami.backdoor.pio system.tsunami.ide.pio system.tsunami.ide.config system.tsunami.ethernet.pio system.tsunami.ethernet.config system.iocache.cpu_side +slave=system.bridge.master system.tsunami.ide.dma system.tsunami.ethernet.dma + +[system.iocache] +type=BaseCache +addr_ranges=0:134217727 +assoc=8 +block_size=64 +clock=1000 +forward_snoops=false +hit_latency=50 +is_top_level=true +max_miss_count=0 +mshrs=20 +prefetch_on_access=false +prefetcher=Null +response_latency=50 +size=1024 +system=system +tgts_per_mshr=12 +two_queue=false +write_buffers=8 +cpu_side=system.iobus.master[29] +mem_side=system.membus.slave[2] + +[system.l2c] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=8 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=20 +is_top_level=false +max_miss_count=0 +mshrs=20 +prefetch_on_access=false +prefetcher=Null +response_latency=20 +size=4194304 +system=system +tgts_per_mshr=12 +two_queue=false +write_buffers=8 +cpu_side=system.toL2Bus.master[0] +mem_side=system.membus.slave[1] + +[system.membus] +type=CoherentBus +children=badaddr_responder +block_size=64 +clock=1000 +header_cycles=1 +use_default_range=false +width=8 +default=system.membus.badaddr_responder.pio +master=system.bridge.slave system.physmem.port +slave=system.system_port system.l2c.mem_side system.iocache.mem_side + +[system.membus.badaddr_responder] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=0 +pio_latency=100000 +pio_size=8 +ret_bad_addr=true +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.membus.default + +[system.physmem] +type=SimpleDRAM +addr_mapping=openmap +banks_per_rank=8 +clock=1000 +conf_table_reported=false +in_addr_map=true +lines_per_rowbuffer=64 +mem_sched_policy=fcfs +null=false +page_policy=open +range=0:134217727 +ranks_per_channel=2 +read_buffer_size=32 +tBURST=4000 +tCL=14000 +tRCD=14000 +tREFI=7800000 +tRFC=300000 +tRP=14000 +tWTR=1000 +write_buffer_size=32 +write_thresh_perc=70 +zero=false +port=system.membus.master[1] + +[system.simple_disk] +type=SimpleDisk +children=disk +disk=system.simple_disk.disk +system=system + +[system.simple_disk.disk] +type=RawDiskImage +image_file=/arm/scratch/sysexplr/dist/disks/linux-latest.img +read_only=true + +[system.terminal] +type=Terminal +intr_control=system.intrctrl +number=0 +output=true +port=3456 + +[system.toL2Bus] +type=CoherentBus +block_size=64 +clock=500 +header_cycles=1 +use_default_range=false +width=8 +master=system.l2c.cpu_side +slave=system.cpu0.icache.mem_side system.cpu0.dcache.mem_side + +[system.tsunami] +type=Tsunami +children=backdoor cchip ethernet fake_OROM fake_ata0 fake_ata1 fake_pnp_addr fake_pnp_read0 fake_pnp_read1 fake_pnp_read2 fake_pnp_read3 fake_pnp_read4 fake_pnp_read5 fake_pnp_read6 fake_pnp_read7 fake_pnp_write fake_ppc fake_sm_chip fake_uart1 fake_uart2 fake_uart3 fake_uart4 fb ide io pchip pciconfig uart +intrctrl=system.intrctrl +system=system + +[system.tsunami.backdoor] +type=AlphaBackdoor +clock=1000 +cpu=system.cpu0 +disk=system.simple_disk +pio_addr=8804682956800 +pio_latency=100000 +platform=system.tsunami +system=system +terminal=system.terminal +pio=system.iobus.master[24] + +[system.tsunami.cchip] +type=TsunamiCChip +clock=1000 +pio_addr=8803072344064 +pio_latency=100000 +system=system +tsunami=system.tsunami +pio=system.iobus.master[0] + +[system.tsunami.ethernet] +type=NSGigE +BAR0=1 +BAR0LegacyIO=false +BAR0Size=256 +BAR1=0 +BAR1LegacyIO=false +BAR1Size=4096 +BAR2=0 +BAR2LegacyIO=false +BAR2Size=0 +BAR3=0 +BAR3LegacyIO=false +BAR3Size=0 +BAR4=0 +BAR4LegacyIO=false +BAR4Size=0 +BAR5=0 +BAR5LegacyIO=false +BAR5Size=0 +BIST=0 +CacheLineSize=0 +CardbusCIS=0 +ClassCode=2 +Command=0 +DeviceID=34 +ExpansionROM=0 +HeaderType=0 +InterruptLine=30 +InterruptPin=1 +LatencyTimer=0 +MaximumLatency=52 +MinimumGrant=176 +ProgIF=0 +Revision=0 +Status=656 +SubClassCode=0 +SubsystemID=0 +SubsystemVendorID=0 +VendorID=4107 +clock=2000 +config_latency=20000 +dma_data_free=false +dma_desc_free=false +dma_no_allocate=true +dma_read_delay=0 +dma_read_factor=0 +dma_write_delay=0 +dma_write_factor=0 +hardware_address=00:90:00:00:00:01 +intr_delay=10000000 +pci_bus=0 +pci_dev=1 +pci_func=0 +pio_latency=30000 +platform=system.tsunami +rss=false +rx_delay=1000000 +rx_fifo_size=524288 +rx_filter=true +rx_thread=false +system=system +tx_delay=1000000 +tx_fifo_size=524288 +tx_thread=false +config=system.iobus.master[28] +dma=system.iobus.slave[2] +pio=system.iobus.master[27] + +[system.tsunami.fake_OROM] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8796093677568 +pio_latency=100000 +pio_size=393216 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[8] + +[system.tsunami.fake_ata0] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848432 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[19] + +[system.tsunami.fake_ata1] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848304 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[20] + +[system.tsunami.fake_pnp_addr] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848569 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[9] + +[system.tsunami.fake_pnp_read0] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848451 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[11] + +[system.tsunami.fake_pnp_read1] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848515 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[12] + +[system.tsunami.fake_pnp_read2] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848579 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[13] + +[system.tsunami.fake_pnp_read3] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848643 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[14] + +[system.tsunami.fake_pnp_read4] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848707 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[15] + +[system.tsunami.fake_pnp_read5] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848771 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[16] + +[system.tsunami.fake_pnp_read6] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848835 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[17] + +[system.tsunami.fake_pnp_read7] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848899 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[18] + +[system.tsunami.fake_pnp_write] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615850617 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[10] + +[system.tsunami.fake_ppc] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848891 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[7] + +[system.tsunami.fake_sm_chip] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848816 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[2] + +[system.tsunami.fake_uart1] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848696 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[3] + +[system.tsunami.fake_uart2] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848936 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[4] + +[system.tsunami.fake_uart3] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848680 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[5] + +[system.tsunami.fake_uart4] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=8804615848944 +pio_latency=100000 +pio_size=8 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[6] + +[system.tsunami.fb] +type=BadDevice +clock=1000 +devicename=FrameBuffer +pio_addr=8804615848912 +pio_latency=100000 +system=system +pio=system.iobus.master[21] + +[system.tsunami.ide] +type=IdeController +BAR0=1 +BAR0LegacyIO=false +BAR0Size=8 +BAR1=1 +BAR1LegacyIO=false +BAR1Size=4 +BAR2=1 +BAR2LegacyIO=false +BAR2Size=8 +BAR3=1 +BAR3LegacyIO=false +BAR3Size=4 +BAR4=1 +BAR4LegacyIO=false +BAR4Size=16 +BAR5=1 +BAR5LegacyIO=false +BAR5Size=0 +BIST=0 +CacheLineSize=0 +CardbusCIS=0 +ClassCode=1 +Command=0 +DeviceID=28945 +ExpansionROM=0 +HeaderType=0 +InterruptLine=31 +InterruptPin=1 +LatencyTimer=0 +MaximumLatency=0 +MinimumGrant=0 +ProgIF=133 +Revision=0 +Status=640 +SubClassCode=1 +SubsystemID=0 +SubsystemVendorID=0 +VendorID=32902 +clock=1000 +config_latency=20000 +ctrl_offset=0 +disks=system.disk0 system.disk2 +io_shift=0 +pci_bus=0 +pci_dev=0 +pci_func=0 +pio_latency=30000 +platform=system.tsunami +system=system +config=system.iobus.master[26] +dma=system.iobus.slave[1] +pio=system.iobus.master[25] + +[system.tsunami.io] +type=TsunamiIO +clock=1000 +frequency=976562500 +pio_addr=8804615847936 +pio_latency=100000 +system=system +time=Thu Jan 1 00:00:00 2009 +tsunami=system.tsunami +year_is_bcd=false +pio=system.iobus.master[22] + +[system.tsunami.pchip] +type=TsunamiPChip +clock=1000 +pio_addr=8802535473152 +pio_latency=100000 +system=system +tsunami=system.tsunami +pio=system.iobus.master[1] + +[system.tsunami.pciconfig] +type=PciConfigAll +bus=0 +clock=1000 +pio_latency=30000 +platform=system.tsunami +size=16777216 +system=system +pio=system.iobus.default + +[system.tsunami.uart] +type=Uart8250 +clock=1000 +pio_addr=8804615848952 +pio_latency=100000 +platform=system.tsunami +system=system +terminal=system.terminal +pio=system.iobus.master[23] + diff --git a/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simerr b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simerr new file mode 100755 index 000000000..3c54e08bb --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simerr @@ -0,0 +1,9 @@ +warn: Sockets disabled, not accepting terminal connections +warn: Sockets disabled, not accepting gdb connections +hack: be nice to actually delete the event here +warn: Prefetch instructions in Alpha do not do anything +warn: Prefetch instructions in Alpha do not do anything +warn: Prefetch instructions in Alpha do not do anything +warn: Prefetch instructions in Alpha do not do anything +warn: Prefetch instructions in Alpha do not do anything +warn: Prefetch instructions in Alpha do not do anything diff --git a/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simout b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simout new file mode 100755 index 000000000..94a2dd47e --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/simout @@ -0,0 +1,6245 @@ +gem5 Simulator System. http://gem5.org +gem5 is copyrighted software; use the --copyright option for details. + +gem5 compiled Dec 11 2012 16:31:37 +gem5 started Dec 11 2012 16:31:53 +gem5 executing on e103721-lin +command line: build/ALPHA/gem5.opt -d build/ALPHA/tests/opt/long/fs/10.linux-boot/alpha/linux/tsunami-switcheroo-full -re tests/run.py build/ALPHA/tests/opt/long/fs/10.linux-boot/alpha/linux/tsunami-switcheroo-full +Global frequency set at 1000000000000 ticks per second +info: kernel located at: /arm/scratch/sysexplr/dist/binaries/vmlinux + 0: system.tsunami.io.rtc: Real-time clock set to Thu Jan 1 00:00:00 2009 +info: Entering event queue @ 0. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1000000000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2000000000. Starting simulation... +switching cpus +info: Entering event queue @ 2000001000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 3000001000. Starting simulation... +info: Entering event queue @ 3000043000. Starting simulation... +switching cpus +info: Entering event queue @ 3000047500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 4000047500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 5000047500. Starting simulation... +switching cpus +info: Entering event queue @ 5000048000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 6000048000. Starting simulation... +info: Entering event queue @ 7452589500. Starting simulation... +info: Entering event queue @ 7452657000. Starting simulation... +switching cpus +info: Entering event queue @ 7452661500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 8452661500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 9452661500. Starting simulation... +info: Entering event queue @ 9452675500. Starting simulation... +switching cpus +info: Entering event queue @ 9452679000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 10452679000. Starting simulation... +switching cpus +info: Entering event queue @ 10452683500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 11452683500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 12452683500. Starting simulation... +switching cpus +info: Entering event queue @ 12452684500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 13452684500. Starting simulation... +switching cpus +info: Entering event queue @ 13452690000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 14452690000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 15452690000. Starting simulation... +switching cpus +info: Entering event queue @ 15452691000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 16452691000. Starting simulation... +switching cpus +info: Entering event queue @ 16452704500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 17452704500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 18452704500. Starting simulation... +switching cpus +info: Entering event queue @ 18452705500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 19452705500. Starting simulation... +info: Entering event queue @ 19452711000. Starting simulation... +switching cpus +info: Entering event queue @ 19452715500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 20452715500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 21452715500. Starting simulation... +switching cpus +info: Entering event queue @ 21452716000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 22452716000. Starting simulation... +info: Entering event queue @ 22452727500. Starting simulation... +switching cpus +info: Entering event queue @ 22452733000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 23452733000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 24452733000. Starting simulation... +switching cpus +info: Entering event queue @ 24452734000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 25452734000. Starting simulation... +switching cpus +info: Entering event queue @ 25452745500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 26452745500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 27452745500. Starting simulation... +switching cpus +info: Entering event queue @ 27452746500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 28452746500. Starting simulation... +info: Entering event queue @ 28452758500. Starting simulation... +info: Entering event queue @ 28452769000. Starting simulation... +switching cpus +info: Entering event queue @ 28452773500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 29452773500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 30452773500. Starting simulation... +switching cpus +info: Entering event queue @ 30452992500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 31452992500. Starting simulation... +switching cpus +info: Entering event queue @ 31452995500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 32452995500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 33452995500. Starting simulation... +switching cpus +info: Entering event queue @ 33452996500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 34452996500. Starting simulation... +switching cpus +info: Entering event queue @ 34452999500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 35452999500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 36452999500. Starting simulation... +switching cpus +info: Entering event queue @ 36453000500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 37453000500. Starting simulation... +switching cpus +info: Entering event queue @ 37453003500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 38453003500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 39453003500. Starting simulation... +switching cpus +info: Entering event queue @ 39453004500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 40453004500. Starting simulation... +switching cpus +info: Entering event queue @ 40453007500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 41453007500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 42453007500. Starting simulation... +switching cpus +info: Entering event queue @ 42453008500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 43453008500. Starting simulation... +switching cpus +info: Entering event queue @ 43945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 44945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 45945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 46945335500. Starting simulation... +switching cpus +info: Entering event queue @ 47851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 48851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 49851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 50851585500. Starting simulation... +switching cpus +info: Entering event queue @ 51757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 52757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 53757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 54757835500. Starting simulation... +switching cpus +info: Entering event queue @ 55664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 56664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 57664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 58664085500. Starting simulation... +switching cpus +info: Entering event queue @ 59570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 60570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 61570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 62570335500. Starting simulation... +switching cpus +info: Entering event queue @ 63476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 64476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 65476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 66476585500. Starting simulation... +switching cpus +info: Entering event queue @ 67382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 68382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 69382835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 70382835500. Starting simulation... +switching cpus +info: Entering event queue @ 71289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 72289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 73289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 74289085500. Starting simulation... +switching cpus +info: Entering event queue @ 75195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 76195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 77195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 78195335500. Starting simulation... +switching cpus +info: Entering event queue @ 79101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 80101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 81101585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 82101585500. Starting simulation... +switching cpus +info: Entering event queue @ 83007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 84007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 85007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 86007835500. Starting simulation... +switching cpus +info: Entering event queue @ 86914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 87914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 88914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 89914085500. Starting simulation... +switching cpus +info: Entering event queue @ 90820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 91820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 92820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 93820335500. Starting simulation... +switching cpus +info: Entering event queue @ 94726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 95726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 96726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 97726585500. Starting simulation... +switching cpus +info: Entering event queue @ 98632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 99632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 100632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 101632835500. Starting simulation... +switching cpus +info: Entering event queue @ 102539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 103539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 104539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 105539085500. Starting simulation... +switching cpus +info: Entering event queue @ 106445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 107445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 108445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 109445335500. Starting simulation... +switching cpus +info: Entering event queue @ 110351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 111351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 112351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 113351585500. Starting simulation... +switching cpus +info: Entering event queue @ 114257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 115257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 116257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 117257835500. Starting simulation... +switching cpus +info: Entering event queue @ 118164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 119164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 120164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 121164085500. Starting simulation... +switching cpus +info: Entering event queue @ 122070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 123070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 124070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 125070335500. Starting simulation... +switching cpus +info: Entering event queue @ 125976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 126976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 127976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 128976585500. Starting simulation... +switching cpus +info: Entering event queue @ 129882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 130882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 131882835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 132882835500. Starting simulation... +switching cpus +info: Entering event queue @ 133789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 134789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 135789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 136789085500. Starting simulation... +switching cpus +info: Entering event queue @ 137695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 138695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 139695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 140695335500. Starting simulation... +switching cpus +info: Entering event queue @ 141601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 142601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 143601585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 144601585500. Starting simulation... +switching cpus +info: Entering event queue @ 145507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 146507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 147507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 148507835500. Starting simulation... +switching cpus +info: Entering event queue @ 149414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 150414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 151414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 152414085500. Starting simulation... +switching cpus +info: Entering event queue @ 153320335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 154320335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 155320335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 156320335500. Starting simulation... +switching cpus +info: Entering event queue @ 157226585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 158226585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 159226585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 160226585500. Starting simulation... +switching cpus +info: Entering event queue @ 161132835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 162132835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 163132835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 164132835500. Starting simulation... +switching cpus +info: Entering event queue @ 165039085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 166039085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 167039085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 168039085500. Starting simulation... +switching cpus +info: Entering event queue @ 168945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 169945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 170945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 171945335500. Starting simulation... +switching cpus +info: Entering event queue @ 172851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 173851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 174851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 175851585500. Starting simulation... +switching cpus +info: Entering event queue @ 176757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 177757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 178757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 179757835500. Starting simulation... +switching cpus +info: Entering event queue @ 180664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 181664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 182664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 183664085500. Starting simulation... +switching cpus +info: Entering event queue @ 184570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 185570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 186570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 187570335500. Starting simulation... +switching cpus +info: Entering event queue @ 188476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 189476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 190476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 191476585500. Starting simulation... +switching cpus +info: Entering event queue @ 192382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 193382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 194382835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 195382835500. Starting simulation... +switching cpus +info: Entering event queue @ 196289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 197289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 198289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 199289085500. Starting simulation... +switching cpus +info: Entering event queue @ 200195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 201195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 202195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 203195335500. Starting simulation... +switching cpus +info: Entering event queue @ 204101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 205101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 206101585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 207101585500. Starting simulation... +switching cpus +info: Entering event queue @ 208007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 209007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 210007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 211007835500. Starting simulation... +switching cpus +info: Entering event queue @ 211914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 212914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 213914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 214914085500. Starting simulation... +switching cpus +info: Entering event queue @ 215820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 216820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 217820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 218820335500. Starting simulation... +switching cpus +info: Entering event queue @ 219726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 220726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 221726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 222726585500. Starting simulation... +switching cpus +info: Entering event queue @ 223632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 224632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 225632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 226632835500. Starting simulation... +switching cpus +info: Entering event queue @ 227539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 228539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 229539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 230539085500. Starting simulation... +switching cpus +info: Entering event queue @ 231445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 232445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 233445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 234445335500. Starting simulation... +switching cpus +info: Entering event queue @ 235351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 236351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 237351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 238351585500. Starting simulation... +switching cpus +info: Entering event queue @ 239257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 240257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 241257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 242257835500. Starting simulation... +switching cpus +info: Entering event queue @ 243164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 244164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 245164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 246164085500. Starting simulation... +switching cpus +info: Entering event queue @ 247070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 248070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 249070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 250070335500. Starting simulation... +switching cpus +info: Entering event queue @ 250976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 251976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 252976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 253976585500. Starting simulation... +switching cpus +info: Entering event queue @ 254882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 255882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 256882835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 257882835500. Starting simulation... +switching cpus +info: Entering event queue @ 258789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 259789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 260789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 261789085500. Starting simulation... +switching cpus +info: Entering event queue @ 262695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 263695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 264695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 265695335500. Starting simulation... +switching cpus +info: Entering event queue @ 266601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 267601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 268601585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 269601585500. Starting simulation... +switching cpus +info: Entering event queue @ 270507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 271507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 272507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 273507835500. Starting simulation... +switching cpus +info: Entering event queue @ 274414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 275414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 276414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 277414085500. Starting simulation... +switching cpus +info: Entering event queue @ 278320335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 279320335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 280320335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 281320335500. Starting simulation... +switching cpus +info: Entering event queue @ 282226585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 283226585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 284226585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 285226585500. Starting simulation... +switching cpus +info: Entering event queue @ 286132835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 287132835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 288132835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 289132835500. Starting simulation... +switching cpus +info: Entering event queue @ 290039085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 291039085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 292039085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 293039085500. Starting simulation... +switching cpus +info: Entering event queue @ 293945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 294945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 295945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 296945335500. Starting simulation... +switching cpus +info: Entering event queue @ 297851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 298851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 299851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 300851585500. Starting simulation... +switching cpus +info: Entering event queue @ 301757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 302757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 303757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 304757835500. Starting simulation... +switching cpus +info: Entering event queue @ 304758059500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 305758059500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 306758059500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 307758059500. Starting simulation... +switching cpus +info: Entering event queue @ 308593773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 309593773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 310593773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 311593773000. Starting simulation... +switching cpus +info: Entering event queue @ 312500023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 313500023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 314500023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 315500023000. Starting simulation... +switching cpus +info: Entering event queue @ 316406273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 317406273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 318406273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 319406273000. Starting simulation... +switching cpus +info: Entering event queue @ 320312523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 321312523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 322312523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 323312523000. Starting simulation... +switching cpus +info: Entering event queue @ 324218773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 325218773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 326218773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 327218773000. Starting simulation... +switching cpus +info: Entering event queue @ 328125023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 329125023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 330125023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 331125023000. Starting simulation... +switching cpus +info: Entering event queue @ 332031273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 333031273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 334031273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 335031273000. Starting simulation... +switching cpus +info: Entering event queue @ 335937523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 336937523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 337937523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 338937523000. Starting simulation... +switching cpus +info: Entering event queue @ 339843773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 340843773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 341843773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 342843773000. Starting simulation... +switching cpus +info: Entering event queue @ 343750023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 344750023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 345750023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 346750023000. Starting simulation... +switching cpus +info: Entering event queue @ 347656273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 348656273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 349656273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 350656273000. Starting simulation... +switching cpus +info: Entering event queue @ 351562523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 352562523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 353562523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 354562523000. Starting simulation... +switching cpus +info: Entering event queue @ 355468773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 356468773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 357468773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 358468773000. Starting simulation... +switching cpus +info: Entering event queue @ 359375023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 360375023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 361375023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 362375023000. Starting simulation... +switching cpus +info: Entering event queue @ 363281273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 364281273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 365281273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 366281273000. Starting simulation... +switching cpus +info: Entering event queue @ 367187523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 368187523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 369187523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 370187523000. Starting simulation... +switching cpus +info: Entering event queue @ 371093773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 372093773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 373093773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 374093773000. Starting simulation... +switching cpus +info: Entering event queue @ 375000023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 376000023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 377000023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 378000023000. Starting simulation... +switching cpus +info: Entering event queue @ 378906273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 379906273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 380906273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 381906273000. Starting simulation... +switching cpus +info: Entering event queue @ 382812523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 383812523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 384812523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 385812523000. Starting simulation... +switching cpus +info: Entering event queue @ 386718773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 387718773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 388718773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 389718773000. Starting simulation... +switching cpus +info: Entering event queue @ 390625023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 391625023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 392625023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 393625023000. Starting simulation... +switching cpus +info: Entering event queue @ 394531273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 395531273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 396531273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 397531273000. Starting simulation... +switching cpus +info: Entering event queue @ 398437523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 399437523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 400437523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 401437523000. Starting simulation... +switching cpus +info: Entering event queue @ 402343773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 403343773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 404343773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 405343773000. Starting simulation... +switching cpus +info: Entering event queue @ 406250023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 407250023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 408250023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 409250023000. Starting simulation... +switching cpus +info: Entering event queue @ 410156273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 411156273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 412156273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 413156273000. Starting simulation... +switching cpus +info: Entering event queue @ 414062523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 415062523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 416062523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 417062523000. Starting simulation... +switching cpus +info: Entering event queue @ 417968773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 418968773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 419968773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 420968773000. Starting simulation... +switching cpus +info: Entering event queue @ 421875023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 422875023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 423875023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 424875023000. Starting simulation... +switching cpus +info: Entering event queue @ 425781273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 426781273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 427781273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 428781273000. Starting simulation... +switching cpus +info: Entering event queue @ 429687523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 430687523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 431687523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 432687523000. Starting simulation... +switching cpus +info: Entering event queue @ 433593773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 434593773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 435593773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 436593773000. Starting simulation... +switching cpus +info: Entering event queue @ 437500023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 438500023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 439500023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 440500023000. Starting simulation... +switching cpus +info: Entering event queue @ 441406273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 442406273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 443406273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 444406273000. Starting simulation... +switching cpus +info: Entering event queue @ 445312523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 446312523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 447312523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 448312523000. Starting simulation... +switching cpus +info: Entering event queue @ 449218773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 450218773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 451218773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 452218773000. Starting simulation... +switching cpus +info: Entering event queue @ 453125023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 454125023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 455125023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 456125023000. Starting simulation... +switching cpus +info: Entering event queue @ 457031273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 458031273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 459031273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 460031273000. Starting simulation... +switching cpus +info: Entering event queue @ 460937523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 461937523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 462937523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 463937523000. Starting simulation... +switching cpus +info: Entering event queue @ 464843773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 465843773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 466843773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 467843773000. Starting simulation... +switching cpus +info: Entering event queue @ 468750023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 469750023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 470750023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 471750023000. Starting simulation... +switching cpus +info: Entering event queue @ 472656273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 473656273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 474656273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 475656273000. Starting simulation... +switching cpus +info: Entering event queue @ 476562523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 477562523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 478562523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 479562523000. Starting simulation... +switching cpus +info: Entering event queue @ 480468773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 481468773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 482468773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 483468773000. Starting simulation... +switching cpus +info: Entering event queue @ 484375023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 485375023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 486375023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 487375023000. Starting simulation... +switching cpus +info: Entering event queue @ 488281273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 489281273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 490281273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 491281273000. Starting simulation... +switching cpus +info: Entering event queue @ 492187523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 493187523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 494187523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 495187523000. Starting simulation... +switching cpus +info: Entering event queue @ 496093773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 497093773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 498093773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 499093773000. Starting simulation... +switching cpus +info: Entering event queue @ 500000023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 501000023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 502000023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 503000023000. Starting simulation... +switching cpus +info: Entering event queue @ 503906273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 504906273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 505906273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 506906273000. Starting simulation... +switching cpus +info: Entering event queue @ 507812523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 508812523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 509812523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 510812523000. Starting simulation... +switching cpus +info: Entering event queue @ 511718773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 512718773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 513718773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 514718773000. Starting simulation... +switching cpus +info: Entering event queue @ 515625023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 516625023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 517625023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 518625023000. Starting simulation... +switching cpus +info: Entering event queue @ 519531273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 520531273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 521531273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 522531273000. Starting simulation... +switching cpus +info: Entering event queue @ 523437523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 524437523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 525437523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 526437523000. Starting simulation... +switching cpus +info: Entering event queue @ 527343773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 528343773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 529343773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 530343773000. Starting simulation... +switching cpus +info: Entering event queue @ 531250023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 532250023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 533250023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 534250023000. Starting simulation... +switching cpus +info: Entering event queue @ 535156273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 536156273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 537156273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 538156273000. Starting simulation... +switching cpus +info: Entering event queue @ 539062523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 540062523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 541062523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 542062523000. Starting simulation... +switching cpus +info: Entering event queue @ 542968773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 543968773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 544968773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 545968773000. Starting simulation... +switching cpus +info: Entering event queue @ 546875023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 547875023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 548875023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 549875023000. Starting simulation... +switching cpus +info: Entering event queue @ 550781273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 551781273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 552781273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 553781273000. Starting simulation... +switching cpus +info: Entering event queue @ 554687523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 555687523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 556687523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 557687523000. Starting simulation... +switching cpus +info: Entering event queue @ 558593773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 559593773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 560593773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 561593773000. Starting simulation... +switching cpus +info: Entering event queue @ 562500023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 563500023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 564500023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 565500023000. Starting simulation... +switching cpus +info: Entering event queue @ 566406273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 567406273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 568406273000. Starting simulation... +switching cpus +info: Entering event queue @ 568406301000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 569406301000. Starting simulation... +switching cpus +info: Entering event queue @ 570312523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 571312523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 572312523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 573312523000. Starting simulation... +switching cpus +info: Entering event queue @ 574218773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 575218773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 576218773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 577218773000. Starting simulation... +switching cpus +info: Entering event queue @ 578125023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 579125023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 580125023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 581125023000. Starting simulation... +switching cpus +info: Entering event queue @ 582031273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 583031273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 584031273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 585031273000. Starting simulation... +switching cpus +info: Entering event queue @ 585937523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 586937523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 587937523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 588937523000. Starting simulation... +switching cpus +info: Entering event queue @ 589843773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 590843773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 591843773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 592843773000. Starting simulation... +switching cpus +info: Entering event queue @ 593750023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 594750023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 595750023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 596750023000. Starting simulation... +switching cpus +info: Entering event queue @ 597656273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 598656273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 599656273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 600656273000. Starting simulation... +switching cpus +info: Entering event queue @ 601562523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 602562523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 603562523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 604562523000. Starting simulation... +switching cpus +info: Entering event queue @ 605468773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 606468773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 607468773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 608468773000. Starting simulation... +switching cpus +info: Entering event queue @ 609375023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 610375023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 611375023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 612375023000. Starting simulation... +switching cpus +info: Entering event queue @ 613281273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 614281273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 615281273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 616281273000. Starting simulation... +switching cpus +info: Entering event queue @ 617187523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 618187523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 619187523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 620187523000. Starting simulation... +switching cpus +info: Entering event queue @ 621093773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 622093773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 623093773000. Starting simulation... +switching cpus +info: Entering event queue @ 623093773500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 624093773500. Starting simulation... +switching cpus +info: Entering event queue @ 624216549000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 625216549000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 626216549000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 627216549000. Starting simulation... +switching cpus +info: Entering event queue @ 627929709000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 628929709000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 629929709000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 630929709000. Starting simulation... +switching cpus +info: Entering event queue @ 631835960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 632835960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 633835960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 634835960500. Starting simulation... +switching cpus +info: Entering event queue @ 635742210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 636742210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 637742210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 638742210500. Starting simulation... +switching cpus +info: Entering event queue @ 639648460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 640648460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 641648460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 642648460500. Starting simulation... +switching cpus +info: Entering event queue @ 643554710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 644554710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 645554710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 646554710500. Starting simulation... +switching cpus +info: Entering event queue @ 647460960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 648460960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 649460960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 650460960500. Starting simulation... +switching cpus +info: Entering event queue @ 651367210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 652367210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 653367210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 654367210500. Starting simulation... +switching cpus +info: Entering event queue @ 655273460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 656273460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 657273460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 658273460500. Starting simulation... +switching cpus +info: Entering event queue @ 659179710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 660179710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 661179710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 662179710500. Starting simulation... +switching cpus +info: Entering event queue @ 663085960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 664085960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 665085960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 666085960500. Starting simulation... +switching cpus +info: Entering event queue @ 666992210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 667992210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 668992210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 669992210500. Starting simulation... +switching cpus +info: Entering event queue @ 670898460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 671898460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 672898460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 673898460500. Starting simulation... +switching cpus +info: Entering event queue @ 674804710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 675804710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 676804710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 677804710500. Starting simulation... +switching cpus +info: Entering event queue @ 678710960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 679710960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 680710960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 681710960500. Starting simulation... +switching cpus +info: Entering event queue @ 682617210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 683617210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 684617210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 685617210500. Starting simulation... +switching cpus +info: Entering event queue @ 686523460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 687523460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 688523460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 689523460500. Starting simulation... +switching cpus +info: Entering event queue @ 690429710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 691429710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 692429710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 693429710500. Starting simulation... +switching cpus +info: Entering event queue @ 694335960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 695335960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 696335960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 697335960500. Starting simulation... +switching cpus +info: Entering event queue @ 698242210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 699242210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 700242210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 701242210500. Starting simulation... +switching cpus +info: Entering event queue @ 702148460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 703148460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 704148460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 705148460500. Starting simulation... +switching cpus +info: Entering event queue @ 706054710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 707054710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 708054710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 709054710500. Starting simulation... +switching cpus +info: Entering event queue @ 709960960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 710960960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 711960960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 712960960500. Starting simulation... +switching cpus +info: Entering event queue @ 713867210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 714867210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 715867210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 716867210500. Starting simulation... +switching cpus +info: Entering event queue @ 717773460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 718773460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 719773460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 720773460500. Starting simulation... +switching cpus +info: Entering event queue @ 721679710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 722679710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 723679710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 724679710500. Starting simulation... +switching cpus +info: Entering event queue @ 725585960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 726585960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 727585960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 728585960500. Starting simulation... +switching cpus +info: Entering event queue @ 729492210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 730492210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 731492210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 732492210500. Starting simulation... +switching cpus +info: Entering event queue @ 733398460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 734398460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 735398460500. Starting simulation... +switching cpus +info: Entering event queue @ 735398461500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 736398461500. Starting simulation... +switching cpus +info: Entering event queue @ 737304710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 738304710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 739304710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 740304710500. Starting simulation... +switching cpus +info: Entering event queue @ 741210960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 742210960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 743210960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 744210960500. Starting simulation... +switching cpus +info: Entering event queue @ 745117210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 746117210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 747117210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 748117210500. Starting simulation... +switching cpus +info: Entering event queue @ 749023460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 750023460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 751023460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 752023460500. Starting simulation... +switching cpus +info: Entering event queue @ 752929710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 753929710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 754929710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 755929710500. Starting simulation... +switching cpus +info: Entering event queue @ 756835960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 757835960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 758835960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 759835960500. Starting simulation... +switching cpus +info: Entering event queue @ 760742210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 761742210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 762742210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 763742210500. Starting simulation... +switching cpus +info: Entering event queue @ 764648460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 765648460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 766648460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 767648460500. Starting simulation... +switching cpus +info: Entering event queue @ 768554710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 769554710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 770554710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 771554710500. Starting simulation... +switching cpus +info: Entering event queue @ 772460960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 773460960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 774460960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 775460960500. Starting simulation... +switching cpus +info: Entering event queue @ 776367210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 777367210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 778367210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 779367210500. Starting simulation... +switching cpus +info: Entering event queue @ 780273460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 781273460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 782273460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 783273460500. Starting simulation... +switching cpus +info: Entering event queue @ 784179710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 785179710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 786179710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 787179710500. Starting simulation... +switching cpus +info: Entering event queue @ 788085960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 789085960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 790085960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 791085960500. Starting simulation... +switching cpus +info: Entering event queue @ 791992210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 792992210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 793992210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 794992210500. Starting simulation... +switching cpus +info: Entering event queue @ 795898460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 796898460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 797898460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 798898460500. Starting simulation... +switching cpus +info: Entering event queue @ 799804710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 800804710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 801804710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 802804710500. Starting simulation... +switching cpus +info: Entering event queue @ 803710960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 804710960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 805710960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 806710960500. Starting simulation... +switching cpus +info: Entering event queue @ 807617210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 808617210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 809617210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 810617210500. Starting simulation... +switching cpus +info: Entering event queue @ 811523460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 812523460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 813523460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 814523460500. Starting simulation... +switching cpus +info: Entering event queue @ 815429710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 816429710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 817429710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 818429710500. Starting simulation... +switching cpus +info: Entering event queue @ 819335960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 820335960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 821335960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 822335960500. Starting simulation... +switching cpus +info: Entering event queue @ 823242210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 824242210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 825242210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 826242210500. Starting simulation... +switching cpus +info: Entering event queue @ 827148460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 828148460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 829148460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 830148460500. Starting simulation... +switching cpus +info: Entering event queue @ 831054710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 832054710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 833054710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 834054710500. Starting simulation... +switching cpus +info: Entering event queue @ 834960960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 835960960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 836960960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 837960960500. Starting simulation... +switching cpus +info: Entering event queue @ 838867210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 839867210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 840867210500. Starting simulation... +switching cpus +info: Entering event queue @ 840867211500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 841867211500. Starting simulation... +switching cpus +info: Entering event queue @ 842773460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 843773460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 844773460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 845773460500. Starting simulation... +switching cpus +info: Entering event queue @ 846679710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 847679710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 848679710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 849679710500. Starting simulation... +switching cpus +info: Entering event queue @ 850585960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 851585960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 852585960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 853585960500. Starting simulation... +switching cpus +info: Entering event queue @ 854492210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 855492210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 856492210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 857492210500. Starting simulation... +switching cpus +info: Entering event queue @ 858398460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 859398460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 860398460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 861398460500. Starting simulation... +switching cpus +info: Entering event queue @ 862304710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 863304710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 864304710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 865304710500. Starting simulation... +switching cpus +info: Entering event queue @ 866210960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 867210960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 868210960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 869210960500. Starting simulation... +switching cpus +info: Entering event queue @ 870117210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 871117210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 872117210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 873117210500. Starting simulation... +switching cpus +info: Entering event queue @ 874023460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 875023460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 876023460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 877023460500. Starting simulation... +switching cpus +info: Entering event queue @ 877929710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 878929710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 879929710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 880929710500. Starting simulation... +switching cpus +info: Entering event queue @ 881835960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 882835960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 883835960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 884835960500. Starting simulation... +switching cpus +info: Entering event queue @ 885742210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 886742210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 887742210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 888742210500. Starting simulation... +switching cpus +info: Entering event queue @ 889648460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 890648460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 891648460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 892648460500. Starting simulation... +switching cpus +info: Entering event queue @ 893554710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 894554710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 895554710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 896554710500. Starting simulation... +switching cpus +info: Entering event queue @ 897460960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 898460960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 899460960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 900460960500. Starting simulation... +switching cpus +info: Entering event queue @ 901367210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 902367210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 903367210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 904367210500. Starting simulation... +switching cpus +info: Entering event queue @ 905273460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 906273460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 907273460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 908273460500. Starting simulation... +switching cpus +info: Entering event queue @ 909179710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 910179710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 911179710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 912179710500. Starting simulation... +switching cpus +info: Entering event queue @ 913085960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 914085960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 915085960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 916085960500. Starting simulation... +switching cpus +info: Entering event queue @ 916992210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 917992210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 918992210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 919992210500. Starting simulation... +switching cpus +info: Entering event queue @ 920898460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 921898460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 922898460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 923898460500. Starting simulation... +switching cpus +info: Entering event queue @ 924804710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 925804710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 926804710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 927804710500. Starting simulation... +switching cpus +info: Entering event queue @ 928710960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 929710960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 930710960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 931710960500. Starting simulation... +switching cpus +info: Entering event queue @ 932617210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 933617210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 934617210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 935617210500. Starting simulation... +switching cpus +info: Entering event queue @ 936523460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 937523460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 938523460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 939523460500. Starting simulation... +switching cpus +info: Entering event queue @ 940429710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 941429710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 942429710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 943429710500. Starting simulation... +switching cpus +info: Entering event queue @ 944335960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 945335960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 946335960500. Starting simulation... +switching cpus +info: Entering event queue @ 946335961500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 947335961500. Starting simulation... +switching cpus +info: Entering event queue @ 948242210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 949242210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 950242210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 951242210500. Starting simulation... +switching cpus +info: Entering event queue @ 952148460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 953148460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 954148460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 955148460500. Starting simulation... +switching cpus +info: Entering event queue @ 956054710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 957054710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 958054710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 959054710500. Starting simulation... +switching cpus +info: Entering event queue @ 959960960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 960960960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 961960960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 962960960500. Starting simulation... +switching cpus +info: Entering event queue @ 963867210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 964867210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 965867210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 966867210500. Starting simulation... +switching cpus +info: Entering event queue @ 967773460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 968773460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 969773460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 970773460500. Starting simulation... +switching cpus +info: Entering event queue @ 971679710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 972679710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 973679710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 974679710500. Starting simulation... +switching cpus +info: Entering event queue @ 975585960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 976585960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 977585960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 978585960500. Starting simulation... +switching cpus +info: Entering event queue @ 979492210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 980492210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 981492210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 982492210500. Starting simulation... +switching cpus +info: Entering event queue @ 983398460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 984398460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 985398460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 986398460500. Starting simulation... +switching cpus +info: Entering event queue @ 987304710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 988304710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 989304710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 990304710500. Starting simulation... +switching cpus +info: Entering event queue @ 991210960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 992210960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 993210960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 994210960500. Starting simulation... +switching cpus +info: Entering event queue @ 995117210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 996117210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 997117210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 998117210500. Starting simulation... +switching cpus +info: Entering event queue @ 999023460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1000023460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1001023460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1002023460500. Starting simulation... +switching cpus +info: Entering event queue @ 1002929710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1003929710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1004929710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1005929710500. Starting simulation... +switching cpus +info: Entering event queue @ 1006835960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1007835960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1008835960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1009835960500. Starting simulation... +switching cpus +info: Entering event queue @ 1010742210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1011742210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1012742210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1013742210500. Starting simulation... +switching cpus +info: Entering event queue @ 1014648460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1015648460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1016648460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1017648460500. Starting simulation... +switching cpus +info: Entering event queue @ 1018554710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1019554710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1020554710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1021554710500. Starting simulation... +switching cpus +info: Entering event queue @ 1022460960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1023460960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1024460960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1025460960500. Starting simulation... +switching cpus +info: Entering event queue @ 1026367210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1027367210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1028367210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1029367210500. Starting simulation... +switching cpus +info: Entering event queue @ 1030273460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1031273460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1032273460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1033273460500. Starting simulation... +switching cpus +info: Entering event queue @ 1034179710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1035179710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1036179710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1037179710500. Starting simulation... +switching cpus +info: Entering event queue @ 1038085960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1039085960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1040085960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1041085960500. Starting simulation... +switching cpus +info: Entering event queue @ 1041992210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1042992210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1043992210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1044992210500. Starting simulation... +switching cpus +info: Entering event queue @ 1045898460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1046898460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1047898460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1048898460500. Starting simulation... +switching cpus +info: Entering event queue @ 1049804710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1050804710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1051804710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1052804710500. Starting simulation... +switching cpus +info: Entering event queue @ 1053710960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1054710960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1055710960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1056710960500. Starting simulation... +switching cpus +info: Entering event queue @ 1057617210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1058617210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1059617210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1060617210500. Starting simulation... +switching cpus +info: Entering event queue @ 1061523460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1062523460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1063523460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1064523460500. Starting simulation... +switching cpus +info: Entering event queue @ 1065429710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1066429710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1067429710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1068429710500. Starting simulation... +switching cpus +info: Entering event queue @ 1069335960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1070335960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1071335960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1072335960500. Starting simulation... +switching cpus +info: Entering event queue @ 1073242210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1074242210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1075242210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1076242210500. Starting simulation... +switching cpus +info: Entering event queue @ 1077148460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1078148460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1079148460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1080148460500. Starting simulation... +switching cpus +info: Entering event queue @ 1081054710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1082054710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1083054710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1084054710500. Starting simulation... +switching cpus +info: Entering event queue @ 1084960960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1085960960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1086960960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1087960960500. Starting simulation... +switching cpus +info: Entering event queue @ 1088867210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1089867210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1090867210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1091867210500. Starting simulation... +switching cpus +info: Entering event queue @ 1092773460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1093773460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1094773460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1095773460500. Starting simulation... +switching cpus +info: Entering event queue @ 1096679710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1097679710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1098679710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1099679710500. Starting simulation... +switching cpus +info: Entering event queue @ 1100585960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1101585960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1102585960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1103585960500. Starting simulation... +switching cpus +info: Entering event queue @ 1104492210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1105492210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1106492210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1107492210500. Starting simulation... +switching cpus +info: Entering event queue @ 1108398460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1109398460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1110398460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1111398460500. Starting simulation... +switching cpus +info: Entering event queue @ 1112304710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1113304710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1114304710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1115304710500. Starting simulation... +switching cpus +info: Entering event queue @ 1116210960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1117210960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1118210960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1119210960500. Starting simulation... +switching cpus +info: Entering event queue @ 1120117210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1121117210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1122117210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1123117210500. Starting simulation... +switching cpus +info: Entering event queue @ 1124023460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1125023460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1126023460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1127023460500. Starting simulation... +switching cpus +info: Entering event queue @ 1127929710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1128929710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1129929710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1130929710500. Starting simulation... +switching cpus +info: Entering event queue @ 1131835960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1132835960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1133835960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1134835960500. Starting simulation... +switching cpus +info: Entering event queue @ 1135742210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1136742210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1137742210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1138742210500. Starting simulation... +switching cpus +info: Entering event queue @ 1139648460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1140648460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1141648460500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1142648460500. Starting simulation... +switching cpus +info: Entering event queue @ 1143554710500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1144554710500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1145554710500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1146554710500. Starting simulation... +switching cpus +info: Entering event queue @ 1147460960500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1148460960500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1149460960500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1150460960500. Starting simulation... +switching cpus +info: Entering event queue @ 1151367210500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1152367210500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1153367210500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1154367210500. Starting simulation... +switching cpus +info: Entering event queue @ 1155273460500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1156273460500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1157273460500. Starting simulation... +switching cpus +info: Entering event queue @ 1157273461500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1158273461500. Starting simulation... +switching cpus +info: Entering event queue @ 1159361690000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1160361690000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1161361690000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1162361690000. Starting simulation... +switching cpus +info: Entering event queue @ 1162361693000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1163361693000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1164361693000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1165361693000. Starting simulation... +switching cpus +info: Entering event queue @ 1165361696000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1166361696000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1167361696000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1168361696000. Starting simulation... +switching cpus +info: Entering event queue @ 1168945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1169945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1170945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1171945335500. Starting simulation... +switching cpus +info: Entering event queue @ 1172851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1173851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1174851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1175851585500. Starting simulation... +switching cpus +info: Entering event queue @ 1176757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1177757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1178757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1179757835500. Starting simulation... +switching cpus +info: Entering event queue @ 1180664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1181664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1182664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1183664085500. Starting simulation... +switching cpus +info: Entering event queue @ 1184570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1185570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1186570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1187570335500. Starting simulation... +switching cpus +info: Entering event queue @ 1188476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1189476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1190476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1191476585500. Starting simulation... +switching cpus +info: Entering event queue @ 1192382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1193382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1194382835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1195382835500. Starting simulation... +switching cpus +info: Entering event queue @ 1196289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1197289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1198289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1199289085500. Starting simulation... +switching cpus +info: Entering event queue @ 1200195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1201195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1202195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1203195335500. Starting simulation... +switching cpus +info: Entering event queue @ 1204101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1205101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1206101585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1207101585500. Starting simulation... +switching cpus +info: Entering event queue @ 1208007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1209007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1210007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1211007835500. Starting simulation... +switching cpus +info: Entering event queue @ 1211914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1212914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1213914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1214914085500. Starting simulation... +switching cpus +info: Entering event queue @ 1215820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1216820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1217820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1218820335500. Starting simulation... +switching cpus +info: Entering event queue @ 1219726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1220726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1221726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1222726585500. Starting simulation... +switching cpus +info: Entering event queue @ 1223632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1224632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1225632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1226632835500. Starting simulation... +switching cpus +info: Entering event queue @ 1227539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1228539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1229539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1230539085500. Starting simulation... +switching cpus +info: Entering event queue @ 1231445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1232445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1233445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1234445335500. Starting simulation... +switching cpus +info: Entering event queue @ 1235351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1236351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1237351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1238351585500. Starting simulation... +switching cpus +info: Entering event queue @ 1239257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1240257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1241257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1242257835500. Starting simulation... +switching cpus +info: Entering event queue @ 1243164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1244164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1245164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1246164085500. Starting simulation... +switching cpus +info: Entering event queue @ 1247070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1248070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1249070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1250070335500. Starting simulation... +switching cpus +info: Entering event queue @ 1250976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1251976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1252976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1253976585500. Starting simulation... +switching cpus +info: Entering event queue @ 1254882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1255882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1256882835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1257882835500. Starting simulation... +switching cpus +info: Entering event queue @ 1258789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1259789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1260789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1261789085500. Starting simulation... +switching cpus +info: Entering event queue @ 1262695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1263695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1264695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1265695335500. Starting simulation... +switching cpus +info: Entering event queue @ 1266601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1267601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1268601585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1269601585500. Starting simulation... +switching cpus +info: Entering event queue @ 1270507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1271507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1272507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1273507835500. Starting simulation... +switching cpus +info: Entering event queue @ 1274414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1275414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1276414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1277414085500. Starting simulation... +switching cpus +info: Entering event queue @ 1278320335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1279320335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1280320335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1281320335500. Starting simulation... +switching cpus +info: Entering event queue @ 1282226585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1283226585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1284226585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1285226585500. Starting simulation... +switching cpus +info: Entering event queue @ 1286132835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1287132835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1288132835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1289132835500. Starting simulation... +switching cpus +info: Entering event queue @ 1290039085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1291039085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1292039085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1293039085500. Starting simulation... +switching cpus +info: Entering event queue @ 1293945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1294945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1295945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1296945335500. Starting simulation... +switching cpus +info: Entering event queue @ 1297851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1298851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1299851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1300851585500. Starting simulation... +switching cpus +info: Entering event queue @ 1301757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1302757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1303757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1304757835500. Starting simulation... +switching cpus +info: Entering event queue @ 1305664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1306664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1307664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1308664085500. Starting simulation... +switching cpus +info: Entering event queue @ 1309570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1310570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1311570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1312570335500. Starting simulation... +switching cpus +info: Entering event queue @ 1313476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1314476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1315476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1316476585500. Starting simulation... +switching cpus +info: Entering event queue @ 1317382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1318382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1319382835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1320382835500. Starting simulation... +switching cpus +info: Entering event queue @ 1321289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1322289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1323289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1324289085500. Starting simulation... +switching cpus +info: Entering event queue @ 1325195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1326195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1327195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1328195335500. Starting simulation... +switching cpus +info: Entering event queue @ 1329101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1330101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1331101585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1332101585500. Starting simulation... +switching cpus +info: Entering event queue @ 1333007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1334007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1335007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1336007835500. Starting simulation... +switching cpus +info: Entering event queue @ 1336914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1337914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1338914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1339914085500. Starting simulation... +switching cpus +info: Entering event queue @ 1340820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1341820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1342820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1343820335500. Starting simulation... +switching cpus +info: Entering event queue @ 1344726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1345726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1346726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1347726585500. Starting simulation... +switching cpus +info: Entering event queue @ 1348632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1349632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1350632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1351632835500. Starting simulation... +switching cpus +info: Entering event queue @ 1352539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1353539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1354539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1355539085500. Starting simulation... +switching cpus +info: Entering event queue @ 1356445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1357445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1358445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1359445335500. Starting simulation... +switching cpus +info: Entering event queue @ 1360351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1361351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1362351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1363351585500. Starting simulation... +switching cpus +info: Entering event queue @ 1364257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1365257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1366257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1367257835500. Starting simulation... +switching cpus +info: Entering event queue @ 1368164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1369164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1370164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1371164085500. Starting simulation... +switching cpus +info: Entering event queue @ 1372070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1373070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1374070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1375070335500. Starting simulation... +switching cpus +info: Entering event queue @ 1375976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1376976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1377976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1378976585500. Starting simulation... +switching cpus +info: Entering event queue @ 1379882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1380882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1381882835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1382882835500. Starting simulation... +switching cpus +info: Entering event queue @ 1383789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1384789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1385789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1386789085500. Starting simulation... +switching cpus +info: Entering event queue @ 1387695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1388695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1389695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1390695335500. Starting simulation... +switching cpus +info: Entering event queue @ 1391601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1392601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1393601585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1394601585500. Starting simulation... +switching cpus +info: Entering event queue @ 1395507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1396507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1397507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1398507835500. Starting simulation... +switching cpus +info: Entering event queue @ 1399414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1400414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1401414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1402414085500. Starting simulation... +switching cpus +info: Entering event queue @ 1403320335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1404320335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1405320335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1406320335500. Starting simulation... +switching cpus +info: Entering event queue @ 1407226585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1408226585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1409226585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1410226585500. Starting simulation... +switching cpus +info: Entering event queue @ 1411132835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1412132835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1413132835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1414132835500. Starting simulation... +switching cpus +info: Entering event queue @ 1415039085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1416039085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1417039085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1418039085500. Starting simulation... +switching cpus +info: Entering event queue @ 1418945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1419945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1420945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1421945335500. Starting simulation... +switching cpus +info: Entering event queue @ 1422851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1423851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1424851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1425851585500. Starting simulation... +switching cpus +info: Entering event queue @ 1426757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1427757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1428757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1429757835500. Starting simulation... +switching cpus +info: Entering event queue @ 1430664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1431664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1432664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1433664085500. Starting simulation... +switching cpus +info: Entering event queue @ 1434570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1435570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1436570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1437570335500. Starting simulation... +switching cpus +info: Entering event queue @ 1438476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1439476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1440476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1441476585500. Starting simulation... +switching cpus +info: Entering event queue @ 1442382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1443382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1444382835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1445382835500. Starting simulation... +switching cpus +info: Entering event queue @ 1446289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1447289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1448289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1449289085500. Starting simulation... +switching cpus +info: Entering event queue @ 1450195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1451195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1452195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1453195335500. Starting simulation... +switching cpus +info: Entering event queue @ 1454101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1455101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1456101585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1457101585500. Starting simulation... +switching cpus +info: Entering event queue @ 1458007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1459007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1460007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1461007835500. Starting simulation... +switching cpus +info: Entering event queue @ 1461914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1462914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1463914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1464914085500. Starting simulation... +switching cpus +info: Entering event queue @ 1465820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1466820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1467820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1468820335500. Starting simulation... +switching cpus +info: Entering event queue @ 1469726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1470726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1471726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1472726585500. Starting simulation... +switching cpus +info: Entering event queue @ 1473632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1474632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1475632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1476632835500. Starting simulation... +switching cpus +info: Entering event queue @ 1477539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1478539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1479539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1480539085500. Starting simulation... +switching cpus +info: Entering event queue @ 1481445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1482445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1483445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1484445335500. Starting simulation... +switching cpus +info: Entering event queue @ 1485351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1486351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1487351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1488351585500. Starting simulation... +switching cpus +info: Entering event queue @ 1489257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1490257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1491257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1492257835500. Starting simulation... +switching cpus +info: Entering event queue @ 1493164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1494164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1495164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1496164085500. Starting simulation... +switching cpus +info: Entering event queue @ 1497070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1498070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1499070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1500070335500. Starting simulation... +switching cpus +info: Entering event queue @ 1500976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1501976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1502976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1503976585500. Starting simulation... +switching cpus +info: Entering event queue @ 1504882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1505882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1506882835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1507882835500. Starting simulation... +switching cpus +info: Entering event queue @ 1508789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1509789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1510789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1511789085500. Starting simulation... +switching cpus +info: Entering event queue @ 1512695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1513695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1514695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1515695335500. Starting simulation... +switching cpus +info: Entering event queue @ 1516601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1517601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1518601585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1519601585500. Starting simulation... +switching cpus +info: Entering event queue @ 1520507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1521507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1522507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1523507835500. Starting simulation... +switching cpus +info: Entering event queue @ 1524414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1525414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1526414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1527414085500. Starting simulation... +switching cpus +info: Entering event queue @ 1528320335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1529320335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1530320335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1531320335500. Starting simulation... +switching cpus +info: Entering event queue @ 1532226585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1533226585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1534226585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1535226585500. Starting simulation... +switching cpus +info: Entering event queue @ 1536132835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1537132835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1538132835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1539132835500. Starting simulation... +switching cpus +info: Entering event queue @ 1540039085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1541039085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1542039085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1543039085500. Starting simulation... +switching cpus +info: Entering event queue @ 1543945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1544945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1545945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1546945335500. Starting simulation... +switching cpus +info: Entering event queue @ 1547851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1548851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1549851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1550851585500. Starting simulation... +switching cpus +info: Entering event queue @ 1551757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1552757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1553757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1554757835500. Starting simulation... +switching cpus +info: Entering event queue @ 1555664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1556664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1557664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1558664085500. Starting simulation... +switching cpus +info: Entering event queue @ 1559570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1560570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1561570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1562570335500. Starting simulation... +switching cpus +info: Entering event queue @ 1563476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1564476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1565476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1566476585500. Starting simulation... +switching cpus +info: Entering event queue @ 1567382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1568382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1569382835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1570382835500. Starting simulation... +switching cpus +info: Entering event queue @ 1571289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1572289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1573289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1574289085500. Starting simulation... +switching cpus +info: Entering event queue @ 1575195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1576195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1577195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1578195335500. Starting simulation... +switching cpus +info: Entering event queue @ 1579101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1580101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1581101585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1582101585500. Starting simulation... +switching cpus +info: Entering event queue @ 1583007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1584007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1585007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1586007835500. Starting simulation... +switching cpus +info: Entering event queue @ 1586914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1587914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1588914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1589914085500. Starting simulation... +switching cpus +info: Entering event queue @ 1590820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1591820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1592820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1593820335500. Starting simulation... +switching cpus +info: Entering event queue @ 1594726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1595726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1596726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1597726585500. Starting simulation... +switching cpus +info: Entering event queue @ 1598632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1599632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1600632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1601632835500. Starting simulation... +switching cpus +info: Entering event queue @ 1602539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1603539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1604539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1605539085500. Starting simulation... +switching cpus +info: Entering event queue @ 1606445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1607445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1608445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1609445335500. Starting simulation... +switching cpus +info: Entering event queue @ 1610351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1611351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1612351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1613351585500. Starting simulation... +switching cpus +info: Entering event queue @ 1614257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1615257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1616257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1617257835500. Starting simulation... +switching cpus +info: Entering event queue @ 1618164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1619164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1620164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1621164085500. Starting simulation... +switching cpus +info: Entering event queue @ 1622070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1623070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1624070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1625070335500. Starting simulation... +switching cpus +info: Entering event queue @ 1625976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1626976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1627976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1628976585500. Starting simulation... +switching cpus +info: Entering event queue @ 1629882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1630882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1631882835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1632882835500. Starting simulation... +switching cpus +info: Entering event queue @ 1633789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1634789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1635789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1636789085500. Starting simulation... +switching cpus +info: Entering event queue @ 1637695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1638695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1639695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1640695335500. Starting simulation... +switching cpus +info: Entering event queue @ 1641601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1642601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1643601585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1644601585500. Starting simulation... +switching cpus +info: Entering event queue @ 1645507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1646507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1647507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1648507835500. Starting simulation... +switching cpus +info: Entering event queue @ 1649414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1650414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1651414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1652414085500. Starting simulation... +switching cpus +info: Entering event queue @ 1653320335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1654320335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1655320335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1656320335500. Starting simulation... +switching cpus +info: Entering event queue @ 1657226585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1658226585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1659226585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1660226585500. Starting simulation... +switching cpus +info: Entering event queue @ 1661132835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1662132835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1663132835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1664132835500. Starting simulation... +switching cpus +info: Entering event queue @ 1665039085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1666039085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1667039085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1668039085500. Starting simulation... +switching cpus +info: Entering event queue @ 1668945335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1669945335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1670945335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1671945335500. Starting simulation... +switching cpus +info: Entering event queue @ 1672851585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1673851585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1674851585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1675851585500. Starting simulation... +switching cpus +info: Entering event queue @ 1676757835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1677757835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1678757835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1679757835500. Starting simulation... +switching cpus +info: Entering event queue @ 1680664085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1681664085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1682664085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1683664085500. Starting simulation... +switching cpus +info: Entering event queue @ 1684570335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1685570335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1686570335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1687570335500. Starting simulation... +switching cpus +info: Entering event queue @ 1688476585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1689476585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1690476585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1691476585500. Starting simulation... +switching cpus +info: Entering event queue @ 1692382835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1693382835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1694382835500. Starting simulation... +switching cpus +info: Entering event queue @ 1694382836500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1695382836500. Starting simulation... +switching cpus +info: Entering event queue @ 1696289085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1697289085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1698289085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1699289085500. Starting simulation... +switching cpus +info: Entering event queue @ 1700195335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1701195335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1702195335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1703195335500. Starting simulation... +switching cpus +info: Entering event queue @ 1704101585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1705101585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1706101585500. Starting simulation... +switching cpus +info: Entering event queue @ 1706101586500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1707101586500. Starting simulation... +switching cpus +info: Entering event queue @ 1708007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1709007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1710007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1711007835500. Starting simulation... +switching cpus +info: Entering event queue @ 1711914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1712914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1713914085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1714914085500. Starting simulation... +switching cpus +info: Entering event queue @ 1715820335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1716820335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1717820335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1718820335500. Starting simulation... +switching cpus +info: Entering event queue @ 1719726585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1720726585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1721726585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1722726585500. Starting simulation... +switching cpus +info: Entering event queue @ 1723632835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1724632835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1725632835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1726632835500. Starting simulation... +switching cpus +info: Entering event queue @ 1727539085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1728539085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1729539085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1730539085500. Starting simulation... +switching cpus +info: Entering event queue @ 1731445335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1732445335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1733445335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1734445335500. Starting simulation... +switching cpus +info: Entering event queue @ 1735351585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1736351585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1737351585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1738351585500. Starting simulation... +switching cpus +info: Entering event queue @ 1739257835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1740257835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1741257835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1742257835500. Starting simulation... +switching cpus +info: Entering event queue @ 1743164085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1744164085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1745164085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1746164085500. Starting simulation... +switching cpus +info: Entering event queue @ 1747070335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1748070335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1749070335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1750070335500. Starting simulation... +switching cpus +info: Entering event queue @ 1750976585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1751976585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1752976585500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1753976585500. Starting simulation... +switching cpus +info: Entering event queue @ 1754882835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1755882835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1756882835500. Starting simulation... +switching cpus +info: Entering event queue @ 1756882836500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1757882836500. Starting simulation... +switching cpus +info: Entering event queue @ 1758789085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1759789085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1760789085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1761789085500. Starting simulation... +switching cpus +info: Entering event queue @ 1762695335500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1763695335500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1764695335500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1765695335500. Starting simulation... +switching cpus +info: Entering event queue @ 1766601585500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1767601585500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1768601585500. Starting simulation... +switching cpus +info: Entering event queue @ 1768601586500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1769601586500. Starting simulation... +switching cpus +info: Entering event queue @ 1770507835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1771507835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1772507835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1773507835500. Starting simulation... +switching cpus +info: Entering event queue @ 1774414085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1775414085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1776414085500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1777414085500. Starting simulation... +switching cpus +info: Entering event queue @ 1777414489000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1778414489000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1779414489000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1780414489000. Starting simulation... +switching cpus +info: Entering event queue @ 1781250023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1782250023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1783250023000. Starting simulation... +switching cpus +info: Entering event queue @ 1783250024000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1784250024000. Starting simulation... +switching cpus +info: Entering event queue @ 1785156273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1786156273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1787156273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1788156273000. Starting simulation... +switching cpus +info: Entering event queue @ 1789062523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1790062523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1791062523000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1792062523000. Starting simulation... +switching cpus +info: Entering event queue @ 1792968773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1793968773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1794968773000. Starting simulation... +switching cpus +info: Entering event queue @ 1794968774000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1795968774000. Starting simulation... +switching cpus +info: Entering event queue @ 1796875023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1797875023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1798875023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1799875023000. Starting simulation... +switching cpus +info: Entering event queue @ 1800781273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1801781273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1802781273000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1803781273000. Starting simulation... +switching cpus +info: Entering event queue @ 1804687523000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1805687523000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1806687523000. Starting simulation... +switching cpus +info: Entering event queue @ 1806687524000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1807687524000. Starting simulation... +switching cpus +info: Entering event queue @ 1808593773000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1809593773000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1810593773000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1811593773000. Starting simulation... +switching cpus +info: Entering event queue @ 1812500023000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1813500023000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1814500023000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1815500023000. Starting simulation... +switching cpus +info: Entering event queue @ 1816406273000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1817406273000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1818406273000. Starting simulation... +switching cpus +info: Entering event queue @ 1818406274000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1819406274000. Starting simulation... +switching cpus +info: Entering event queue @ 1819406280500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1820406280500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1821406280500. Starting simulation... +switching cpus +info: Entering event queue @ 1821406281500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1822406281500. Starting simulation... +info: Entering event queue @ 1822406288500. Starting simulation... +switching cpus +info: Entering event queue @ 1822406293000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1823406293000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1824406293000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1825406293000. Starting simulation... +switching cpus +info: Entering event queue @ 1826171898000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1827171898000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1828171898000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1829171898000. Starting simulation... +info: Entering event queue @ 1829171911500. Starting simulation... +info: Entering event queue @ 1829171916500. Starting simulation... +switching cpus +info: Entering event queue @ 1829171921000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1830171921000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1831171921000. Starting simulation... +switching cpus +info: Entering event queue @ 1831171922000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1832171922000. Starting simulation... +switching cpus +info: Entering event queue @ 1833007835500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1834007835500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1835007835500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1836007835500. Starting simulation... +switching cpus +info: Entering event queue @ 1836914085500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1837914085500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1838914085500. Starting simulation... +switching cpus +info: Entering event queue @ 1838914086500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1839914086500. Starting simulation... +switching cpus +info: Entering event queue @ 1839914091000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1840914091000. Starting simulation... diff --git a/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/stats.txt b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/stats.txt new file mode 100644 index 000000000..1c485a623 --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/stats.txt @@ -0,0 +1,1554 @@ + +---------- Begin Simulation Statistics ---------- +sim_seconds 1.841682 # Number of seconds simulated +sim_ticks 1841681669500 # Number of ticks simulated +final_tick 1841681669500 # Number of ticks from beginning of simulation (restored from checkpoints and never reset) +sim_freq 1000000000000 # Frequency of simulated ticks +host_inst_rate 340900 # Simulator instruction rate (inst/s) +host_op_rate 340900 # Simulator op (including micro ops) rate (op/s) +host_tick_rate 9082220288 # Simulator tick rate (ticks/s) +host_mem_usage 309920 # Number of bytes of host memory used +host_seconds 202.78 # Real time elapsed on the host +sim_insts 69127289 # Number of instructions simulated +sim_ops 69127289 # Number of ops (including micro ops) simulated +system.physmem.bytes_read::cpu0.inst 474944 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.data 19316864 # Number of bytes read from this memory +system.physmem.bytes_read::tsunami.ide 2652288 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.inst 149888 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.data 2832832 # Number of bytes read from this memory +system.physmem.bytes_read::cpu2.inst 295936 # Number of bytes read from this memory +system.physmem.bytes_read::cpu2.data 2722176 # Number of bytes read from this memory +system.physmem.bytes_read::total 28444928 # Number of bytes read from this memory +system.physmem.bytes_inst_read::cpu0.inst 474944 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::cpu1.inst 149888 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::cpu2.inst 295936 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::total 920768 # Number of instructions bytes read from this memory +system.physmem.bytes_written::writebacks 7479680 # Number of bytes written to this memory +system.physmem.bytes_written::total 7479680 # Number of bytes written to this memory +system.physmem.num_reads::cpu0.inst 7421 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.data 301826 # Number of read requests responded to by this memory +system.physmem.num_reads::tsunami.ide 41442 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.inst 2342 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.data 44263 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu2.inst 4624 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu2.data 42534 # Number of read requests responded to by this memory +system.physmem.num_reads::total 444452 # Number of read requests responded to by this memory +system.physmem.num_writes::writebacks 116870 # Number of write requests responded to by this memory +system.physmem.num_writes::total 116870 # Number of write requests responded to by this memory +system.physmem.bw_read::cpu0.inst 257886 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.data 10488709 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::tsunami.ide 1440145 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.inst 81386 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.data 1538177 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu2.inst 160688 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu2.data 1478093 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::total 15445084 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu0.inst 257886 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu1.inst 81386 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu2.inst 160688 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::total 499960 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_write::writebacks 4061332 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::total 4061332 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_total::writebacks 4061332 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.inst 257886 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.data 10488709 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::tsunami.ide 1440145 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.inst 81386 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.data 1538177 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu2.inst 160688 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu2.data 1478093 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::total 19506416 # Total bandwidth to/from this memory (bytes/s) +system.physmem.readReqs 111038 # Total number of read requests seen +system.physmem.writeReqs 46173 # Total number of write requests seen +system.physmem.cpureqs 157553 # Reqs generatd by CPU via cache - shady +system.physmem.bytesRead 7106432 # Total number of bytes read from memory +system.physmem.bytesWritten 2955072 # Total number of bytes written to memory +system.physmem.bytesConsumedRd 7106432 # bytesRead derated as per pkt->getSize() +system.physmem.bytesConsumedWr 2955072 # bytesWritten derated as per pkt->getSize() +system.physmem.servicedByWrQ 7 # Number of read reqs serviced by write Q +system.physmem.neitherReadNorWrite 41 # Reqs where no action is needed +system.physmem.perBankRdReqs::0 7075 # Track reads on a per bank basis +system.physmem.perBankRdReqs::1 6835 # Track reads on a per bank basis +system.physmem.perBankRdReqs::2 6921 # Track reads on a per bank basis +system.physmem.perBankRdReqs::3 6580 # Track reads on a per bank basis +system.physmem.perBankRdReqs::4 7013 # Track reads on a per bank basis +system.physmem.perBankRdReqs::5 7160 # Track reads on a per bank basis +system.physmem.perBankRdReqs::6 7199 # Track reads on a per bank basis +system.physmem.perBankRdReqs::7 7176 # Track reads on a per bank basis +system.physmem.perBankRdReqs::8 6821 # Track reads on a per bank basis +system.physmem.perBankRdReqs::9 6547 # Track reads on a per bank basis +system.physmem.perBankRdReqs::10 6956 # Track reads on a per bank basis +system.physmem.perBankRdReqs::11 7030 # Track reads on a per bank basis +system.physmem.perBankRdReqs::12 7021 # Track reads on a per bank basis +system.physmem.perBankRdReqs::13 7068 # Track reads on a per bank basis +system.physmem.perBankRdReqs::14 6779 # Track reads on a per bank basis +system.physmem.perBankRdReqs::15 6850 # Track reads on a per bank basis +system.physmem.perBankWrReqs::0 3087 # Track writes on a per bank basis +system.physmem.perBankWrReqs::1 2885 # Track writes on a per bank basis +system.physmem.perBankWrReqs::2 2926 # Track writes on a per bank basis +system.physmem.perBankWrReqs::3 2583 # Track writes on a per bank basis +system.physmem.perBankWrReqs::4 2986 # Track writes on a per bank basis +system.physmem.perBankWrReqs::5 3014 # Track writes on a per bank basis +system.physmem.perBankWrReqs::6 3032 # Track writes on a per bank basis +system.physmem.perBankWrReqs::7 2994 # Track writes on a per bank basis +system.physmem.perBankWrReqs::8 2761 # Track writes on a per bank basis +system.physmem.perBankWrReqs::9 2529 # Track writes on a per bank basis +system.physmem.perBankWrReqs::10 2745 # Track writes on a per bank basis +system.physmem.perBankWrReqs::11 2938 # Track writes on a per bank basis +system.physmem.perBankWrReqs::12 3117 # Track writes on a per bank basis +system.physmem.perBankWrReqs::13 3088 # Track writes on a per bank basis +system.physmem.perBankWrReqs::14 2763 # Track writes on a per bank basis +system.physmem.perBankWrReqs::15 2725 # Track writes on a per bank basis +system.physmem.numRdRetry 0 # Number of times rd buffer was full causing retry +system.physmem.numWrRetry 141 # Number of times wr buffer was full causing retry +system.physmem.totGap 1840669582000 # Total gap between requests +system.physmem.readPktSize::0 0 # Categorize read packet sizes +system.physmem.readPktSize::1 0 # Categorize read packet sizes +system.physmem.readPktSize::2 0 # Categorize read packet sizes +system.physmem.readPktSize::3 0 # Categorize read packet sizes +system.physmem.readPktSize::4 0 # Categorize read packet sizes +system.physmem.readPktSize::5 0 # Categorize read packet sizes +system.physmem.readPktSize::6 111038 # Categorize read packet sizes +system.physmem.readPktSize::7 0 # Categorize read packet sizes +system.physmem.readPktSize::8 0 # Categorize read packet sizes +system.physmem.writePktSize::0 0 # categorize write packet sizes +system.physmem.writePktSize::1 0 # categorize write packet sizes +system.physmem.writePktSize::2 0 # categorize write packet sizes +system.physmem.writePktSize::3 0 # categorize write packet sizes +system.physmem.writePktSize::4 0 # categorize write packet sizes +system.physmem.writePktSize::5 0 # categorize write packet sizes +system.physmem.writePktSize::6 46314 # categorize write packet sizes +system.physmem.writePktSize::7 0 # categorize write packet sizes +system.physmem.writePktSize::8 0 # categorize write packet sizes +system.physmem.neitherpktsize::0 0 # categorize neither packet sizes +system.physmem.neitherpktsize::1 0 # categorize neither packet sizes +system.physmem.neitherpktsize::2 0 # categorize neither packet sizes +system.physmem.neitherpktsize::3 0 # categorize neither packet sizes +system.physmem.neitherpktsize::4 0 # categorize neither packet sizes +system.physmem.neitherpktsize::5 0 # categorize neither packet sizes +system.physmem.neitherpktsize::6 41 # categorize neither packet sizes +system.physmem.neitherpktsize::7 0 # categorize neither packet sizes +system.physmem.neitherpktsize::8 0 # categorize neither packet sizes +system.physmem.rdQLenPdf::0 82621 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::1 10884 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::2 5829 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::3 1945 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::4 1200 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::5 997 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::6 753 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::7 844 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::8 697 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::9 809 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::10 664 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::11 650 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::12 686 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::13 750 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::14 521 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::15 613 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::16 369 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::17 106 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::18 53 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::19 38 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::20 2 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::21 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::22 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::23 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::24 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::25 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::26 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::27 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::28 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::29 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::30 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::31 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::32 0 # What read queue length does an incoming req see +system.physmem.wrQLenPdf::0 1636 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::1 1922 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::2 1953 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::3 1976 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::4 2005 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::5 2005 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::6 2016 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::7 2010 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::8 2008 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::9 2007 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::10 2004 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::11 2002 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::12 2001 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::13 1999 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::14 1997 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::15 1996 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::16 1995 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::17 1993 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::18 1992 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::19 1989 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::20 1988 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::21 1988 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::22 1986 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::23 425 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::24 116 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::25 76 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::26 50 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::27 18 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::28 15 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::29 2 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::30 2 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::31 1 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::32 0 # What write queue length does an incoming req see +system.physmem.totQLat 1659441821 # Total cycles spent in queuing delays +system.physmem.totMemAccLat 3549387821 # Sum of mem lat for all requests +system.physmem.totBusLat 444124000 # Total cycles spent in databus access +system.physmem.totBankLat 1445822000 # Total cycles spent in bank access +system.physmem.avgQLat 14945.75 # Average queueing delay per request +system.physmem.avgBankLat 13021.79 # Average bank access latency per request +system.physmem.avgBusLat 4000.00 # Average bus latency per request +system.physmem.avgMemAccLat 31967.54 # Average memory access latency +system.physmem.avgRdBW 3.86 # Average achieved read bandwidth in MB/s +system.physmem.avgWrBW 1.60 # Average achieved write bandwidth in MB/s +system.physmem.avgConsumedRdBW 3.86 # Average consumed read bandwidth in MB/s +system.physmem.avgConsumedWrBW 1.60 # Average consumed write bandwidth in MB/s +system.physmem.peakBW 16000.00 # Theoretical peak bandwidth in MB/s +system.physmem.busUtil 0.03 # Data bus utilization in percentage +system.physmem.avgRdQLen 0.00 # Average read queue length over time +system.physmem.avgWrQLen 0.18 # Average write queue length over time +system.physmem.readRowHits 102865 # Number of row buffer hits during reads +system.physmem.writeRowHits 29619 # Number of row buffer hits during writes +system.physmem.readRowHitRate 92.65 # Row buffer hit rate for reads +system.physmem.writeRowHitRate 64.15 # Row buffer hit rate for writes +system.physmem.avgGap 11708274.75 # Average gap between requests +system.l2c.replacements 337510 # number of replacements +system.l2c.tagsinuse 65417.862524 # Cycle average of tags in use +system.l2c.total_refs 2476071 # Total number of references to valid blocks. +system.l2c.sampled_refs 402672 # Sample count of references to valid blocks. +system.l2c.avg_refs 6.149102 # Average number of references to valid blocks. +system.l2c.warmup_cycle 614754000 # Cycle when the warmup percentage was hit. +system.l2c.occ_blocks::writebacks 54764.758873 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.inst 2313.964866 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.data 2687.926844 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.inst 585.029609 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.data 664.408286 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu2.inst 2261.220547 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu2.data 2140.553499 # Average occupied blocks per requestor +system.l2c.occ_percent::writebacks 0.835644 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.inst 0.035308 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.data 0.041015 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.inst 0.008927 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.data 0.010138 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu2.inst 0.034503 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu2.data 0.032662 # Average percentage of cache occupancy +system.l2c.occ_percent::total 0.998197 # Average percentage of cache occupancy +system.l2c.ReadReq_hits::cpu0.inst 513879 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.data 491618 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.inst 126890 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.data 82632 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu2.inst 299640 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu2.data 242724 # number of ReadReq hits +system.l2c.ReadReq_hits::total 1757383 # number of ReadReq hits +system.l2c.Writeback_hits::writebacks 835771 # number of Writeback hits +system.l2c.Writeback_hits::total 835771 # number of Writeback hits +system.l2c.UpgradeReq_hits::cpu0.data 3 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu1.data 1 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu2.data 3 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::total 7 # number of UpgradeReq hits +system.l2c.SCUpgradeReq_hits::cpu2.data 1 # number of SCUpgradeReq hits +system.l2c.SCUpgradeReq_hits::total 1 # number of SCUpgradeReq hits +system.l2c.ReadExReq_hits::cpu0.data 91841 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu1.data 27111 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu2.data 67748 # number of ReadExReq hits +system.l2c.ReadExReq_hits::total 186700 # number of ReadExReq hits +system.l2c.demand_hits::cpu0.inst 513879 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.data 583459 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.inst 126890 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.data 109743 # number of demand (read+write) hits +system.l2c.demand_hits::cpu2.inst 299640 # number of demand (read+write) hits +system.l2c.demand_hits::cpu2.data 310472 # number of demand (read+write) hits +system.l2c.demand_hits::total 1944083 # number of demand (read+write) hits +system.l2c.overall_hits::cpu0.inst 513879 # number of overall hits +system.l2c.overall_hits::cpu0.data 583459 # number of overall hits +system.l2c.overall_hits::cpu1.inst 126890 # number of overall hits +system.l2c.overall_hits::cpu1.data 109743 # number of overall hits +system.l2c.overall_hits::cpu2.inst 299640 # number of overall hits +system.l2c.overall_hits::cpu2.data 310472 # number of overall hits +system.l2c.overall_hits::total 1944083 # number of overall hits +system.l2c.ReadReq_misses::cpu0.inst 7421 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.data 224850 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.inst 2342 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.data 23206 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu2.inst 4624 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu2.data 25196 # number of ReadReq misses +system.l2c.ReadReq_misses::total 287639 # number of ReadReq misses +system.l2c.UpgradeReq_misses::cpu0.data 8 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::cpu2.data 11 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::total 19 # number of UpgradeReq misses +system.l2c.ReadExReq_misses::cpu0.data 77252 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu1.data 21108 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu2.data 17439 # number of ReadExReq misses +system.l2c.ReadExReq_misses::total 115799 # number of ReadExReq misses +system.l2c.demand_misses::cpu0.inst 7421 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.data 302102 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.inst 2342 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.data 44314 # number of demand (read+write) misses +system.l2c.demand_misses::cpu2.inst 4624 # number of demand (read+write) misses +system.l2c.demand_misses::cpu2.data 42635 # number of demand (read+write) misses +system.l2c.demand_misses::total 403438 # number of demand (read+write) misses +system.l2c.overall_misses::cpu0.inst 7421 # number of overall misses +system.l2c.overall_misses::cpu0.data 302102 # number of overall misses +system.l2c.overall_misses::cpu1.inst 2342 # number of overall misses +system.l2c.overall_misses::cpu1.data 44314 # number of overall misses +system.l2c.overall_misses::cpu2.inst 4624 # number of overall misses +system.l2c.overall_misses::cpu2.data 42635 # number of overall misses +system.l2c.overall_misses::total 403438 # number of overall misses +system.l2c.ReadReq_miss_latency::cpu1.inst 130356500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.data 1043168500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu2.inst 266603500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu2.data 1103490500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::total 2543619000 # number of ReadReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu2.data 292500 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::total 292500 # number of UpgradeReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu1.data 1001535000 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu2.data 1445654500 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::total 2447189500 # number of ReadExReq miss cycles +system.l2c.demand_miss_latency::cpu1.inst 130356500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.data 2044703500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu2.inst 266603500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu2.data 2549145000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::total 4990808500 # number of demand (read+write) miss cycles +system.l2c.overall_miss_latency::cpu1.inst 130356500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.data 2044703500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu2.inst 266603500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu2.data 2549145000 # number of overall miss cycles +system.l2c.overall_miss_latency::total 4990808500 # number of overall miss cycles +system.l2c.ReadReq_accesses::cpu0.inst 521300 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.data 716468 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.inst 129232 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.data 105838 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu2.inst 304264 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu2.data 267920 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::total 2045022 # number of ReadReq accesses(hits+misses) +system.l2c.Writeback_accesses::writebacks 835771 # number of Writeback accesses(hits+misses) +system.l2c.Writeback_accesses::total 835771 # number of Writeback accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu0.data 11 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu1.data 1 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu2.data 14 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::total 26 # number of UpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::cpu2.data 1 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::total 1 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu0.data 169093 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu1.data 48219 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu2.data 85187 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::total 302499 # number of ReadExReq accesses(hits+misses) +system.l2c.demand_accesses::cpu0.inst 521300 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.data 885561 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.inst 129232 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.data 154057 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu2.inst 304264 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu2.data 353107 # number of demand (read+write) accesses +system.l2c.demand_accesses::total 2347521 # number of demand (read+write) accesses +system.l2c.overall_accesses::cpu0.inst 521300 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.data 885561 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.inst 129232 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.data 154057 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu2.inst 304264 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu2.data 353107 # number of overall (read+write) accesses +system.l2c.overall_accesses::total 2347521 # number of overall (read+write) accesses +system.l2c.ReadReq_miss_rate::cpu0.inst 0.014236 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.data 0.313831 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.inst 0.018122 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.data 0.219260 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu2.inst 0.015197 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu2.data 0.094043 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::total 0.140653 # miss rate for ReadReq accesses +system.l2c.UpgradeReq_miss_rate::cpu0.data 0.727273 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::cpu2.data 0.785714 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::total 0.730769 # miss rate for UpgradeReq accesses +system.l2c.ReadExReq_miss_rate::cpu0.data 0.456861 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu1.data 0.437753 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu2.data 0.204714 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::total 0.382808 # miss rate for ReadExReq accesses +system.l2c.demand_miss_rate::cpu0.inst 0.014236 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.data 0.341142 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.inst 0.018122 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.data 0.287647 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu2.inst 0.015197 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu2.data 0.120742 # miss rate for demand accesses +system.l2c.demand_miss_rate::total 0.171857 # miss rate for demand accesses +system.l2c.overall_miss_rate::cpu0.inst 0.014236 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.data 0.341142 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.inst 0.018122 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.data 0.287647 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu2.inst 0.015197 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu2.data 0.120742 # miss rate for overall accesses +system.l2c.overall_miss_rate::total 0.171857 # miss rate for overall accesses +system.l2c.ReadReq_avg_miss_latency::cpu1.inst 55660.333049 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.data 44952.533827 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu2.inst 57656.466263 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu2.data 43796.257342 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::total 8843.094991 # average ReadReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu2.data 26590.909091 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::total 15394.736842 # average UpgradeReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu1.data 47448.123934 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu2.data 82897.786570 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::total 21133.079733 # average ReadExReq miss latency +system.l2c.demand_avg_miss_latency::cpu1.inst 55660.333049 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.data 46141.253329 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu2.inst 57656.466263 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu2.data 59789.961299 # average overall miss latency +system.l2c.demand_avg_miss_latency::total 12370.695125 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.inst 55660.333049 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.data 46141.253329 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu2.inst 57656.466263 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu2.data 59789.961299 # average overall miss latency +system.l2c.overall_avg_miss_latency::total 12370.695125 # average overall miss latency +system.l2c.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.l2c.blocked::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked::no_targets 0 # number of cycles access was blocked +system.l2c.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.l2c.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.l2c.fast_writes 0 # number of fast writes performed +system.l2c.cache_copies 0 # number of cache copies performed +system.l2c.writebacks::writebacks 75358 # number of writebacks +system.l2c.writebacks::total 75358 # number of writebacks +system.l2c.ReadReq_mshr_misses::cpu1.inst 2342 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.data 23206 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu2.inst 4624 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu2.data 25196 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::total 55368 # number of ReadReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu2.data 11 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::total 11 # number of UpgradeReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu1.data 21108 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu2.data 17439 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::total 38547 # number of ReadExReq MSHR misses +system.l2c.demand_mshr_misses::cpu1.inst 2342 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.data 44314 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu2.inst 4624 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu2.data 42635 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::total 93915 # number of demand (read+write) MSHR misses +system.l2c.overall_mshr_misses::cpu1.inst 2342 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.data 44314 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu2.inst 4624 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu2.data 42635 # number of overall MSHR misses +system.l2c.overall_mshr_misses::total 93915 # number of overall MSHR misses +system.l2c.ReadReq_mshr_miss_latency::cpu1.inst 100735600 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.data 741824698 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu2.inst 208189401 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu2.data 781867294 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::total 1832616993 # number of ReadReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu2.data 268008 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::total 268008 # number of UpgradeReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu1.data 729164916 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu2.data 1230457925 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::total 1959622841 # number of ReadExReq MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.inst 100735600 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.data 1470989614 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu2.inst 208189401 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu2.data 2012325219 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::total 3792239834 # number of demand (read+write) MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.inst 100735600 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.data 1470989614 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu2.inst 208189401 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu2.data 2012325219 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::total 3792239834 # number of overall MSHR miss cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu1.data 271229500 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu2.data 318212500 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::total 589442000 # number of ReadReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu1.data 338412000 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu2.data 391990000 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::total 730402000 # number of WriteReq MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu1.data 609641500 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu2.data 710202500 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::total 1319844000 # number of overall MSHR uncacheable cycles +system.l2c.ReadReq_mshr_miss_rate::cpu1.inst 0.018122 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.data 0.219260 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu2.inst 0.015197 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu2.data 0.094043 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::total 0.027075 # mshr miss rate for ReadReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu2.data 0.785714 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::total 0.423077 # mshr miss rate for UpgradeReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu1.data 0.437753 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu2.data 0.204714 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::total 0.127429 # mshr miss rate for ReadExReq accesses +system.l2c.demand_mshr_miss_rate::cpu1.inst 0.018122 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.data 0.287647 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu2.inst 0.015197 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu2.data 0.120742 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::total 0.040006 # mshr miss rate for demand accesses +system.l2c.overall_mshr_miss_rate::cpu1.inst 0.018122 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.data 0.287647 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu2.inst 0.015197 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu2.data 0.120742 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::total 0.040006 # mshr miss rate for overall accesses +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.inst 43012.638770 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.data 31966.935189 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu2.inst 45023.659386 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu2.data 31031.405541 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::total 33098.847583 # average ReadReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu2.data 24364.363636 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::total 24364.363636 # average UpgradeReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu1.data 34544.481524 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu2.data 70557.825850 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::total 50837.233533 # average ReadExReq mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.inst 43012.638770 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.data 33194.692738 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu2.inst 45023.659386 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu2.data 47198.902756 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::total 40379.490326 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.inst 43012.638770 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.data 33194.692738 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu2.inst 45023.659386 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu2.data 47198.902756 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::total 40379.490326 # average overall mshr miss latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu2.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu2.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu2.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.l2c.no_allocate_misses 0 # Number of misses that were no-allocate +system.iocache.replacements 41685 # number of replacements +system.iocache.tagsinuse 1.255489 # Cycle average of tags in use +system.iocache.total_refs 0 # Total number of references to valid blocks. +system.iocache.sampled_refs 41701 # Sample count of references to valid blocks. +system.iocache.avg_refs 0 # Average number of references to valid blocks. +system.iocache.warmup_cycle 1693868794000 # Cycle when the warmup percentage was hit. +system.iocache.occ_blocks::tsunami.ide 1.255489 # Average occupied blocks per requestor +system.iocache.occ_percent::tsunami.ide 0.078468 # Average percentage of cache occupancy +system.iocache.occ_percent::total 0.078468 # Average percentage of cache occupancy +system.iocache.ReadReq_misses::tsunami.ide 173 # number of ReadReq misses +system.iocache.ReadReq_misses::total 173 # number of ReadReq misses +system.iocache.WriteReq_misses::tsunami.ide 41552 # number of WriteReq misses +system.iocache.WriteReq_misses::total 41552 # number of WriteReq misses +system.iocache.demand_misses::tsunami.ide 41725 # number of demand (read+write) misses +system.iocache.demand_misses::total 41725 # number of demand (read+write) misses +system.iocache.overall_misses::tsunami.ide 41725 # number of overall misses +system.iocache.overall_misses::total 41725 # number of overall misses +system.iocache.ReadReq_miss_latency::tsunami.ide 9177998 # number of ReadReq miss cycles +system.iocache.ReadReq_miss_latency::total 9177998 # number of ReadReq miss cycles +system.iocache.WriteReq_miss_latency::tsunami.ide 3943215289 # number of WriteReq miss cycles +system.iocache.WriteReq_miss_latency::total 3943215289 # number of WriteReq miss cycles +system.iocache.demand_miss_latency::tsunami.ide 3952393287 # number of demand (read+write) miss cycles +system.iocache.demand_miss_latency::total 3952393287 # number of demand (read+write) miss cycles +system.iocache.overall_miss_latency::tsunami.ide 3952393287 # number of overall miss cycles +system.iocache.overall_miss_latency::total 3952393287 # number of overall miss cycles +system.iocache.ReadReq_accesses::tsunami.ide 173 # number of ReadReq accesses(hits+misses) +system.iocache.ReadReq_accesses::total 173 # number of ReadReq accesses(hits+misses) +system.iocache.WriteReq_accesses::tsunami.ide 41552 # number of WriteReq accesses(hits+misses) +system.iocache.WriteReq_accesses::total 41552 # number of WriteReq accesses(hits+misses) +system.iocache.demand_accesses::tsunami.ide 41725 # number of demand (read+write) accesses +system.iocache.demand_accesses::total 41725 # number of demand (read+write) accesses +system.iocache.overall_accesses::tsunami.ide 41725 # number of overall (read+write) accesses +system.iocache.overall_accesses::total 41725 # number of overall (read+write) accesses +system.iocache.ReadReq_miss_rate::tsunami.ide 1 # miss rate for ReadReq accesses +system.iocache.ReadReq_miss_rate::total 1 # miss rate for ReadReq accesses +system.iocache.WriteReq_miss_rate::tsunami.ide 1 # miss rate for WriteReq accesses +system.iocache.WriteReq_miss_rate::total 1 # miss rate for WriteReq accesses +system.iocache.demand_miss_rate::tsunami.ide 1 # miss rate for demand accesses +system.iocache.demand_miss_rate::total 1 # miss rate for demand accesses +system.iocache.overall_miss_rate::tsunami.ide 1 # miss rate for overall accesses +system.iocache.overall_miss_rate::total 1 # miss rate for overall accesses +system.iocache.ReadReq_avg_miss_latency::tsunami.ide 53052.011561 # average ReadReq miss latency +system.iocache.ReadReq_avg_miss_latency::total 53052.011561 # average ReadReq miss latency +system.iocache.WriteReq_avg_miss_latency::tsunami.ide 94898.327132 # average WriteReq miss latency +system.iocache.WriteReq_avg_miss_latency::total 94898.327132 # average WriteReq miss latency +system.iocache.demand_avg_miss_latency::tsunami.ide 94724.824134 # average overall miss latency +system.iocache.demand_avg_miss_latency::total 94724.824134 # average overall miss latency +system.iocache.overall_avg_miss_latency::tsunami.ide 94724.824134 # average overall miss latency +system.iocache.overall_avg_miss_latency::total 94724.824134 # average overall miss latency +system.iocache.blocked_cycles::no_mshrs 78884 # number of cycles access was blocked +system.iocache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.iocache.blocked::no_mshrs 9633 # number of cycles access was blocked +system.iocache.blocked::no_targets 0 # number of cycles access was blocked +system.iocache.avg_blocked_cycles::no_mshrs 8.188934 # average number of cycles each access was blocked +system.iocache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.iocache.fast_writes 0 # number of fast writes performed +system.iocache.cache_copies 0 # number of cache copies performed +system.iocache.writebacks::writebacks 41512 # number of writebacks +system.iocache.writebacks::total 41512 # number of writebacks +system.iocache.ReadReq_mshr_misses::tsunami.ide 69 # number of ReadReq MSHR misses +system.iocache.ReadReq_mshr_misses::total 69 # number of ReadReq MSHR misses +system.iocache.WriteReq_mshr_misses::tsunami.ide 17280 # number of WriteReq MSHR misses +system.iocache.WriteReq_mshr_misses::total 17280 # number of WriteReq MSHR misses +system.iocache.demand_mshr_misses::tsunami.ide 17349 # number of demand (read+write) MSHR misses +system.iocache.demand_mshr_misses::total 17349 # number of demand (read+write) MSHR misses +system.iocache.overall_mshr_misses::tsunami.ide 17349 # number of overall MSHR misses +system.iocache.overall_mshr_misses::total 17349 # number of overall MSHR misses +system.iocache.ReadReq_mshr_miss_latency::tsunami.ide 5589000 # number of ReadReq MSHR miss cycles +system.iocache.ReadReq_mshr_miss_latency::total 5589000 # number of ReadReq MSHR miss cycles +system.iocache.WriteReq_mshr_miss_latency::tsunami.ide 3043794338 # number of WriteReq MSHR miss cycles +system.iocache.WriteReq_mshr_miss_latency::total 3043794338 # number of WriteReq MSHR miss cycles +system.iocache.demand_mshr_miss_latency::tsunami.ide 3049383338 # number of demand (read+write) MSHR miss cycles +system.iocache.demand_mshr_miss_latency::total 3049383338 # number of demand (read+write) MSHR miss cycles +system.iocache.overall_mshr_miss_latency::tsunami.ide 3049383338 # number of overall MSHR miss cycles +system.iocache.overall_mshr_miss_latency::total 3049383338 # number of overall MSHR miss cycles +system.iocache.ReadReq_mshr_miss_rate::tsunami.ide 0.398844 # mshr miss rate for ReadReq accesses +system.iocache.ReadReq_mshr_miss_rate::total 0.398844 # mshr miss rate for ReadReq accesses +system.iocache.WriteReq_mshr_miss_rate::tsunami.ide 0.415864 # mshr miss rate for WriteReq accesses +system.iocache.WriteReq_mshr_miss_rate::total 0.415864 # mshr miss rate for WriteReq accesses +system.iocache.demand_mshr_miss_rate::tsunami.ide 0.415794 # mshr miss rate for demand accesses +system.iocache.demand_mshr_miss_rate::total 0.415794 # mshr miss rate for demand accesses +system.iocache.overall_mshr_miss_rate::tsunami.ide 0.415794 # mshr miss rate for overall accesses +system.iocache.overall_mshr_miss_rate::total 0.415794 # mshr miss rate for overall accesses +system.iocache.ReadReq_avg_mshr_miss_latency::tsunami.ide 81000 # average ReadReq mshr miss latency +system.iocache.ReadReq_avg_mshr_miss_latency::total 81000 # average ReadReq mshr miss latency +system.iocache.WriteReq_avg_mshr_miss_latency::tsunami.ide 176145.505671 # average WriteReq mshr miss latency +system.iocache.WriteReq_avg_mshr_miss_latency::total 176145.505671 # average WriteReq mshr miss latency +system.iocache.demand_avg_mshr_miss_latency::tsunami.ide 175767.095395 # average overall mshr miss latency +system.iocache.demand_avg_mshr_miss_latency::total 175767.095395 # average overall mshr miss latency +system.iocache.overall_avg_mshr_miss_latency::tsunami.ide 175767.095395 # average overall mshr miss latency +system.iocache.overall_avg_mshr_miss_latency::total 175767.095395 # average overall mshr miss latency +system.iocache.no_allocate_misses 0 # Number of misses that were no-allocate +system.disk0.dma_read_full_pages 0 # Number of full page size DMA reads (not PRD). +system.disk0.dma_read_bytes 1024 # Number of bytes transfered via DMA reads (not PRD). +system.disk0.dma_read_txs 1 # Number of DMA read transactions (not PRD). +system.disk0.dma_write_full_pages 298 # Number of full page size DMA writes. +system.disk0.dma_write_bytes 2651136 # Number of bytes transfered via DMA writes. +system.disk0.dma_write_txs 395 # Number of DMA write transactions. +system.disk2.dma_read_full_pages 0 # Number of full page size DMA reads (not PRD). +system.disk2.dma_read_bytes 0 # Number of bytes transfered via DMA reads (not PRD). +system.disk2.dma_read_txs 0 # Number of DMA read transactions (not PRD). +system.disk2.dma_write_full_pages 1 # Number of full page size DMA writes. +system.disk2.dma_write_bytes 8192 # Number of bytes transfered via DMA writes. +system.disk2.dma_write_txs 1 # Number of DMA write transactions. +system.cpu0.dtb.fetch_hits 0 # ITB hits +system.cpu0.dtb.fetch_misses 0 # ITB misses +system.cpu0.dtb.fetch_acv 0 # ITB acv +system.cpu0.dtb.fetch_accesses 0 # ITB accesses +system.cpu0.dtb.read_hits 4863195 # DTB read hits +system.cpu0.dtb.read_misses 5912 # DTB read misses +system.cpu0.dtb.read_acv 109 # DTB read access violations +system.cpu0.dtb.read_accesses 426831 # DTB read accesses +system.cpu0.dtb.write_hits 3494205 # DTB write hits +system.cpu0.dtb.write_misses 658 # DTB write misses +system.cpu0.dtb.write_acv 81 # DTB write access violations +system.cpu0.dtb.write_accesses 163149 # DTB write accesses +system.cpu0.dtb.data_hits 8357400 # DTB hits +system.cpu0.dtb.data_misses 6570 # DTB misses +system.cpu0.dtb.data_acv 190 # DTB access violations +system.cpu0.dtb.data_accesses 589980 # DTB accesses +system.cpu0.itb.fetch_hits 2736814 # ITB hits +system.cpu0.itb.fetch_misses 2973 # ITB misses +system.cpu0.itb.fetch_acv 97 # ITB acv +system.cpu0.itb.fetch_accesses 2739787 # ITB accesses +system.cpu0.itb.read_hits 0 # DTB read hits +system.cpu0.itb.read_misses 0 # DTB read misses +system.cpu0.itb.read_acv 0 # DTB read access violations +system.cpu0.itb.read_accesses 0 # DTB read accesses +system.cpu0.itb.write_hits 0 # DTB write hits +system.cpu0.itb.write_misses 0 # DTB write misses +system.cpu0.itb.write_acv 0 # DTB write access violations +system.cpu0.itb.write_accesses 0 # DTB write accesses +system.cpu0.itb.data_hits 0 # DTB hits +system.cpu0.itb.data_misses 0 # DTB misses +system.cpu0.itb.data_acv 0 # DTB access violations +system.cpu0.itb.data_accesses 0 # DTB accesses +system.cpu0.numCycles 928581953 # number of cpu cycles simulated +system.cpu0.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu0.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu0.committedInsts 32231633 # Number of instructions committed +system.cpu0.committedOps 32231633 # Number of ops (including micro ops) committed +system.cpu0.num_int_alu_accesses 30115221 # Number of integer alu accesses +system.cpu0.num_fp_alu_accesses 167520 # Number of float alu accesses +system.cpu0.num_func_calls 807051 # number of times a function call or return occured +system.cpu0.num_conditional_control_insts 4228078 # number of instructions that are conditional controls +system.cpu0.num_int_insts 30115221 # number of integer instructions +system.cpu0.num_fp_insts 167520 # number of float instructions +system.cpu0.num_int_register_reads 41941415 # number of times the integer registers were read +system.cpu0.num_int_register_writes 22024555 # number of times the integer registers were written +system.cpu0.num_fp_register_reads 86513 # number of times the floating registers were read +system.cpu0.num_fp_register_writes 88077 # number of times the floating registers were written +system.cpu0.num_mem_refs 8386802 # number of memory refs +system.cpu0.num_load_insts 4883995 # Number of load instructions +system.cpu0.num_store_insts 3502807 # Number of store instructions +system.cpu0.num_idle_cycles 214040611553.999786 # Number of idle cycles +system.cpu0.num_busy_cycles -213112029600.999786 # Number of busy cycles +system.cpu0.not_idle_fraction -229.502661 # Percentage of non-idle cycles +system.cpu0.idle_fraction 230.502661 # Percentage of idle cycles +system.cpu0.kern.inst.arm 0 # number of arm instructions executed +system.cpu0.kern.inst.quiesce 6419 # number of quiesce instructions executed +system.cpu0.kern.inst.hwrei 211372 # number of hwrei instructions executed +system.cpu0.kern.ipl_count::0 74800 40.97% 40.97% # number of times we switched to this ipl +system.cpu0.kern.ipl_count::21 203 0.11% 41.08% # number of times we switched to this ipl +system.cpu0.kern.ipl_count::22 1878 1.03% 42.11% # number of times we switched to this ipl +system.cpu0.kern.ipl_count::31 105685 57.89% 100.00% # number of times we switched to this ipl +system.cpu0.kern.ipl_count::total 182566 # number of times we switched to this ipl +system.cpu0.kern.ipl_good::0 73433 49.30% 49.30% # number of times we switched to this ipl from a different ipl +system.cpu0.kern.ipl_good::21 203 0.14% 49.44% # number of times we switched to this ipl from a different ipl +system.cpu0.kern.ipl_good::22 1878 1.26% 50.70% # number of times we switched to this ipl from a different ipl +system.cpu0.kern.ipl_good::31 73433 49.30% 100.00% # number of times we switched to this ipl from a different ipl +system.cpu0.kern.ipl_good::total 148947 # number of times we switched to this ipl from a different ipl +system.cpu0.kern.ipl_ticks::0 1818611622000 98.75% 98.75% # number of cycles we spent at this ipl +system.cpu0.kern.ipl_ticks::21 39272500 0.00% 98.75% # number of cycles we spent at this ipl +system.cpu0.kern.ipl_ticks::22 363381500 0.02% 98.77% # number of cycles we spent at this ipl +system.cpu0.kern.ipl_ticks::31 22666637000 1.23% 100.00% # number of cycles we spent at this ipl +system.cpu0.kern.ipl_ticks::total 1841680913000 # number of cycles we spent at this ipl +system.cpu0.kern.ipl_used::0 0.981725 # fraction of swpipl calls that actually changed the ipl +system.cpu0.kern.ipl_used::21 1 # fraction of swpipl calls that actually changed the ipl +system.cpu0.kern.ipl_used::22 1 # fraction of swpipl calls that actually changed the ipl +system.cpu0.kern.ipl_used::31 0.694829 # fraction of swpipl calls that actually changed the ipl +system.cpu0.kern.ipl_used::total 0.815853 # fraction of swpipl calls that actually changed the ipl +system.cpu0.kern.syscall::2 8 2.45% 2.45% # number of syscalls executed +system.cpu0.kern.syscall::3 30 9.20% 11.66% # number of syscalls executed +system.cpu0.kern.syscall::4 4 1.23% 12.88% # number of syscalls executed +system.cpu0.kern.syscall::6 42 12.88% 25.77% # number of syscalls executed +system.cpu0.kern.syscall::12 1 0.31% 26.07% # number of syscalls executed +system.cpu0.kern.syscall::15 1 0.31% 26.38% # number of syscalls executed +system.cpu0.kern.syscall::17 15 4.60% 30.98% # number of syscalls executed +system.cpu0.kern.syscall::19 10 3.07% 34.05% # number of syscalls executed +system.cpu0.kern.syscall::20 6 1.84% 35.89% # number of syscalls executed +system.cpu0.kern.syscall::23 4 1.23% 37.12% # number of syscalls executed +system.cpu0.kern.syscall::24 6 1.84% 38.96% # number of syscalls executed +system.cpu0.kern.syscall::33 11 3.37% 42.33% # number of syscalls executed +system.cpu0.kern.syscall::41 2 0.61% 42.94% # number of syscalls executed +system.cpu0.kern.syscall::45 54 16.56% 59.51% # number of syscalls executed +system.cpu0.kern.syscall::47 6 1.84% 61.35% # number of syscalls executed +system.cpu0.kern.syscall::48 10 3.07% 64.42% # number of syscalls executed +system.cpu0.kern.syscall::54 10 3.07% 67.48% # number of syscalls executed +system.cpu0.kern.syscall::58 1 0.31% 67.79% # number of syscalls executed +system.cpu0.kern.syscall::59 7 2.15% 69.94% # number of syscalls executed +system.cpu0.kern.syscall::71 54 16.56% 86.50% # number of syscalls executed +system.cpu0.kern.syscall::73 3 0.92% 87.42% # number of syscalls executed +system.cpu0.kern.syscall::74 16 4.91% 92.33% # number of syscalls executed +system.cpu0.kern.syscall::87 1 0.31% 92.64% # number of syscalls executed +system.cpu0.kern.syscall::90 3 0.92% 93.56% # number of syscalls executed +system.cpu0.kern.syscall::92 9 2.76% 96.32% # number of syscalls executed +system.cpu0.kern.syscall::97 2 0.61% 96.93% # number of syscalls executed +system.cpu0.kern.syscall::98 2 0.61% 97.55% # number of syscalls executed +system.cpu0.kern.syscall::132 4 1.23% 98.77% # number of syscalls executed +system.cpu0.kern.syscall::144 2 0.61% 99.39% # number of syscalls executed +system.cpu0.kern.syscall::147 2 0.61% 100.00% # number of syscalls executed +system.cpu0.kern.syscall::total 326 # number of syscalls executed +system.cpu0.kern.callpal::cserve 1 0.00% 0.00% # number of callpals executed +system.cpu0.kern.callpal::wrmces 1 0.00% 0.00% # number of callpals executed +system.cpu0.kern.callpal::wrfen 1 0.00% 0.00% # number of callpals executed +system.cpu0.kern.callpal::wrvptptr 1 0.00% 0.00% # number of callpals executed +system.cpu0.kern.callpal::swpctx 4175 2.17% 2.17% # number of callpals executed +system.cpu0.kern.callpal::tbi 54 0.03% 2.20% # number of callpals executed +system.cpu0.kern.callpal::wrent 7 0.00% 2.21% # number of callpals executed +system.cpu0.kern.callpal::swpipl 175309 91.20% 93.41% # number of callpals executed +system.cpu0.kern.callpal::rdps 6782 3.53% 96.94% # number of callpals executed +system.cpu0.kern.callpal::wrkgp 1 0.00% 96.94% # number of callpals executed +system.cpu0.kern.callpal::wrusp 7 0.00% 96.94% # number of callpals executed +system.cpu0.kern.callpal::rdusp 9 0.00% 96.94% # number of callpals executed +system.cpu0.kern.callpal::whami 2 0.00% 96.95% # number of callpals executed +system.cpu0.kern.callpal::rti 5175 2.69% 99.64% # number of callpals executed +system.cpu0.kern.callpal::callsys 515 0.27% 99.91% # number of callpals executed +system.cpu0.kern.callpal::imb 181 0.09% 100.00% # number of callpals executed +system.cpu0.kern.callpal::total 192221 # number of callpals executed +system.cpu0.kern.mode_switch::kernel 5922 # number of protection mode switches +system.cpu0.kern.mode_switch::user 1736 # number of protection mode switches +system.cpu0.kern.mode_switch::idle 2094 # number of protection mode switches +system.cpu0.kern.mode_good::kernel 1905 +system.cpu0.kern.mode_good::user 1736 +system.cpu0.kern.mode_good::idle 169 +system.cpu0.kern.mode_switch_good::kernel 0.321682 # fraction of useful protection mode switches +system.cpu0.kern.mode_switch_good::user 1 # fraction of useful protection mode switches +system.cpu0.kern.mode_switch_good::idle 0.080707 # fraction of useful protection mode switches +system.cpu0.kern.mode_switch_good::total 0.390689 # fraction of useful protection mode switches +system.cpu0.kern.mode_ticks::kernel 29776947000 1.62% 1.62% # number of ticks spent at the given mode +system.cpu0.kern.mode_ticks::user 2543344500 0.14% 1.75% # number of ticks spent at the given mode +system.cpu0.kern.mode_ticks::idle 1809360618000 98.25% 100.00% # number of ticks spent at the given mode +system.cpu0.kern.swap_context 4176 # number of times the context was actually changed +system.tsunami.ethernet.descDMAReads 0 # Number of descriptors the device read w/ DMA +system.tsunami.ethernet.descDMAWrites 0 # Number of descriptors the device wrote w/ DMA +system.tsunami.ethernet.descDmaReadBytes 0 # number of descriptor bytes read w/ DMA +system.tsunami.ethernet.descDmaWriteBytes 0 # number of descriptor bytes write w/ DMA +system.tsunami.ethernet.postedSwi 0 # number of software interrupts posted to CPU +system.tsunami.ethernet.coalescedSwi nan # average number of Swi's coalesced into each post +system.tsunami.ethernet.totalSwi 0 # total number of Swi written to ISR +system.tsunami.ethernet.postedRxIdle 0 # number of rxIdle interrupts posted to CPU +system.tsunami.ethernet.coalescedRxIdle nan # average number of RxIdle's coalesced into each post +system.tsunami.ethernet.totalRxIdle 0 # total number of RxIdle written to ISR +system.tsunami.ethernet.postedRxOk 0 # number of RxOk interrupts posted to CPU +system.tsunami.ethernet.coalescedRxOk nan # average number of RxOk's coalesced into each post +system.tsunami.ethernet.totalRxOk 0 # total number of RxOk written to ISR +system.tsunami.ethernet.postedRxDesc 0 # number of RxDesc interrupts posted to CPU +system.tsunami.ethernet.coalescedRxDesc nan # average number of RxDesc's coalesced into each post +system.tsunami.ethernet.totalRxDesc 0 # total number of RxDesc written to ISR +system.tsunami.ethernet.postedTxOk 0 # number of TxOk interrupts posted to CPU +system.tsunami.ethernet.coalescedTxOk nan # average number of TxOk's coalesced into each post +system.tsunami.ethernet.totalTxOk 0 # total number of TxOk written to ISR +system.tsunami.ethernet.postedTxIdle 0 # number of TxIdle interrupts posted to CPU +system.tsunami.ethernet.coalescedTxIdle nan # average number of TxIdle's coalesced into each post +system.tsunami.ethernet.totalTxIdle 0 # total number of TxIdle written to ISR +system.tsunami.ethernet.postedTxDesc 0 # number of TxDesc interrupts posted to CPU +system.tsunami.ethernet.coalescedTxDesc nan # average number of TxDesc's coalesced into each post +system.tsunami.ethernet.totalTxDesc 0 # total number of TxDesc written to ISR +system.tsunami.ethernet.postedRxOrn 0 # number of RxOrn posted to CPU +system.tsunami.ethernet.coalescedRxOrn nan # average number of RxOrn's coalesced into each post +system.tsunami.ethernet.totalRxOrn 0 # total number of RxOrn written to ISR +system.tsunami.ethernet.coalescedTotal nan # average number of interrupts coalesced into each post +system.tsunami.ethernet.postedInterrupts 0 # number of posts to CPU +system.tsunami.ethernet.droppedPackets 0 # number of packets dropped +system.cpu0.icache.replacements 954146 # number of replacements +system.cpu0.icache.tagsinuse 511.198138 # Cycle average of tags in use +system.cpu0.icache.total_refs 41733941 # Total number of references to valid blocks. +system.cpu0.icache.sampled_refs 954657 # Sample count of references to valid blocks. +system.cpu0.icache.avg_refs 43.716163 # Average number of references to valid blocks. +system.cpu0.icache.warmup_cycle 10235539000 # Cycle when the warmup percentage was hit. +system.cpu0.icache.occ_blocks::cpu0.inst 257.559886 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu1.inst 79.204756 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu2.inst 174.433495 # Average occupied blocks per requestor +system.cpu0.icache.occ_percent::cpu0.inst 0.503047 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu1.inst 0.154697 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu2.inst 0.340690 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::total 0.998434 # Average percentage of cache occupancy +system.cpu0.icache.ReadReq_hits::cpu0.inst 31717072 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu1.inst 7719142 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu2.inst 2297727 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::total 41733941 # number of ReadReq hits +system.cpu0.icache.demand_hits::cpu0.inst 31717072 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu1.inst 7719142 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu2.inst 2297727 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::total 41733941 # number of demand (read+write) hits +system.cpu0.icache.overall_hits::cpu0.inst 31717072 # number of overall hits +system.cpu0.icache.overall_hits::cpu1.inst 7719142 # number of overall hits +system.cpu0.icache.overall_hits::cpu2.inst 2297727 # number of overall hits +system.cpu0.icache.overall_hits::total 41733941 # number of overall hits +system.cpu0.icache.ReadReq_misses::cpu0.inst 521321 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu1.inst 129232 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu2.inst 321175 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::total 971728 # number of ReadReq misses +system.cpu0.icache.demand_misses::cpu0.inst 521321 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu1.inst 129232 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu2.inst 321175 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::total 971728 # number of demand (read+write) misses +system.cpu0.icache.overall_misses::cpu0.inst 521321 # number of overall misses +system.cpu0.icache.overall_misses::cpu1.inst 129232 # number of overall misses +system.cpu0.icache.overall_misses::cpu2.inst 321175 # number of overall misses +system.cpu0.icache.overall_misses::total 971728 # number of overall misses +system.cpu0.icache.ReadReq_miss_latency::cpu1.inst 1794278000 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::cpu2.inst 4429709988 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::total 6223987988 # number of ReadReq miss cycles +system.cpu0.icache.demand_miss_latency::cpu1.inst 1794278000 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::cpu2.inst 4429709988 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::total 6223987988 # number of demand (read+write) miss cycles +system.cpu0.icache.overall_miss_latency::cpu1.inst 1794278000 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::cpu2.inst 4429709988 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::total 6223987988 # number of overall miss cycles +system.cpu0.icache.ReadReq_accesses::cpu0.inst 32238393 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu1.inst 7848374 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu2.inst 2618902 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::total 42705669 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.demand_accesses::cpu0.inst 32238393 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu1.inst 7848374 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu2.inst 2618902 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::total 42705669 # number of demand (read+write) accesses +system.cpu0.icache.overall_accesses::cpu0.inst 32238393 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu1.inst 7848374 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu2.inst 2618902 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::total 42705669 # number of overall (read+write) accesses +system.cpu0.icache.ReadReq_miss_rate::cpu0.inst 0.016171 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu1.inst 0.016466 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu2.inst 0.122637 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::total 0.022754 # miss rate for ReadReq accesses +system.cpu0.icache.demand_miss_rate::cpu0.inst 0.016171 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu1.inst 0.016466 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu2.inst 0.122637 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::total 0.022754 # miss rate for demand accesses +system.cpu0.icache.overall_miss_rate::cpu0.inst 0.016171 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu1.inst 0.016466 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu2.inst 0.122637 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::total 0.022754 # miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_miss_latency::cpu1.inst 13884.161818 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::cpu2.inst 13792.200476 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::total 6405.072189 # average ReadReq miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu1.inst 13884.161818 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu2.inst 13792.200476 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::total 6405.072189 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu1.inst 13884.161818 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu2.inst 13792.200476 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::total 6405.072189 # average overall miss latency +system.cpu0.icache.blocked_cycles::no_mshrs 1920 # number of cycles access was blocked +system.cpu0.icache.blocked_cycles::no_targets 179 # number of cycles access was blocked +system.cpu0.icache.blocked::no_mshrs 117 # number of cycles access was blocked +system.cpu0.icache.blocked::no_targets 1 # number of cycles access was blocked +system.cpu0.icache.avg_blocked_cycles::no_mshrs 16.410256 # average number of cycles each access was blocked +system.cpu0.icache.avg_blocked_cycles::no_targets 179 # average number of cycles each access was blocked +system.cpu0.icache.fast_writes 0 # number of fast writes performed +system.cpu0.icache.cache_copies 0 # number of cache copies performed +system.cpu0.icache.ReadReq_mshr_hits::cpu2.inst 16896 # number of ReadReq MSHR hits +system.cpu0.icache.ReadReq_mshr_hits::total 16896 # number of ReadReq MSHR hits +system.cpu0.icache.demand_mshr_hits::cpu2.inst 16896 # number of demand (read+write) MSHR hits +system.cpu0.icache.demand_mshr_hits::total 16896 # number of demand (read+write) MSHR hits +system.cpu0.icache.overall_mshr_hits::cpu2.inst 16896 # number of overall MSHR hits +system.cpu0.icache.overall_mshr_hits::total 16896 # number of overall MSHR hits +system.cpu0.icache.ReadReq_mshr_misses::cpu1.inst 129232 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::cpu2.inst 304279 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::total 433511 # number of ReadReq MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu1.inst 129232 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu2.inst 304279 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::total 433511 # number of demand (read+write) MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu1.inst 129232 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu2.inst 304279 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::total 433511 # number of overall MSHR misses +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu1.inst 1535814000 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu2.inst 3651354490 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::total 5187168490 # number of ReadReq MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu1.inst 1535814000 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu2.inst 3651354490 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::total 5187168490 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu1.inst 1535814000 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu2.inst 3651354490 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::total 5187168490 # number of overall MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu1.inst 0.016466 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu2.inst 0.116186 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::total 0.010151 # mshr miss rate for ReadReq accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu1.inst 0.016466 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu2.inst 0.116186 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::total 0.010151 # mshr miss rate for demand accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu1.inst 0.016466 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu2.inst 0.116186 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::total 0.010151 # mshr miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu1.inst 11884.161818 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu2.inst 12000.021329 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::total 11965.482975 # average ReadReq mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu1.inst 11884.161818 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu2.inst 12000.021329 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::total 11965.482975 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu1.inst 11884.161818 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu2.inst 12000.021329 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::total 11965.482975 # average overall mshr miss latency +system.cpu0.icache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu0.dcache.replacements 1392176 # number of replacements +system.cpu0.dcache.tagsinuse 511.997817 # Cycle average of tags in use +system.cpu0.dcache.total_refs 13319375 # Total number of references to valid blocks. +system.cpu0.dcache.sampled_refs 1392688 # Sample count of references to valid blocks. +system.cpu0.dcache.avg_refs 9.563790 # Average number of references to valid blocks. +system.cpu0.dcache.warmup_cycle 10840000 # Cycle when the warmup percentage was hit. +system.cpu0.dcache.occ_blocks::cpu0.data 250.475263 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu1.data 85.370425 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu2.data 176.152129 # Average occupied blocks per requestor +system.cpu0.dcache.occ_percent::cpu0.data 0.489209 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu1.data 0.166739 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu2.data 0.344047 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::total 0.999996 # Average percentage of cache occupancy +system.cpu0.dcache.ReadReq_hits::cpu0.data 4041121 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu1.data 1096850 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu2.data 2424578 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::total 7562549 # number of ReadReq hits +system.cpu0.dcache.WriteReq_hits::cpu0.data 3198610 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu1.data 859334 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu2.data 1312800 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::total 5370744 # number of WriteReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu0.data 116325 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu1.data 19408 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu2.data 49694 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::total 185427 # number of LoadLockedReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu0.data 125372 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu1.data 21487 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu2.data 53741 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::total 200600 # number of StoreCondReq hits +system.cpu0.dcache.demand_hits::cpu0.data 7239731 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu1.data 1956184 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu2.data 3737378 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::total 12933293 # number of demand (read+write) hits +system.cpu0.dcache.overall_hits::cpu0.data 7239731 # number of overall hits +system.cpu0.dcache.overall_hits::cpu1.data 1956184 # number of overall hits +system.cpu0.dcache.overall_hits::cpu2.data 3737378 # number of overall hits +system.cpu0.dcache.overall_hits::total 12933293 # number of overall hits +system.cpu0.dcache.ReadReq_misses::cpu0.data 706861 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu1.data 103630 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu2.data 548850 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::total 1359341 # number of ReadReq misses +system.cpu0.dcache.WriteReq_misses::cpu0.data 169104 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu1.data 48220 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu2.data 560755 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::total 778079 # number of WriteReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu0.data 9607 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu1.data 2208 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu2.data 7000 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::total 18815 # number of LoadLockedReq misses +system.cpu0.dcache.StoreCondReq_misses::cpu2.data 1 # number of StoreCondReq misses +system.cpu0.dcache.StoreCondReq_misses::total 1 # number of StoreCondReq misses +system.cpu0.dcache.demand_misses::cpu0.data 875965 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu1.data 151850 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu2.data 1109605 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::total 2137420 # number of demand (read+write) misses +system.cpu0.dcache.overall_misses::cpu0.data 875965 # number of overall misses +system.cpu0.dcache.overall_misses::cpu1.data 151850 # number of overall misses +system.cpu0.dcache.overall_misses::cpu2.data 1109605 # number of overall misses +system.cpu0.dcache.overall_misses::total 2137420 # number of overall misses +system.cpu0.dcache.ReadReq_miss_latency::cpu1.data 2161032000 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::cpu2.data 9421132500 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::total 11582164500 # number of ReadReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu1.data 1417971000 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu2.data 15685694174 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::total 17103665174 # number of WriteReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu1.data 29185500 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu2.data 103516500 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::total 132702000 # number of LoadLockedReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::cpu2.data 13000 # number of StoreCondReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::total 13000 # number of StoreCondReq miss cycles +system.cpu0.dcache.demand_miss_latency::cpu1.data 3579003000 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::cpu2.data 25106826674 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::total 28685829674 # number of demand (read+write) miss cycles +system.cpu0.dcache.overall_miss_latency::cpu1.data 3579003000 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::cpu2.data 25106826674 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::total 28685829674 # number of overall miss cycles +system.cpu0.dcache.ReadReq_accesses::cpu0.data 4747982 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu1.data 1200480 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu2.data 2973428 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::total 8921890 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu0.data 3367714 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu1.data 907554 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu2.data 1873555 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::total 6148823 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu0.data 125932 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu1.data 21616 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu2.data 56694 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::total 204242 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu0.data 125372 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu1.data 21487 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu2.data 53742 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::total 200601 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.demand_accesses::cpu0.data 8115696 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu1.data 2108034 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu2.data 4846983 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::total 15070713 # number of demand (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu0.data 8115696 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu1.data 2108034 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu2.data 4846983 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::total 15070713 # number of overall (read+write) accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu0.data 0.148876 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu1.data 0.086324 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu2.data 0.184585 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::total 0.152360 # miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu0.data 0.050213 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu1.data 0.053132 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu2.data 0.299300 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::total 0.126541 # miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu0.data 0.076287 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu1.data 0.102147 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu2.data 0.123470 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::total 0.092121 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::cpu2.data 0.000019 # miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::total 0.000005 # miss rate for StoreCondReq accesses +system.cpu0.dcache.demand_miss_rate::cpu0.data 0.107935 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu1.data 0.072034 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu2.data 0.228927 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::total 0.141826 # miss rate for demand accesses +system.cpu0.dcache.overall_miss_rate::cpu0.data 0.107935 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu1.data 0.072034 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu2.data 0.228927 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::total 0.141826 # miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu1.data 20853.343626 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu2.data 17165.222738 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::total 8520.426074 # average ReadReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu1.data 29406.283700 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu2.data 27972.455304 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::total 21981.913371 # average WriteReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu1.data 13218.070652 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu2.data 14788.071429 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::total 7052.989636 # average LoadLockedReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::cpu2.data 13000 # average StoreCondReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::total 13000 # average StoreCondReq miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu1.data 23569.331577 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu2.data 22626.814654 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::total 13420.773490 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu1.data 23569.331577 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu2.data 22626.814654 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::total 13420.773490 # average overall miss latency +system.cpu0.dcache.blocked_cycles::no_mshrs 505614 # number of cycles access was blocked +system.cpu0.dcache.blocked_cycles::no_targets 672 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_mshrs 16873 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_targets 7 # number of cycles access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_mshrs 29.965863 # average number of cycles each access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_targets 96 # average number of cycles each access was blocked +system.cpu0.dcache.fast_writes 0 # number of fast writes performed +system.cpu0.dcache.cache_copies 0 # number of cache copies performed +system.cpu0.dcache.writebacks::writebacks 835771 # number of writebacks +system.cpu0.dcache.writebacks::total 835771 # number of writebacks +system.cpu0.dcache.ReadReq_mshr_hits::cpu2.data 286220 # number of ReadReq MSHR hits +system.cpu0.dcache.ReadReq_mshr_hits::total 286220 # number of ReadReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::cpu2.data 475804 # number of WriteReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::total 475804 # number of WriteReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::cpu2.data 1462 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::total 1462 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.demand_mshr_hits::cpu2.data 762024 # number of demand (read+write) MSHR hits +system.cpu0.dcache.demand_mshr_hits::total 762024 # number of demand (read+write) MSHR hits +system.cpu0.dcache.overall_mshr_hits::cpu2.data 762024 # number of overall MSHR hits +system.cpu0.dcache.overall_mshr_hits::total 762024 # number of overall MSHR hits +system.cpu0.dcache.ReadReq_mshr_misses::cpu1.data 103630 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::cpu2.data 262630 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::total 366260 # number of ReadReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu1.data 48220 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu2.data 84951 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::total 133171 # number of WriteReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu1.data 2208 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu2.data 5538 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::total 7746 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::cpu2.data 1 # number of StoreCondReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::total 1 # number of StoreCondReq MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu1.data 151850 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu2.data 347581 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::total 499431 # number of demand (read+write) MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu1.data 151850 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu2.data 347581 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::total 499431 # number of overall MSHR misses +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu1.data 1953772000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu2.data 4295599000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::total 6249371000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu1.data 1321531000 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu2.data 2301660126 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::total 3623191126 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu1.data 24769500 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu2.data 70346000 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::total 95115500 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::cpu2.data 11000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::total 11000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu1.data 3275303000 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu2.data 6597259126 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::total 9872562126 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu1.data 3275303000 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu2.data 6597259126 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::total 9872562126 # number of overall MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu1.data 289521000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu2.data 340019500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::total 629540500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu1.data 358537000 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu2.data 415967500 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::total 774504500 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu1.data 648058000 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu2.data 755987000 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::total 1404045000 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu1.data 0.086324 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu2.data 0.088326 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::total 0.041052 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu1.data 0.053132 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu2.data 0.045342 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::total 0.021658 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu1.data 0.102147 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu2.data 0.097682 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::total 0.037926 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::cpu2.data 0.000019 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::total 0.000005 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu1.data 0.072034 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu2.data 0.071711 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::total 0.033139 # mshr miss rate for demand accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu1.data 0.072034 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu2.data 0.071711 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::total 0.033139 # mshr miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu1.data 18853.343626 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu2.data 16356.086510 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::total 17062.663135 # average ReadReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu1.data 27406.283700 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu2.data 27093.973302 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::total 27207.058038 # average WriteReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu1.data 11218.070652 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu2.data 12702.419646 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::total 12279.305448 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::cpu2.data 11000 # average StoreCondReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::total 11000 # average StoreCondReq mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu1.data 21569.331577 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu2.data 18980.494118 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::total 19767.619803 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu1.data 21569.331577 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu2.data 18980.494118 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::total 19767.619803 # average overall mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu2.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu2.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu2.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.cpu0.dcache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu1.dtb.fetch_hits 0 # ITB hits +system.cpu1.dtb.fetch_misses 0 # ITB misses +system.cpu1.dtb.fetch_acv 0 # ITB acv +system.cpu1.dtb.fetch_accesses 0 # ITB accesses +system.cpu1.dtb.read_hits 1219761 # DTB read hits +system.cpu1.dtb.read_misses 1488 # DTB read misses +system.cpu1.dtb.read_acv 40 # DTB read access violations +system.cpu1.dtb.read_accesses 143779 # DTB read accesses +system.cpu1.dtb.write_hits 929431 # DTB write hits +system.cpu1.dtb.write_misses 201 # DTB write misses +system.cpu1.dtb.write_acv 24 # DTB write access violations +system.cpu1.dtb.write_accesses 59743 # DTB write accesses +system.cpu1.dtb.data_hits 2149192 # DTB hits +system.cpu1.dtb.data_misses 1689 # DTB misses +system.cpu1.dtb.data_acv 64 # DTB access violations +system.cpu1.dtb.data_accesses 203522 # DTB accesses +system.cpu1.itb.fetch_hits 873235 # ITB hits +system.cpu1.itb.fetch_misses 756 # ITB misses +system.cpu1.itb.fetch_acv 43 # ITB acv +system.cpu1.itb.fetch_accesses 873991 # ITB accesses +system.cpu1.itb.read_hits 0 # DTB read hits +system.cpu1.itb.read_misses 0 # DTB read misses +system.cpu1.itb.read_acv 0 # DTB read access violations +system.cpu1.itb.read_accesses 0 # DTB read accesses +system.cpu1.itb.write_hits 0 # DTB write hits +system.cpu1.itb.write_misses 0 # DTB write misses +system.cpu1.itb.write_acv 0 # DTB write access violations +system.cpu1.itb.write_accesses 0 # DTB write accesses +system.cpu1.itb.data_hits 0 # DTB hits +system.cpu1.itb.data_misses 0 # DTB misses +system.cpu1.itb.data_acv 0 # DTB access violations +system.cpu1.itb.data_accesses 0 # DTB accesses +system.cpu1.numCycles 953535739 # number of cpu cycles simulated +system.cpu1.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu1.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu1.committedInsts 7846620 # Number of instructions committed +system.cpu1.committedOps 7846620 # Number of ops (including micro ops) committed +system.cpu1.num_int_alu_accesses 7299077 # Number of integer alu accesses +system.cpu1.num_fp_alu_accesses 45739 # Number of float alu accesses +system.cpu1.num_func_calls 212215 # number of times a function call or return occured +system.cpu1.num_conditional_control_insts 957639 # number of instructions that are conditional controls +system.cpu1.num_int_insts 7299077 # number of integer instructions +system.cpu1.num_fp_insts 45739 # number of float instructions +system.cpu1.num_int_register_reads 10142741 # number of times the integer registers were read +system.cpu1.num_int_register_writes 5309758 # number of times the integer registers were written +system.cpu1.num_fp_register_reads 24689 # number of times the floating registers were read +system.cpu1.num_fp_register_writes 24953 # number of times the floating registers were written +system.cpu1.num_mem_refs 2156913 # number of memory refs +system.cpu1.num_load_insts 1225031 # Number of load instructions +system.cpu1.num_store_insts 931882 # Number of store instructions +system.cpu1.num_idle_cycles -1658749274.077502 # Number of idle cycles +system.cpu1.num_busy_cycles 2612285013.077502 # Number of busy cycles +system.cpu1.not_idle_fraction 2.739577 # Percentage of non-idle cycles +system.cpu1.idle_fraction -1.739577 # Percentage of idle cycles +system.cpu1.kern.inst.arm 0 # number of arm instructions executed +system.cpu1.kern.inst.quiesce 0 # number of quiesce instructions executed +system.cpu1.kern.inst.hwrei 0 # number of hwrei instructions executed +system.cpu1.kern.mode_switch::kernel 0 # number of protection mode switches +system.cpu1.kern.mode_switch::user 0 # number of protection mode switches +system.cpu1.kern.mode_switch::idle 0 # number of protection mode switches +system.cpu1.kern.mode_good::kernel 0 +system.cpu1.kern.mode_good::user 0 +system.cpu1.kern.mode_good::idle 0 +system.cpu1.kern.mode_switch_good::kernel nan # fraction of useful protection mode switches +system.cpu1.kern.mode_switch_good::user nan # fraction of useful protection mode switches +system.cpu1.kern.mode_switch_good::idle nan # fraction of useful protection mode switches +system.cpu1.kern.mode_switch_good::total nan # fraction of useful protection mode switches +system.cpu1.kern.mode_ticks::kernel 0 # number of ticks spent at the given mode +system.cpu1.kern.mode_ticks::user 0 # number of ticks spent at the given mode +system.cpu1.kern.mode_ticks::idle 0 # number of ticks spent at the given mode +system.cpu1.kern.swap_context 0 # number of times the context was actually changed +system.cpu2.dtb.fetch_hits 0 # ITB hits +system.cpu2.dtb.fetch_misses 0 # ITB misses +system.cpu2.dtb.fetch_acv 0 # ITB acv +system.cpu2.dtb.fetch_accesses 0 # ITB accesses +system.cpu2.dtb.read_hits 3234016 # DTB read hits +system.cpu2.dtb.read_misses 12170 # DTB read misses +system.cpu2.dtb.read_acv 136 # DTB read access violations +system.cpu2.dtb.read_accesses 218383 # DTB read accesses +system.cpu2.dtb.write_hits 2000862 # DTB write hits +system.cpu2.dtb.write_misses 2630 # DTB write misses +system.cpu2.dtb.write_acv 139 # DTB write access violations +system.cpu2.dtb.write_accesses 81465 # DTB write accesses +system.cpu2.dtb.data_hits 5234878 # DTB hits +system.cpu2.dtb.data_misses 14800 # DTB misses +system.cpu2.dtb.data_acv 275 # DTB access violations +system.cpu2.dtb.data_accesses 299848 # DTB accesses +system.cpu2.itb.fetch_hits 374542 # ITB hits +system.cpu2.itb.fetch_misses 5731 # ITB misses +system.cpu2.itb.fetch_acv 284 # ITB acv +system.cpu2.itb.fetch_accesses 380273 # ITB accesses +system.cpu2.itb.read_hits 0 # DTB read hits +system.cpu2.itb.read_misses 0 # DTB read misses +system.cpu2.itb.read_acv 0 # DTB read access violations +system.cpu2.itb.read_accesses 0 # DTB read accesses +system.cpu2.itb.write_hits 0 # DTB write hits +system.cpu2.itb.write_misses 0 # DTB write misses +system.cpu2.itb.write_acv 0 # DTB write access violations +system.cpu2.itb.write_accesses 0 # DTB write accesses +system.cpu2.itb.data_hits 0 # DTB hits +system.cpu2.itb.data_misses 0 # DTB misses +system.cpu2.itb.data_acv 0 # DTB access violations +system.cpu2.itb.data_accesses 0 # DTB accesses +system.cpu2.numCycles 30548805 # number of cpu cycles simulated +system.cpu2.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu2.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu2.BPredUnit.lookups 8364028 # Number of BP lookups +system.cpu2.BPredUnit.condPredicted 7669410 # Number of conditional branches predicted +system.cpu2.BPredUnit.condIncorrect 129868 # Number of conditional branches incorrect +system.cpu2.BPredUnit.BTBLookups 6711241 # Number of BTB lookups +system.cpu2.BPredUnit.BTBHits 5709819 # Number of BTB hits +system.cpu2.BPredUnit.BTBCorrect 0 # Number of correct BTB predictions (this stat may not work properly. +system.cpu2.BPredUnit.usedRAS 287796 # Number of times the RAS was used to get a target. +system.cpu2.BPredUnit.RASInCorrect 15290 # Number of incorrect RAS predictions. +system.cpu2.fetch.icacheStallCycles 8565342 # Number of cycles fetch is stalled on an Icache miss +system.cpu2.fetch.Insts 34820498 # Number of instructions fetch has processed +system.cpu2.fetch.Branches 8364028 # Number of branches that fetch encountered +system.cpu2.fetch.predictedBranches 5997615 # Number of branches that fetch has predicted taken +system.cpu2.fetch.Cycles 8085140 # Number of cycles fetch has run and was not squashing or blocked +system.cpu2.fetch.SquashCycles 623390 # Number of cycles fetch has spent squashing +system.cpu2.fetch.BlockedCycles 9684769 # Number of cycles fetch has spent blocked +system.cpu2.fetch.MiscStallCycles 10169 # Number of cycles fetch has spent waiting on interrupts, or bad addresses, or out of MSHRs +system.cpu2.fetch.PendingDrainCycles 1946 # Number of cycles fetch has spent waiting on pipes to drain +system.cpu2.fetch.PendingTrapStallCycles 65267 # Number of stall cycles due to pending traps +system.cpu2.fetch.PendingQuiesceStallCycles 78430 # Number of stall cycles due to pending quiesce instructions +system.cpu2.fetch.IcacheWaitRetryStallCycles 219 # Number of stall cycles due to full MSHR +system.cpu2.fetch.CacheLines 2618903 # Number of cache lines fetched +system.cpu2.fetch.IcacheSquashes 90402 # Number of outstanding Icache misses that were squashed +system.cpu2.fetch.rateDist::samples 26897224 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::mean 1.294576 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::stdev 2.310232 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::underflows 0 0.00% 0.00% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::0 18812084 69.94% 69.94% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::1 275091 1.02% 70.96% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::2 443313 1.65% 72.61% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::3 4200168 15.62% 88.23% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::4 736557 2.74% 90.97% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::5 167312 0.62% 91.59% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::6 197037 0.73% 92.32% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::7 432029 1.61% 93.93% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::8 1633633 6.07% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::overflows 0 0.00% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::min_value 0 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::max_value 8 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::total 26897224 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.branchRate 0.273792 # Number of branch fetches per cycle +system.cpu2.fetch.rate 1.139832 # Number of inst fetches per cycle +system.cpu2.decode.IdleCycles 8682356 # Number of cycles decode is idle +system.cpu2.decode.BlockedCycles 9793254 # Number of cycles decode is blocked +system.cpu2.decode.RunCycles 7488405 # Number of cycles decode is running +system.cpu2.decode.UnblockCycles 293704 # Number of cycles decode is unblocking +system.cpu2.decode.SquashCycles 393556 # Number of cycles decode is squashing +system.cpu2.decode.BranchResolved 170875 # Number of times decode resolved a branch +system.cpu2.decode.BranchMispred 13042 # Number of times decode detected a branch misprediction +system.cpu2.decode.DecodedInsts 34420320 # Number of instructions handled by decode +system.cpu2.decode.SquashedInsts 40663 # Number of squashed instructions handled by decode +system.cpu2.rename.SquashCycles 393556 # Number of cycles rename is squashing +system.cpu2.rename.IdleCycles 9037496 # Number of cycles rename is idle +system.cpu2.rename.BlockCycles 2819097 # Number of cycles rename is blocking +system.cpu2.rename.serializeStallCycles 5808677 # count of cycles rename stalled for serializing inst +system.cpu2.rename.RunCycles 7346220 # Number of cycles rename is running +system.cpu2.rename.UnblockCycles 1246237 # Number of cycles rename is unblocking +system.cpu2.rename.RenamedInsts 33260279 # Number of instructions processed by rename +system.cpu2.rename.ROBFullEvents 2326 # Number of times rename has blocked due to ROB full +system.cpu2.rename.IQFullEvents 233903 # Number of times rename has blocked due to IQ full +system.cpu2.rename.LSQFullEvents 407997 # Number of times rename has blocked due to LSQ full +system.cpu2.rename.RenamedOperands 22331754 # Number of destination operands rename has renamed +system.cpu2.rename.RenameLookups 41424509 # Number of register rename lookups that rename has made +system.cpu2.rename.int_rename_lookups 41259136 # Number of integer rename lookups +system.cpu2.rename.fp_rename_lookups 165373 # Number of floating rename lookups +system.cpu2.rename.CommittedMaps 20496437 # Number of HB maps that are committed +system.cpu2.rename.UndoneMaps 1835317 # Number of HB maps that are undone due to squashing +system.cpu2.rename.serializingInsts 510420 # count of serializing insts renamed +system.cpu2.rename.tempSerializingInsts 61593 # count of temporary serializing insts renamed +system.cpu2.rename.skidInsts 3691952 # count of insts added to the skid buffer +system.cpu2.memDep0.insertedLoads 3399315 # Number of loads inserted to the mem dependence unit. +system.cpu2.memDep0.insertedStores 2093436 # Number of stores inserted to the mem dependence unit. +system.cpu2.memDep0.conflictingLoads 371907 # Number of conflicting loads. +system.cpu2.memDep0.conflictingStores 254715 # Number of conflicting stores. +system.cpu2.iq.iqInstsAdded 30727225 # Number of instructions added to the IQ (excludes non-spec) +system.cpu2.iq.iqNonSpecInstsAdded 632539 # Number of non-speculative instructions added to the IQ +system.cpu2.iq.iqInstsIssued 30272118 # Number of instructions issued +system.cpu2.iq.iqSquashedInstsIssued 35753 # Number of squashed instructions issued +system.cpu2.iq.iqSquashedInstsExamined 2189784 # Number of squashed instructions iterated over during squash; mainly for profiling +system.cpu2.iq.iqSquashedOperandsExamined 1100567 # Number of squashed operands that are examined and possibly removed from graph +system.cpu2.iq.iqSquashedNonSpecRemoved 445757 # Number of squashed non-spec instructions that were removed +system.cpu2.iq.issued_per_cycle::samples 26897224 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::mean 1.125474 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::stdev 1.564893 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::underflows 0 0.00% 0.00% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::0 15350394 57.07% 57.07% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::1 3115885 11.58% 68.65% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::2 1557090 5.79% 74.44% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::3 5021564 18.67% 93.11% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::4 911830 3.39% 96.50% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::5 491728 1.83% 98.33% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::6 288005 1.07% 99.40% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::7 142453 0.53% 99.93% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::8 18275 0.07% 100.00% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::overflows 0 0.00% 100.00% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::min_value 0 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::max_value 8 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::total 26897224 # Number of insts issued each cycle +system.cpu2.iq.fu_full::No_OpClass 0 0.00% 0.00% # attempts to use FU when none available +system.cpu2.iq.fu_full::IntAlu 35285 14.01% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::IntMult 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::IntDiv 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatAdd 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatCmp 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatCvt 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatMult 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatDiv 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatSqrt 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdAdd 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdAddAcc 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdAlu 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdCmp 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdCvt 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdMisc 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdMult 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdMultAcc 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdShift 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdShiftAcc 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdSqrt 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatAdd 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatAlu 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatCmp 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatCvt 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatDiv 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatMisc 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatMult 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatMultAcc 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatSqrt 0 0.00% 14.01% # attempts to use FU when none available +system.cpu2.iq.fu_full::MemRead 113269 44.96% 58.96% # attempts to use FU when none available +system.cpu2.iq.fu_full::MemWrite 103382 41.04% 100.00% # attempts to use FU when none available +system.cpu2.iq.fu_full::IprAccess 0 0.00% 100.00% # attempts to use FU when none available +system.cpu2.iq.fu_full::InstPrefetch 0 0.00% 100.00% # attempts to use FU when none available +system.cpu2.iq.FU_type_0::No_OpClass 2456 0.01% 0.01% # Type of FU issued +system.cpu2.iq.FU_type_0::IntAlu 24555706 81.12% 81.12% # Type of FU issued +system.cpu2.iq.FU_type_0::IntMult 20320 0.07% 81.19% # Type of FU issued +system.cpu2.iq.FU_type_0::IntDiv 0 0.00% 81.19% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatAdd 8506 0.03% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatCmp 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatCvt 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatMult 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatDiv 1228 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatSqrt 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdAdd 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdAddAcc 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdAlu 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdCmp 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdCvt 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdMisc 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdMult 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdMultAcc 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdShift 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdShiftAcc 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdSqrt 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatAdd 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatAlu 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatCmp 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatCvt 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatDiv 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatMisc 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatMult 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatMultAcc 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatSqrt 0 0.00% 81.22% # Type of FU issued +system.cpu2.iq.FU_type_0::MemRead 3366886 11.12% 92.35% # Type of FU issued +system.cpu2.iq.FU_type_0::MemWrite 2024055 6.69% 99.03% # Type of FU issued +system.cpu2.iq.FU_type_0::IprAccess 292961 0.97% 100.00% # Type of FU issued +system.cpu2.iq.FU_type_0::InstPrefetch 0 0.00% 100.00% # Type of FU issued +system.cpu2.iq.FU_type_0::total 30272118 # Type of FU issued +system.cpu2.iq.rate 0.990943 # Inst issue rate +system.cpu2.iq.fu_busy_cnt 251936 # FU busy when requested +system.cpu2.iq.fu_busy_rate 0.008322 # FU busy rate (busy events/executed inst) +system.cpu2.iq.int_inst_queue_reads 87492046 # Number of integer instruction queue reads +system.cpu2.iq.int_inst_queue_writes 33437480 # Number of integer instruction queue writes +system.cpu2.iq.int_inst_queue_wakeup_accesses 29866501 # Number of integer instruction queue wakeup accesses +system.cpu2.iq.fp_inst_queue_reads 237103 # Number of floating instruction queue reads +system.cpu2.iq.fp_inst_queue_writes 115982 # Number of floating instruction queue writes +system.cpu2.iq.fp_inst_queue_wakeup_accesses 112325 # Number of floating instruction queue wakeup accesses +system.cpu2.iq.int_alu_accesses 30398156 # Number of integer alu accesses +system.cpu2.iq.fp_alu_accesses 123442 # Number of floating point alu accesses +system.cpu2.iew.lsq.thread0.forwLoads 190063 # Number of loads that had data forwarded from stores +system.cpu2.iew.lsq.thread0.invAddrLoads 0 # Number of loads ignored due to an invalid address +system.cpu2.iew.lsq.thread0.squashedLoads 422258 # Number of loads squashed +system.cpu2.iew.lsq.thread0.ignoredResponses 952 # Number of memory responses ignored because the instruction is squashed +system.cpu2.iew.lsq.thread0.memOrderViolation 4004 # Number of memory ordering violations +system.cpu2.iew.lsq.thread0.squashedStores 162752 # Number of stores squashed +system.cpu2.iew.lsq.thread0.invAddrSwpfs 0 # Number of software prefetches ignored due to an invalid address +system.cpu2.iew.lsq.thread0.blockedLoads 0 # Number of blocked loads due to partial load-store forwarding +system.cpu2.iew.lsq.thread0.rescheduledLoads 4980 # Number of loads that were rescheduled +system.cpu2.iew.lsq.thread0.cacheBlocked 23112 # Number of times an access to memory failed due to the cache being blocked +system.cpu2.iew.iewIdleCycles 0 # Number of cycles IEW is idle +system.cpu2.iew.iewSquashCycles 393556 # Number of cycles IEW is squashing +system.cpu2.iew.iewBlockCycles 2038103 # Number of cycles IEW is blocking +system.cpu2.iew.iewUnblockCycles 212197 # Number of cycles IEW is unblocking +system.cpu2.iew.iewDispatchedInsts 32647760 # Number of instructions dispatched to IQ +system.cpu2.iew.iewDispSquashedInsts 228888 # Number of squashed instructions skipped by dispatch +system.cpu2.iew.iewDispLoadInsts 3399315 # Number of dispatched load instructions +system.cpu2.iew.iewDispStoreInsts 2093436 # Number of dispatched store instructions +system.cpu2.iew.iewDispNonSpecInsts 561709 # Number of dispatched non-speculative instructions +system.cpu2.iew.iewIQFullEvents 150503 # Number of times the IQ has become full, causing a stall +system.cpu2.iew.iewLSQFullEvents 2400 # Number of times the LSQ has become full, causing a stall +system.cpu2.iew.memOrderViolationEvents 4004 # Number of memory order violations +system.cpu2.iew.predictedTakenIncorrect 66845 # Number of branches that were predicted taken incorrectly +system.cpu2.iew.predictedNotTakenIncorrect 130356 # Number of branches that were predicted not taken incorrectly +system.cpu2.iew.branchMispredicts 197201 # Number of branch mispredicts detected at execute +system.cpu2.iew.iewExecutedInsts 30107405 # Number of executed instructions +system.cpu2.iew.iewExecLoadInsts 3254707 # Number of load instructions executed +system.cpu2.iew.iewExecSquashedInsts 164713 # Number of squashed instructions skipped in execute +system.cpu2.iew.exec_swp 0 # number of swp insts executed +system.cpu2.iew.exec_nop 1287996 # number of nop insts executed +system.cpu2.iew.exec_refs 5262746 # number of memory reference insts executed +system.cpu2.iew.exec_branches 6765344 # Number of branches executed +system.cpu2.iew.exec_stores 2008039 # Number of stores executed +system.cpu2.iew.exec_rate 0.985551 # Inst execution rate +system.cpu2.iew.wb_sent 30012235 # cumulative count of insts sent to commit +system.cpu2.iew.wb_count 29978826 # cumulative count of insts written-back +system.cpu2.iew.wb_producers 17295143 # num instructions producing a value +system.cpu2.iew.wb_consumers 20538847 # num instructions consuming a value +system.cpu2.iew.wb_penalized 0 # number of instrctions required to write to 'other' IQ +system.cpu2.iew.wb_rate 0.981342 # insts written-back per cycle +system.cpu2.iew.wb_fanout 0.842070 # average fanout of values written-back +system.cpu2.iew.wb_penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ +system.cpu2.commit.commitSquashedInsts 2374409 # The number of squashed insts skipped by commit +system.cpu2.commit.commitNonSpecStalls 186782 # The number of times commit has been forced to stall to communicate backwards +system.cpu2.commit.branchMispredicts 183048 # The number of times a branch was mispredicted +system.cpu2.commit.committed_per_cycle::samples 26503668 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::mean 1.140514 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::stdev 1.850633 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::underflows 0 0.00% 0.00% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::0 16405527 61.90% 61.90% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::1 2337415 8.82% 70.72% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::2 1218938 4.60% 75.32% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::3 4753611 17.94% 93.25% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::4 502619 1.90% 95.15% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::5 186793 0.70% 95.85% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::6 180491 0.68% 96.54% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::7 181897 0.69% 97.22% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::8 736377 2.78% 100.00% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::overflows 0 0.00% 100.00% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::min_value 0 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::max_value 8 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::total 26503668 # Number of insts commited each cycle +system.cpu2.commit.committedInsts 30227806 # Number of instructions committed +system.cpu2.commit.committedOps 30227806 # Number of ops (including micro ops) committed +system.cpu2.commit.swp_count 0 # Number of s/w prefetches committed +system.cpu2.commit.refs 4907741 # Number of memory references committed +system.cpu2.commit.loads 2977057 # Number of loads committed +system.cpu2.commit.membars 65125 # Number of memory barriers committed +system.cpu2.commit.branches 6615814 # Number of branches committed +system.cpu2.commit.fp_insts 111064 # Number of committed floating point instructions. +system.cpu2.commit.int_insts 28762873 # Number of committed integer instructions. +system.cpu2.commit.function_calls 231817 # Number of function calls committed. +system.cpu2.commit.bw_lim_events 736377 # number cycles where commit BW limit reached +system.cpu2.commit.bw_limited 0 # number of insts not committed due to BW limits +system.cpu2.rob.rob_reads 58294713 # The number of ROB reads +system.cpu2.rob.rob_writes 65597739 # The number of ROB writes +system.cpu2.timesIdled 244101 # Number of times that the entire CPU went into an idle state and unscheduled itself +system.cpu2.idleCycles 3651581 # Total number of cycles that the CPU has spent unscheduled due to idling +system.cpu2.quiesceCycles 1745276463 # Total number of cycles that CPU has spent quiesced or waiting for an interrupt +system.cpu2.committedInsts 29049036 # Number of Instructions Simulated +system.cpu2.committedOps 29049036 # Number of Ops (including micro ops) Simulated +system.cpu2.committedInsts_total 29049036 # Number of Instructions Simulated +system.cpu2.cpi 1.051629 # CPI: Cycles Per Instruction +system.cpu2.cpi_total 1.051629 # CPI: Total CPI of All Threads +system.cpu2.ipc 0.950906 # IPC: Instructions Per Cycle +system.cpu2.ipc_total 0.950906 # IPC: Total IPC of All Threads +system.cpu2.int_regfile_reads 39585060 # number of integer regfile reads +system.cpu2.int_regfile_writes 21198431 # number of integer regfile writes +system.cpu2.fp_regfile_reads 68487 # number of floating regfile reads +system.cpu2.fp_regfile_writes 68830 # number of floating regfile writes +system.cpu2.misc_regfile_reads 4557721 # number of misc regfile reads +system.cpu2.misc_regfile_writes 264115 # number of misc regfile writes +system.cpu2.kern.inst.arm 0 # number of arm instructions executed +system.cpu2.kern.inst.quiesce 0 # number of quiesce instructions executed +system.cpu2.kern.inst.hwrei 0 # number of hwrei instructions executed +system.cpu2.kern.mode_switch::kernel 0 # number of protection mode switches +system.cpu2.kern.mode_switch::user 0 # number of protection mode switches +system.cpu2.kern.mode_switch::idle 0 # number of protection mode switches +system.cpu2.kern.mode_good::kernel 0 +system.cpu2.kern.mode_good::user 0 +system.cpu2.kern.mode_good::idle 0 +system.cpu2.kern.mode_switch_good::kernel nan # fraction of useful protection mode switches +system.cpu2.kern.mode_switch_good::user nan # fraction of useful protection mode switches +system.cpu2.kern.mode_switch_good::idle nan # fraction of useful protection mode switches +system.cpu2.kern.mode_switch_good::total nan # fraction of useful protection mode switches +system.cpu2.kern.mode_ticks::kernel 0 # number of ticks spent at the given mode +system.cpu2.kern.mode_ticks::user 0 # number of ticks spent at the given mode +system.cpu2.kern.mode_ticks::idle 0 # number of ticks spent at the given mode +system.cpu2.kern.swap_context 0 # number of times the context was actually changed + +---------- End Simulation Statistics ---------- diff --git a/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/system.terminal b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/system.terminal new file mode 100644 index 000000000..8a879f578 --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/alpha/linux/tsunami-switcheroo-full/system.terminal @@ -0,0 +1,108 @@ +M5 console: m5AlphaAccess @ 0xFFFFFD0200000000 + Got Configuration 623 + memsize 8000000 pages 4000 + First free page after ROM 0xFFFFFC0000018000 + HWRPB 0xFFFFFC0000018000 l1pt 0xFFFFFC0000040000 l2pt 0xFFFFFC0000042000 l3pt_rpb 0xFFFFFC0000044000 l3pt_kernel 0xFFFFFC0000048000 l2reserv 0xFFFFFC0000046000 + kstart = 0xFFFFFC0000310000, kend = 0xFFFFFC0000855898, kentry = 0xFFFFFC0000310000, numCPUs = 0x1 + CPU Clock at 2000 MHz IntrClockFrequency=1024 + Booting with 1 processor(s) + KSP: 0x20043FE8 PTBR 0x20 + Console Callback at 0x0, fixup at 0x0, crb offset: 0x510 + Memory cluster 0 [0 - 392] + Memory cluster 1 [392 - 15992] + Initalizing mdt_bitmap addr 0xFFFFFC0000038000 mem_pages 4000 + ConsoleDispatch at virt 10000658 phys 18658 val FFFFFC00000100A8 + unix_boot_mem ends at FFFFFC0000076000 + k_argc = 0 + jumping to kernel at 0xFFFFFC0000310000, (PCBB 0xFFFFFC0000018180 pfn 1067) + CallbackFixup 0 18000, t7=FFFFFC000070C000 + Linux version 2.6.13 (hsul@zed.eecs.umich.edu) (gcc version 3.4.3) #1 SMP Sun Oct 8 19:52:07 EDT 2006 + Booting GENERIC on Tsunami variation DP264 using machine vector DP264 from SRM + Major Options: SMP LEGACY_START VERBOSE_MCHECK + Command line: root=/dev/hda1 console=ttyS0 + memcluster 0, usage 1, start 0, end 392 + memcluster 1, usage 0, start 392, end 16384 + freeing pages 1069:16384 + reserving pages 1069:1070 + 4096K Bcache detected; load hit latency 6 cycles, load miss latency 32 cycles + SMP: 1 CPUs probed -- cpu_present_mask = 1 + Built 1 zonelists + Kernel command line: root=/dev/hda1 console=ttyS0 + PID hash table entries: 1024 (order: 10, 32768 bytes) + Using epoch = 1900 + Console: colour dummy device 80x25 + Dentry cache hash table entries: 32768 (order: 5, 262144 bytes) + Inode-cache hash table entries: 16384 (order: 4, 131072 bytes) + Memory: 118784k/131072k available (3314k kernel code, 8952k reserved, 983k data, 224k init) + Mount-cache hash table entries: 512 + SMP mode deactivated. + Brought up 1 CPUs + SMP: Total of 1 processors activated (4002.20 BogoMIPS). + NET: Registered protocol family 16 + EISA bus registered + pci: enabling save/restore of SRM state + SCSI subsystem initialized + srm_env: version 0.0.5 loaded successfully + Installing knfsd (copyright (C) 1996 okir@monad.swb.de). + Initializing Cryptographic API + rtc: Standard PC (1900) epoch (1900) detected + Real Time Clock Driver v1.12 + Serial: 8250/16550 driver $Revision: 1.90 $ 1 ports, IRQ sharing disabled + ttyS0 at I/O 0x3f8 (irq = 4) is a 8250 + io scheduler noop registered + io scheduler anticipatory registered + io scheduler deadline registered + io scheduler cfq registered + loop: loaded (max 8 devices) + nbd: registered device at major 43 + ns83820.c: National Semiconductor DP83820 10/100/1000 driver. + PCI: Setting latency timer of device 0000:00:01.0 to 64 + eth0: ns83820.c: 0x22c: 00000000, subsystem: 0000:0000 + eth0: enabling optical transceiver + eth0: using 64 bit addressing. + eth0: ns83820 v0.22: DP83820 v1.3: 00:90:00:00:00:01 io=0x09000000 irq=30 f=h,sg + tun: Universal TUN/TAP device driver, 1.6 + tun: (C) 1999-2004 Max Krasnyansky + Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 + ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx + PIIX4: IDE controller at PCI slot 0000:00:00.0 + PIIX4: chipset revision 0 + PIIX4: 100% native mode on irq 31 + PCI: Setting latency timer of device 0000:00:00.0 to 64 + ide0: BM-DMA at 0x8400-0x8407, BIOS settings: hda:DMA, hdb:DMA + ide1: BM-DMA at 0x8408-0x840f, BIOS settings: hdc:DMA, hdd:DMA + hda: M5 IDE Disk, ATA DISK drive + hdb: M5 IDE Disk, ATA DISK drive + ide0 at 0x8410-0x8417,0x8422 on irq 31 + hda: max request size: 128KiB + hda: 101808 sectors (52 MB), CHS=101/16/63, UDMA(33) + hda: cache flushes not supported + hda: hda1 + hdb: max request size: 128KiB + hdb: 4177920 sectors (2139 MB), CHS=4144/16/63, UDMA(33) + hdb: cache flushes not supported + hdb: unknown partition table + mice: PS/2 mouse device common for all mice + NET: Registered protocol family 2 + IP route cache hash table entries: 4096 (order: 2, 32768 bytes) + TCP established hash table entries: 16384 (order: 5, 262144 bytes) + TCP bind hash table entries: 16384 (order: 5, 262144 bytes) + TCP: Hash tables configured (established 16384 bind 16384) + TCP reno registered + ip_conntrack version 2.1 (512 buckets, 4096 max) - 296 bytes per conntrack + ip_tables: (C) 2000-2002 Netfilter core team + arp_tables: (C) 2002 David S. Miller + TCP bic registered + Initializing IPsec netlink socket + NET: Registered protocol family 1 + NET: Registered protocol family 17 + NET: Registered protocol family 15 + Bridge firewalling registered + 802.1Q VLAN Support v1.8 Ben Greear + All bugs added by David S. Miller + VFS: Mounted root (ext2 filesystem) readonly. + Freeing unused kernel memory: 224k freed + init started: BusyBox v1.1.0 (2007.03.04-01:07+0000) multi-call binary +mounting filesystems... +EXT2-fs warning: checktime reached, running e2fsck is recommended + loading script... diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/config.ini b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/config.ini new file mode 100644 index 000000000..fbde95c56 --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/config.ini @@ -0,0 +1,1204 @@ +[root] +type=Root +children=system +full_system=true +time_sync_enable=false +time_sync_period=100000000000 +time_sync_spin_threshold=100000000 + +[system] +type=LinuxArmSystem +children=bridge cf0 cpu0 cpu1 cpu2 intrctrl iobus iocache l2c membus physmem realview terminal toL2Bus vncserver +atags_addr=256 +boot_loader=/arm/scratch/sysexplr/dist/binaries/boot.arm +boot_osflags=earlyprintk console=ttyAMA0 lpj=19988480 norandmaps rw loglevel=8 mem=128MB root=/dev/sda1 +clock=1000 +dtb_filename= +early_kernel_symbols=false +enable_context_switch_stats_dump=false +flags_addr=268435504 +gic_cpu_addr=520093952 +init_param=0 +kernel=/arm/scratch/sysexplr/dist/binaries/vmlinux.arm.smp.fb.2.6.38.8 +load_addr_mask=268435455 +machine_type=RealView_PBX +mem_mode=atomic +mem_ranges=0:134217727 +memories=system.physmem system.realview.nvmem +multi_proc=true +num_work_ids=16 +panic_on_oops=true +panic_on_panic=true +readfile=tests/halt.sh +symbolfile= +work_begin_ckpt_count=0 +work_begin_cpu_id_exit=-1 +work_begin_exit_count=0 +work_cpus_ckpt_count=0 +work_end_ckpt_count=0 +work_end_exit_count=0 +work_item_id=-1 +system_port=system.membus.slave[0] + +[system.bridge] +type=Bridge +clock=1000 +delay=50000 +ranges=268435456:520093695 1073741824:1610612735 +req_size=16 +resp_size=16 +master=system.iobus.slave[0] +slave=system.membus.master[0] + +[system.cf0] +type=IdeDisk +children=image +delay=1000000 +driveID=master +image=system.cf0.image + +[system.cf0.image] +type=CowDiskImage +children=child +child=system.cf0.image.child +image_file= +read_only=false +table_size=65536 + +[system.cf0.image.child] +type=RawDiskImage +image_file=/arm/scratch/sysexplr/dist/disks/linux-arm-ael.img +read_only=true + +[system.cpu0] +type=AtomicSimpleCPU +children=dcache dtb icache interrupts isa itb tracer +checker=Null +clock=500 +cpu_id=0 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu0.dtb +fastmem=false +function_trace=false +function_trace_start=0 +interrupts=system.cpu0.interrupts +isa=system.cpu0.isa +itb=system.cpu0.itb +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +numThreads=1 +profile=0 +progress_interval=0 +simulate_data_stalls=false +simulate_inst_stalls=false +switched_out=false +system=system +tracer=system.cpu0.tracer +width=1 +workload= +dcache_port=system.cpu0.dcache.cpu_side +icache_port=system.cpu0.icache.cpu_side + +[system.cpu0.dcache] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=4 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=2 +is_top_level=true +max_miss_count=0 +mshrs=4 +prefetch_on_access=false +prefetcher=Null +response_latency=2 +size=32768 +system=system +tgts_per_mshr=20 +two_queue=false +write_buffers=8 +cpu_side=system.cpu0.dcache_port +mem_side=system.toL2Bus.slave[1] + +[system.cpu0.dtb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu0.dtb.walker + +[system.cpu0.dtb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system +port=system.toL2Bus.slave[3] + +[system.cpu0.icache] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=1 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=2 +is_top_level=true +max_miss_count=0 +mshrs=4 +prefetch_on_access=false +prefetcher=Null +response_latency=2 +size=32768 +system=system +tgts_per_mshr=20 +two_queue=false +write_buffers=8 +cpu_side=system.cpu0.icache_port +mem_side=system.toL2Bus.slave[0] + +[system.cpu0.interrupts] +type=ArmInterrupts + +[system.cpu0.isa] +type=ArmISA +fpsid=1090793632 +id_isar0=34607377 +id_isar1=34677009 +id_isar2=555950401 +id_isar3=17899825 +id_isar4=268501314 +id_isar5=0 +id_mmfr0=3 +id_mmfr1=0 +id_mmfr2=19070976 +id_mmfr3=4027589137 +id_pfr0=49 +id_pfr1=1 +midr=890224640 + +[system.cpu0.itb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu0.itb.walker + +[system.cpu0.itb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system +port=system.toL2Bus.slave[2] + +[system.cpu0.tracer] +type=ExeTracer + +[system.cpu1] +type=TimingSimpleCPU +children=dtb interrupts isa itb tracer +checker=Null +clock=500 +cpu_id=0 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu1.dtb +function_trace=false +function_trace_start=0 +interrupts=system.cpu1.interrupts +isa=system.cpu1.isa +itb=system.cpu1.itb +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +numThreads=1 +profile=0 +progress_interval=0 +switched_out=true +system=system +tracer=system.cpu1.tracer +workload= + +[system.cpu1.dtb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu1.dtb.walker + +[system.cpu1.dtb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system + +[system.cpu1.interrupts] +type=ArmInterrupts + +[system.cpu1.isa] +type=ArmISA +fpsid=1090793632 +id_isar0=34607377 +id_isar1=34677009 +id_isar2=555950401 +id_isar3=17899825 +id_isar4=268501314 +id_isar5=0 +id_mmfr0=3 +id_mmfr1=0 +id_mmfr2=19070976 +id_mmfr3=4027589137 +id_pfr0=49 +id_pfr1=1 +midr=890224640 + +[system.cpu1.itb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu1.itb.walker + +[system.cpu1.itb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system + +[system.cpu1.tracer] +type=ExeTracer + +[system.cpu2] +type=DerivO3CPU +children=dtb fuPool interrupts isa itb tracer +BTBEntries=4096 +BTBTagSize=16 +LFSTSize=1024 +LQEntries=32 +LSQCheckLoads=true +LSQDepCheckShift=4 +RASSize=16 +SQEntries=32 +SSITSize=1024 +activity=0 +backComSize=5 +cachePorts=200 +checker=Null +choiceCtrBits=2 +choicePredictorSize=8192 +clock=500 +commitToDecodeDelay=1 +commitToFetchDelay=1 +commitToIEWDelay=1 +commitToRenameDelay=1 +commitWidth=8 +cpu_id=0 +decodeToFetchDelay=1 +decodeToRenameDelay=1 +decodeWidth=8 +dispatchWidth=8 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu2.dtb +fetchToDecodeDelay=1 +fetchTrapLatency=1 +fetchWidth=8 +forwardComSize=5 +fuPool=system.cpu2.fuPool +function_trace=false +function_trace_start=0 +globalCtrBits=2 +globalHistoryBits=13 +globalPredictorSize=8192 +iewToCommitDelay=1 +iewToDecodeDelay=1 +iewToFetchDelay=1 +iewToRenameDelay=1 +instShiftAmt=2 +interrupts=system.cpu2.interrupts +isa=system.cpu2.isa +issueToExecuteDelay=1 +issueWidth=8 +itb=system.cpu2.itb +localCtrBits=2 +localHistoryBits=11 +localHistoryTableSize=2048 +localPredictorSize=2048 +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +needsTSO=false +numIQEntries=64 +numPhysFloatRegs=256 +numPhysIntRegs=256 +numROBEntries=192 +numRobs=1 +numThreads=1 +predType=tournament +profile=0 +progress_interval=0 +renameToDecodeDelay=1 +renameToFetchDelay=1 +renameToIEWDelay=2 +renameToROBDelay=1 +renameWidth=8 +smtCommitPolicy=RoundRobin +smtFetchPolicy=SingleThread +smtIQPolicy=Partitioned +smtIQThreshold=100 +smtLSQPolicy=Partitioned +smtLSQThreshold=100 +smtNumFetchingThreads=1 +smtROBPolicy=Partitioned +smtROBThreshold=100 +squashWidth=8 +store_set_clear_period=250000 +switched_out=true +system=system +tracer=system.cpu2.tracer +trapLatency=13 +wbDepth=1 +wbWidth=8 +workload= + +[system.cpu2.dtb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu2.dtb.walker + +[system.cpu2.dtb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system + +[system.cpu2.fuPool] +type=FUPool +children=FUList0 FUList1 FUList2 FUList3 FUList4 FUList5 FUList6 FUList7 FUList8 +FUList=system.cpu2.fuPool.FUList0 system.cpu2.fuPool.FUList1 system.cpu2.fuPool.FUList2 system.cpu2.fuPool.FUList3 system.cpu2.fuPool.FUList4 system.cpu2.fuPool.FUList5 system.cpu2.fuPool.FUList6 system.cpu2.fuPool.FUList7 system.cpu2.fuPool.FUList8 + +[system.cpu2.fuPool.FUList0] +type=FUDesc +children=opList +count=6 +opList=system.cpu2.fuPool.FUList0.opList + +[system.cpu2.fuPool.FUList0.opList] +type=OpDesc +issueLat=1 +opClass=IntAlu +opLat=1 + +[system.cpu2.fuPool.FUList1] +type=FUDesc +children=opList0 opList1 +count=2 +opList=system.cpu2.fuPool.FUList1.opList0 system.cpu2.fuPool.FUList1.opList1 + +[system.cpu2.fuPool.FUList1.opList0] +type=OpDesc +issueLat=1 +opClass=IntMult +opLat=3 + +[system.cpu2.fuPool.FUList1.opList1] +type=OpDesc +issueLat=19 +opClass=IntDiv +opLat=20 + +[system.cpu2.fuPool.FUList2] +type=FUDesc +children=opList0 opList1 opList2 +count=4 +opList=system.cpu2.fuPool.FUList2.opList0 system.cpu2.fuPool.FUList2.opList1 system.cpu2.fuPool.FUList2.opList2 + +[system.cpu2.fuPool.FUList2.opList0] +type=OpDesc +issueLat=1 +opClass=FloatAdd +opLat=2 + +[system.cpu2.fuPool.FUList2.opList1] +type=OpDesc +issueLat=1 +opClass=FloatCmp +opLat=2 + +[system.cpu2.fuPool.FUList2.opList2] +type=OpDesc +issueLat=1 +opClass=FloatCvt +opLat=2 + +[system.cpu2.fuPool.FUList3] +type=FUDesc +children=opList0 opList1 opList2 +count=2 +opList=system.cpu2.fuPool.FUList3.opList0 system.cpu2.fuPool.FUList3.opList1 system.cpu2.fuPool.FUList3.opList2 + +[system.cpu2.fuPool.FUList3.opList0] +type=OpDesc +issueLat=1 +opClass=FloatMult +opLat=4 + +[system.cpu2.fuPool.FUList3.opList1] +type=OpDesc +issueLat=12 +opClass=FloatDiv +opLat=12 + +[system.cpu2.fuPool.FUList3.opList2] +type=OpDesc +issueLat=24 +opClass=FloatSqrt +opLat=24 + +[system.cpu2.fuPool.FUList4] +type=FUDesc +children=opList +count=0 +opList=system.cpu2.fuPool.FUList4.opList + +[system.cpu2.fuPool.FUList4.opList] +type=OpDesc +issueLat=1 +opClass=MemRead +opLat=1 + +[system.cpu2.fuPool.FUList5] +type=FUDesc +children=opList00 opList01 opList02 opList03 opList04 opList05 opList06 opList07 opList08 opList09 opList10 opList11 opList12 opList13 opList14 opList15 opList16 opList17 opList18 opList19 +count=4 +opList=system.cpu2.fuPool.FUList5.opList00 system.cpu2.fuPool.FUList5.opList01 system.cpu2.fuPool.FUList5.opList02 system.cpu2.fuPool.FUList5.opList03 system.cpu2.fuPool.FUList5.opList04 system.cpu2.fuPool.FUList5.opList05 system.cpu2.fuPool.FUList5.opList06 system.cpu2.fuPool.FUList5.opList07 system.cpu2.fuPool.FUList5.opList08 system.cpu2.fuPool.FUList5.opList09 system.cpu2.fuPool.FUList5.opList10 system.cpu2.fuPool.FUList5.opList11 system.cpu2.fuPool.FUList5.opList12 system.cpu2.fuPool.FUList5.opList13 system.cpu2.fuPool.FUList5.opList14 system.cpu2.fuPool.FUList5.opList15 system.cpu2.fuPool.FUList5.opList16 system.cpu2.fuPool.FUList5.opList17 system.cpu2.fuPool.FUList5.opList18 system.cpu2.fuPool.FUList5.opList19 + +[system.cpu2.fuPool.FUList5.opList00] +type=OpDesc +issueLat=1 +opClass=SimdAdd +opLat=1 + +[system.cpu2.fuPool.FUList5.opList01] +type=OpDesc +issueLat=1 +opClass=SimdAddAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList02] +type=OpDesc +issueLat=1 +opClass=SimdAlu +opLat=1 + +[system.cpu2.fuPool.FUList5.opList03] +type=OpDesc +issueLat=1 +opClass=SimdCmp +opLat=1 + +[system.cpu2.fuPool.FUList5.opList04] +type=OpDesc +issueLat=1 +opClass=SimdCvt +opLat=1 + +[system.cpu2.fuPool.FUList5.opList05] +type=OpDesc +issueLat=1 +opClass=SimdMisc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList06] +type=OpDesc +issueLat=1 +opClass=SimdMult +opLat=1 + +[system.cpu2.fuPool.FUList5.opList07] +type=OpDesc +issueLat=1 +opClass=SimdMultAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList08] +type=OpDesc +issueLat=1 +opClass=SimdShift +opLat=1 + +[system.cpu2.fuPool.FUList5.opList09] +type=OpDesc +issueLat=1 +opClass=SimdShiftAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList10] +type=OpDesc +issueLat=1 +opClass=SimdSqrt +opLat=1 + +[system.cpu2.fuPool.FUList5.opList11] +type=OpDesc +issueLat=1 +opClass=SimdFloatAdd +opLat=1 + +[system.cpu2.fuPool.FUList5.opList12] +type=OpDesc +issueLat=1 +opClass=SimdFloatAlu +opLat=1 + +[system.cpu2.fuPool.FUList5.opList13] +type=OpDesc +issueLat=1 +opClass=SimdFloatCmp +opLat=1 + +[system.cpu2.fuPool.FUList5.opList14] +type=OpDesc +issueLat=1 +opClass=SimdFloatCvt +opLat=1 + +[system.cpu2.fuPool.FUList5.opList15] +type=OpDesc +issueLat=1 +opClass=SimdFloatDiv +opLat=1 + +[system.cpu2.fuPool.FUList5.opList16] +type=OpDesc +issueLat=1 +opClass=SimdFloatMisc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList17] +type=OpDesc +issueLat=1 +opClass=SimdFloatMult +opLat=1 + +[system.cpu2.fuPool.FUList5.opList18] +type=OpDesc +issueLat=1 +opClass=SimdFloatMultAcc +opLat=1 + +[system.cpu2.fuPool.FUList5.opList19] +type=OpDesc +issueLat=1 +opClass=SimdFloatSqrt +opLat=1 + +[system.cpu2.fuPool.FUList6] +type=FUDesc +children=opList +count=0 +opList=system.cpu2.fuPool.FUList6.opList + +[system.cpu2.fuPool.FUList6.opList] +type=OpDesc +issueLat=1 +opClass=MemWrite +opLat=1 + +[system.cpu2.fuPool.FUList7] +type=FUDesc +children=opList0 opList1 +count=4 +opList=system.cpu2.fuPool.FUList7.opList0 system.cpu2.fuPool.FUList7.opList1 + +[system.cpu2.fuPool.FUList7.opList0] +type=OpDesc +issueLat=1 +opClass=MemRead +opLat=1 + +[system.cpu2.fuPool.FUList7.opList1] +type=OpDesc +issueLat=1 +opClass=MemWrite +opLat=1 + +[system.cpu2.fuPool.FUList8] +type=FUDesc +children=opList +count=1 +opList=system.cpu2.fuPool.FUList8.opList + +[system.cpu2.fuPool.FUList8.opList] +type=OpDesc +issueLat=3 +opClass=IprAccess +opLat=3 + +[system.cpu2.interrupts] +type=ArmInterrupts + +[system.cpu2.isa] +type=ArmISA +fpsid=1090793632 +id_isar0=34607377 +id_isar1=34677009 +id_isar2=555950401 +id_isar3=17899825 +id_isar4=268501314 +id_isar5=0 +id_mmfr0=3 +id_mmfr1=0 +id_mmfr2=19070976 +id_mmfr3=4027589137 +id_pfr0=49 +id_pfr1=1 +midr=890224640 + +[system.cpu2.itb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu2.itb.walker + +[system.cpu2.itb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system + +[system.cpu2.tracer] +type=ExeTracer + +[system.intrctrl] +type=IntrControl +sys=system + +[system.iobus] +type=NoncoherentBus +block_size=64 +clock=1000 +header_cycles=1 +use_default_range=false +width=8 +master=system.realview.uart.pio system.realview.realview_io.pio system.realview.timer0.pio system.realview.timer1.pio system.realview.clcd.pio system.realview.kmi0.pio system.realview.kmi1.pio system.realview.cf_ctrl.pio system.realview.cf_ctrl.config system.realview.dmac_fake.pio system.realview.uart1_fake.pio system.realview.uart2_fake.pio system.realview.uart3_fake.pio system.realview.smc_fake.pio system.realview.sp810_fake.pio system.realview.watchdog_fake.pio system.realview.gpio0_fake.pio system.realview.gpio1_fake.pio system.realview.gpio2_fake.pio system.realview.ssp_fake.pio system.realview.sci_fake.pio system.realview.aaci_fake.pio system.realview.mmc_fake.pio system.realview.rtc.pio system.realview.flash_fake.pio system.iocache.cpu_side +slave=system.bridge.master system.realview.clcd.dma system.realview.cf_ctrl.dma + +[system.iocache] +type=BaseCache +addr_ranges=0:134217727 +assoc=8 +block_size=64 +clock=1000 +forward_snoops=false +hit_latency=50 +is_top_level=true +max_miss_count=0 +mshrs=20 +prefetch_on_access=false +prefetcher=Null +response_latency=50 +size=1024 +system=system +tgts_per_mshr=12 +two_queue=false +write_buffers=8 +cpu_side=system.iobus.master[25] +mem_side=system.membus.slave[2] + +[system.l2c] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=8 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=20 +is_top_level=false +max_miss_count=0 +mshrs=20 +prefetch_on_access=false +prefetcher=Null +response_latency=20 +size=4194304 +system=system +tgts_per_mshr=12 +two_queue=false +write_buffers=8 +cpu_side=system.toL2Bus.master[0] +mem_side=system.membus.slave[1] + +[system.membus] +type=CoherentBus +children=badaddr_responder +block_size=64 +clock=1000 +header_cycles=1 +use_default_range=false +width=8 +default=system.membus.badaddr_responder.pio +master=system.bridge.slave system.realview.nvmem.port system.physmem.port system.realview.gic.pio system.realview.l2x0_fake.pio system.realview.a9scu.pio system.realview.local_cpu_timer.pio +slave=system.system_port system.l2c.mem_side system.iocache.mem_side + +[system.membus.badaddr_responder] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=0 +pio_latency=100000 +pio_size=8 +ret_bad_addr=true +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access=warn +pio=system.membus.default + +[system.physmem] +type=SimpleDRAM +addr_mapping=openmap +banks_per_rank=8 +clock=1000 +conf_table_reported=true +in_addr_map=true +lines_per_rowbuffer=64 +mem_sched_policy=fcfs +null=false +page_policy=open +range=0:134217727 +ranks_per_channel=2 +read_buffer_size=32 +tBURST=4000 +tCL=14000 +tRCD=14000 +tREFI=7800000 +tRFC=300000 +tRP=14000 +tWTR=1000 +write_buffer_size=32 +write_thresh_perc=70 +zero=false +port=system.membus.master[2] + +[system.realview] +type=RealView +children=a9scu aaci_fake cf_ctrl clcd dmac_fake flash_fake gic gpio0_fake gpio1_fake gpio2_fake kmi0 kmi1 l2x0_fake local_cpu_timer mmc_fake nvmem realview_io rtc sci_fake smc_fake sp810_fake ssp_fake timer0 timer1 uart uart1_fake uart2_fake uart3_fake watchdog_fake +intrctrl=system.intrctrl +max_mem_size=268435456 +mem_start_addr=0 +pci_cfg_base=0 +system=system + +[system.realview.a9scu] +type=A9SCU +clock=1000 +pio_addr=520093696 +pio_latency=100000 +system=system +pio=system.membus.master[5] + +[system.realview.aaci_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268451840 +pio_latency=100000 +system=system +pio=system.iobus.master[21] + +[system.realview.cf_ctrl] +type=IdeController +BAR0=402653184 +BAR0LegacyIO=true +BAR0Size=16 +BAR1=402653440 +BAR1LegacyIO=true +BAR1Size=1 +BAR2=1 +BAR2LegacyIO=false +BAR2Size=8 +BAR3=1 +BAR3LegacyIO=false +BAR3Size=4 +BAR4=1 +BAR4LegacyIO=false +BAR4Size=16 +BAR5=1 +BAR5LegacyIO=false +BAR5Size=0 +BIST=0 +CacheLineSize=0 +CardbusCIS=0 +ClassCode=1 +Command=1 +DeviceID=28945 +ExpansionROM=0 +HeaderType=0 +InterruptLine=31 +InterruptPin=1 +LatencyTimer=0 +MaximumLatency=0 +MinimumGrant=0 +ProgIF=133 +Revision=0 +Status=640 +SubClassCode=1 +SubsystemID=0 +SubsystemVendorID=0 +VendorID=32902 +clock=1000 +config_latency=20000 +ctrl_offset=2 +disks=system.cf0 +io_shift=1 +pci_bus=2 +pci_dev=7 +pci_func=0 +pio_latency=30000 +platform=system.realview +system=system +config=system.iobus.master[8] +dma=system.iobus.slave[2] +pio=system.iobus.master[7] + +[system.realview.clcd] +type=Pl111 +amba_id=1315089 +clock=1000 +gic=system.realview.gic +int_num=55 +pio_addr=268566528 +pio_latency=10000 +pixel_clock=41667 +system=system +vnc=system.vncserver +dma=system.iobus.slave[1] +pio=system.iobus.master[4] + +[system.realview.dmac_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268632064 +pio_latency=100000 +system=system +pio=system.iobus.master[9] + +[system.realview.flash_fake] +type=IsaFake +clock=1000 +fake_mem=true +pio_addr=1073741824 +pio_latency=100000 +pio_size=536870912 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[24] + +[system.realview.gic] +type=Gic +clock=1000 +cpu_addr=520093952 +cpu_pio_delay=10000 +dist_addr=520097792 +dist_pio_delay=10000 +int_latency=10000 +it_lines=128 +platform=system.realview +system=system +pio=system.membus.master[3] + +[system.realview.gpio0_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268513280 +pio_latency=100000 +system=system +pio=system.iobus.master[16] + +[system.realview.gpio1_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268517376 +pio_latency=100000 +system=system +pio=system.iobus.master[17] + +[system.realview.gpio2_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268521472 +pio_latency=100000 +system=system +pio=system.iobus.master[18] + +[system.realview.kmi0] +type=Pl050 +amba_id=1314896 +clock=1000 +gic=system.realview.gic +int_delay=1000000 +int_num=52 +is_mouse=false +pio_addr=268460032 +pio_latency=100000 +system=system +vnc=system.vncserver +pio=system.iobus.master[5] + +[system.realview.kmi1] +type=Pl050 +amba_id=1314896 +clock=1000 +gic=system.realview.gic +int_delay=1000000 +int_num=53 +is_mouse=true +pio_addr=268464128 +pio_latency=100000 +system=system +vnc=system.vncserver +pio=system.iobus.master[6] + +[system.realview.l2x0_fake] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=520101888 +pio_latency=100000 +pio_size=4095 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.membus.master[4] + +[system.realview.local_cpu_timer] +type=CpuLocalTimer +clock=1000 +gic=system.realview.gic +int_num_timer=29 +int_num_watchdog=30 +pio_addr=520095232 +pio_latency=100000 +system=system +pio=system.membus.master[6] + +[system.realview.mmc_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268455936 +pio_latency=100000 +system=system +pio=system.iobus.master[22] + +[system.realview.nvmem] +type=SimpleMemory +bandwidth=73.000000 +clock=1000 +conf_table_reported=false +in_addr_map=true +latency=30000 +latency_var=0 +null=false +range=2147483648:2214592511 +zero=true +port=system.membus.master[1] + +[system.realview.realview_io] +type=RealViewCtrl +clock=1000 +idreg=0 +pio_addr=268435456 +pio_latency=100000 +proc_id0=201326592 +proc_id1=201327138 +system=system +pio=system.iobus.master[1] + +[system.realview.rtc] +type=PL031 +amba_id=3412017 +clock=1000 +gic=system.realview.gic +int_delay=100000 +int_num=42 +pio_addr=268529664 +pio_latency=100000 +system=system +time=Thu Jan 1 00:00:00 2009 +pio=system.iobus.master[23] + +[system.realview.sci_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268492800 +pio_latency=100000 +system=system +pio=system.iobus.master[20] + +[system.realview.smc_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=269357056 +pio_latency=100000 +system=system +pio=system.iobus.master[13] + +[system.realview.sp810_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=true +pio_addr=268439552 +pio_latency=100000 +system=system +pio=system.iobus.master[14] + +[system.realview.ssp_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268488704 +pio_latency=100000 +system=system +pio=system.iobus.master[19] + +[system.realview.timer0] +type=Sp804 +amba_id=1316868 +clock=1000 +clock0=1000000 +clock1=1000000 +gic=system.realview.gic +int_num0=36 +int_num1=36 +pio_addr=268505088 +pio_latency=100000 +system=system +pio=system.iobus.master[2] + +[system.realview.timer1] +type=Sp804 +amba_id=1316868 +clock=1000 +clock0=1000000 +clock1=1000000 +gic=system.realview.gic +int_num0=37 +int_num1=37 +pio_addr=268509184 +pio_latency=100000 +system=system +pio=system.iobus.master[3] + +[system.realview.uart] +type=Pl011 +clock=1000 +end_on_eot=false +gic=system.realview.gic +int_delay=100000 +int_num=44 +pio_addr=268472320 +pio_latency=100000 +platform=system.realview +system=system +terminal=system.terminal +pio=system.iobus.master[0] + +[system.realview.uart1_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268476416 +pio_latency=100000 +system=system +pio=system.iobus.master[10] + +[system.realview.uart2_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268480512 +pio_latency=100000 +system=system +pio=system.iobus.master[11] + +[system.realview.uart3_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268484608 +pio_latency=100000 +system=system +pio=system.iobus.master[12] + +[system.realview.watchdog_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268500992 +pio_latency=100000 +system=system +pio=system.iobus.master[15] + +[system.terminal] +type=Terminal +intr_control=system.intrctrl +number=0 +output=true +port=3456 + +[system.toL2Bus] +type=CoherentBus +block_size=64 +clock=500 +header_cycles=1 +use_default_range=false +width=8 +master=system.l2c.cpu_side +slave=system.cpu0.icache.mem_side system.cpu0.dcache.mem_side system.cpu0.itb.walker.port system.cpu0.dtb.walker.port + +[system.vncserver] +type=VncServer +frame_capture=false +number=0 +port=5900 + diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simerr b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simerr new file mode 100755 index 000000000..d34d93526 --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simerr @@ -0,0 +1,28 @@ +warn: Sockets disabled, not accepting vnc client connections +warn: Sockets disabled, not accepting terminal connections +warn: Sockets disabled, not accepting gdb connections +warn: The clidr register always reports 0 caches. +warn: clidr LoUIS field of 0b001 to match current ARM implementations. +warn: The csselr register isn't implemented. +warn: The ccsidr register isn't implemented and always reads as 0. +warn: instruction 'mcr bpiallis' unimplemented +warn: instruction 'mcr icialluis' unimplemented +hack: be nice to actually delete the event here +warn: instruction 'mcr dccimvac' unimplemented +warn: instruction 'mcr dccmvau' unimplemented +warn: instruction 'mcr icimvau' unimplemented +warn: LCD dual screen mode not supported +warn: instruction 'mcr icialluis' unimplemented +warn: instruction 'mcr bpiallis' unimplemented +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simout b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simout new file mode 100755 index 000000000..f0052292c --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/simout @@ -0,0 +1,4106 @@ +gem5 Simulator System. http://gem5.org +gem5 is copyrighted software; use the --copyright option for details. + +gem5 compiled Dec 11 2012 16:28:23 +gem5 started Dec 11 2012 16:28:35 +gem5 executing on e103721-lin +command line: build/ARM/gem5.opt -d build/ARM/tests/opt/long/fs/10.linux-boot/arm/linux/realview-switcheroo-full -re tests/run.py build/ARM/tests/opt/long/fs/10.linux-boot/arm/linux/realview-switcheroo-full +Global frequency set at 1000000000000 ticks per second +info: kernel located at: /arm/scratch/sysexplr/dist/binaries/vmlinux.arm.smp.fb.2.6.38.8 +info: Using bootloader at address 0x80000000 +info: Entering event queue @ 0. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1000000000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2000000000. Starting simulation... +switching cpus +info: Entering event queue @ 2000001000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 3000001000. Starting simulation... +switching cpus +info: Entering event queue @ 3000008500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 4000008500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 5000008500. Starting simulation... +switching cpus +info: Entering event queue @ 5000009000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 6000009000. Starting simulation... +switching cpus +info: Entering event queue @ 6000041500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 7000041500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 8000041500. Starting simulation... +switching cpus +info: Entering event queue @ 8000042500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 9000042500. Starting simulation... +info: Entering event queue @ 9000050500. Starting simulation... +info: Entering event queue @ 9000061000. Starting simulation... +switching cpus +info: Entering event queue @ 9000065500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 10000065500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 11000065500. Starting simulation... +switching cpus +info: Entering event queue @ 11000066500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 12000066500. Starting simulation... +info: Entering event queue @ 12000080000. Starting simulation... +switching cpus +info: Entering event queue @ 12000084500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 13000084500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 14000084500. Starting simulation... +switching cpus +info: Entering event queue @ 14000088000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 15000088000. Starting simulation... +switching cpus +info: Entering event queue @ 15000331000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 16000331000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 17000331000. Starting simulation... +switching cpus +info: Entering event queue @ 17000332000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 18000332000. Starting simulation... +info: Entering event queue @ 26175972000. Starting simulation... +info: Entering event queue @ 26175979000. Starting simulation... +switching cpus +info: Entering event queue @ 26175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 27175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 28175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 29175983500. Starting simulation... +info: Entering event queue @ 36175972000. Starting simulation... +info: Entering event queue @ 36175979000. Starting simulation... +switching cpus +info: Entering event queue @ 36175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +info: Entering event queue @ 37175983500. Starting simulation... +switching cpus +info: Entering event queue @ 37175984000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 38175984000. Starting simulation... +info: Entering event queue @ 38175999500. Starting simulation... +switching cpus +info: Entering event queue @ 38176040500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 39176040500. Starting simulation... +switching cpus +info: Entering event queue @ 39176113500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 40176113500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 41176113500. Starting simulation... +switching cpus +info: Entering event queue @ 41176114500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 42176114500. Starting simulation... +switching cpus +info: Entering event queue @ 42176477500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 43176477500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 44176477500. Starting simulation... +switching cpus +info: Entering event queue @ 44176479000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 45176479000. Starting simulation... +info: Entering event queue @ 45176488000. Starting simulation... +switching cpus +info: Entering event queue @ 45176492500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 46176492500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 47176492500. Starting simulation... +info: Entering event queue @ 47176497000. Starting simulation... +switching cpus +info: Entering event queue @ 47176499500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 48176499500. Starting simulation... +info: Entering event queue @ 48176506500. Starting simulation... +info: Entering event queue @ 48176516500. Starting simulation... +info: Entering event queue @ 48176521000. Starting simulation... +switching cpus +info: Entering event queue @ 48176522000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 49176522000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 50176522000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 51176522000. Starting simulation... +info: Entering event queue @ 56175972000. Starting simulation... +info: Entering event queue @ 56175979000. Starting simulation... +switching cpus +info: Entering event queue @ 56175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 57175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 58175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 59175983500. Starting simulation... +info: Entering event queue @ 66175972000. Starting simulation... +info: Entering event queue @ 66175979000. Starting simulation... +switching cpus +info: Entering event queue @ 66175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 67175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 68175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 69175983500. Starting simulation... +info: Entering event queue @ 76175972000. Starting simulation... +info: Entering event queue @ 76175979000. Starting simulation... +switching cpus +info: Entering event queue @ 76175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 77175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 78175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 79175983500. Starting simulation... +info: Entering event queue @ 86175972000. Starting simulation... +info: Entering event queue @ 86175979000. Starting simulation... +switching cpus +info: Entering event queue @ 86175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 87175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 88175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 89175983500. Starting simulation... +info: Entering event queue @ 96175973000. Starting simulation... +info: Entering event queue @ 96175982000. Starting simulation... +switching cpus +info: Entering event queue @ 96175986500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 97175986500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 98175986500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 99175986500. Starting simulation... +info: Entering event queue @ 106175972000. Starting simulation... +info: Entering event queue @ 106175978500. Starting simulation... +switching cpus +info: Entering event queue @ 106175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 107175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 108175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 109175979000. Starting simulation... +info: Entering event queue @ 116175972000. Starting simulation... +info: Entering event queue @ 116175978500. Starting simulation... +switching cpus +info: Entering event queue @ 116175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 117175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 118175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 119175979000. Starting simulation... +info: Entering event queue @ 126175972000. Starting simulation... +info: Entering event queue @ 126175978500. Starting simulation... +switching cpus +info: Entering event queue @ 126175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 127175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 128175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 129175979000. Starting simulation... +info: Entering event queue @ 136175972000. Starting simulation... +info: Entering event queue @ 136175978500. Starting simulation... +switching cpus +info: Entering event queue @ 136175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 137175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 138175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 139175979000. Starting simulation... +info: Entering event queue @ 146175972000. Starting simulation... +info: Entering event queue @ 146175979000. Starting simulation... +switching cpus +info: Entering event queue @ 146175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 147175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 148175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 149175983500. Starting simulation... +info: Entering event queue @ 156175972000. Starting simulation... +info: Entering event queue @ 156175979000. Starting simulation... +switching cpus +info: Entering event queue @ 156175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 157175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 158175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 159175983500. Starting simulation... +info: Entering event queue @ 166175972000. Starting simulation... +info: Entering event queue @ 166175978500. Starting simulation... +switching cpus +info: Entering event queue @ 166175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 167175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 168175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 169175979000. Starting simulation... +info: Entering event queue @ 176175972000. Starting simulation... +info: Entering event queue @ 176175978500. Starting simulation... +switching cpus +info: Entering event queue @ 176175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 177175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 178175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 179175979000. Starting simulation... +info: Entering event queue @ 186175972000. Starting simulation... +info: Entering event queue @ 186175978500. Starting simulation... +switching cpus +info: Entering event queue @ 186175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 187175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 188175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 189175979000. Starting simulation... +info: Entering event queue @ 196175972000. Starting simulation... +info: Entering event queue @ 196175978500. Starting simulation... +switching cpus +info: Entering event queue @ 196175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 197175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 198175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 199175979000. Starting simulation... +info: Entering event queue @ 206175972000. Starting simulation... +info: Entering event queue @ 206175979000. Starting simulation... +switching cpus +info: Entering event queue @ 206175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 207175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 208175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 209175983500. Starting simulation... +info: Entering event queue @ 216175972000. Starting simulation... +info: Entering event queue @ 216175979000. Starting simulation... +switching cpus +info: Entering event queue @ 216175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 217175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 218175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 219175983500. Starting simulation... +info: Entering event queue @ 226175972000. Starting simulation... +info: Entering event queue @ 226175979000. Starting simulation... +switching cpus +info: Entering event queue @ 226175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 227175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 228175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 229175983500. Starting simulation... +info: Entering event queue @ 236175972000. Starting simulation... +info: Entering event queue @ 236175979000. Starting simulation... +switching cpus +info: Entering event queue @ 236175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 237175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 238175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 239175983500. Starting simulation... +info: Entering event queue @ 246175972000. Starting simulation... +info: Entering event queue @ 246175979000. Starting simulation... +switching cpus +info: Entering event queue @ 246175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 247175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 248175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 249175983500. Starting simulation... +info: Entering event queue @ 256175973000. Starting simulation... +info: Entering event queue @ 256175984500. Starting simulation... +switching cpus +info: Entering event queue @ 256175989000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 257175989000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 258175989000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 259175989000. Starting simulation... +info: Entering event queue @ 266175972000. Starting simulation... +info: Entering event queue @ 266979463000. Starting simulation... +switching cpus +info: Entering event queue @ 266979465000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 267979465000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 268979465000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 269979465000. Starting simulation... +info: Entering event queue @ 276175972000. Starting simulation... +info: Entering event queue @ 276175978500. Starting simulation... +switching cpus +info: Entering event queue @ 276175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 277175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 278175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 279175979000. Starting simulation... +info: Entering event queue @ 286175972000. Starting simulation... +info: Entering event queue @ 286175978500. Starting simulation... +switching cpus +info: Entering event queue @ 286175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 287175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 288175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 289175979000. Starting simulation... +info: Entering event queue @ 296175972000. Starting simulation... +info: Entering event queue @ 296175978500. Starting simulation... +switching cpus +info: Entering event queue @ 296175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 297175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 298175979000. Starting simulation... +info: Entering event queue @ 299715607000. Starting simulation... +switching cpus +info: Entering event queue @ 299715609000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 300715609000. Starting simulation... +info: Entering event queue @ 306175972000. Starting simulation... +info: Entering event queue @ 306175979000. Starting simulation... +switching cpus +info: Entering event queue @ 306175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 307175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 308175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 309175983500. Starting simulation... +info: Entering event queue @ 316175972000. Starting simulation... +info: Entering event queue @ 316175979000. Starting simulation... +switching cpus +info: Entering event queue @ 316175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 317175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 318175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 319175983500. Starting simulation... +info: Entering event queue @ 326175972000. Starting simulation... +info: Entering event queue @ 326175978500. Starting simulation... +switching cpus +info: Entering event queue @ 326175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 327175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 328175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 329175979000. Starting simulation... +info: Entering event queue @ 336175972000. Starting simulation... +info: Entering event queue @ 336175978500. Starting simulation... +switching cpus +info: Entering event queue @ 336175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 337175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 338175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 339175979000. Starting simulation... +info: Entering event queue @ 346175972000. Starting simulation... +info: Entering event queue @ 346175978500. Starting simulation... +switching cpus +info: Entering event queue @ 346175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 347175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 348175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 349175979000. Starting simulation... +info: Entering event queue @ 356175972000. Starting simulation... +info: Entering event queue @ 356175978500. Starting simulation... +switching cpus +info: Entering event queue @ 356175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 357175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 358175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 359175979000. Starting simulation... +info: Entering event queue @ 366175972000. Starting simulation... +info: Entering event queue @ 366175979000. Starting simulation... +switching cpus +info: Entering event queue @ 366175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 367175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 368175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 369175983500. Starting simulation... +info: Entering event queue @ 376175972000. Starting simulation... +info: Entering event queue @ 376175979000. Starting simulation... +switching cpus +info: Entering event queue @ 376175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 377175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 378175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 379175983500. Starting simulation... +info: Entering event queue @ 386175973000. Starting simulation... +info: Entering event queue @ 386175980000. Starting simulation... +switching cpus +info: Entering event queue @ 386175984500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 387175984500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 388175984500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 389175984500. Starting simulation... +switching cpus +info: Entering event queue @ 396175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 397175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 398175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 399175973000. Starting simulation... +info: Entering event queue @ 406175973000. Starting simulation... +info: Entering event queue @ 406175981500. Starting simulation... +switching cpus +info: Entering event queue @ 406175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 407175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 408175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 409175986000. Starting simulation... +info: Entering event queue @ 416175972000. Starting simulation... +info: Entering event queue @ 416175979000. Starting simulation... +switching cpus +info: Entering event queue @ 416175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 417175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 418175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 419175983500. Starting simulation... +info: Entering event queue @ 426175972000. Starting simulation... +info: Entering event queue @ 426175978500. Starting simulation... +switching cpus +info: Entering event queue @ 426175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 427175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 428175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 429175979000. Starting simulation... +info: Entering event queue @ 436175972000. Starting simulation... +info: Entering event queue @ 436175978500. Starting simulation... +switching cpus +info: Entering event queue @ 436175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 437175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 438175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 439175979000. Starting simulation... +info: Entering event queue @ 446175972000. Starting simulation... +info: Entering event queue @ 446175978500. Starting simulation... +switching cpus +info: Entering event queue @ 446175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 447175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 448175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 449175979000. Starting simulation... +info: Entering event queue @ 456175972000. Starting simulation... +info: Entering event queue @ 456175978500. Starting simulation... +switching cpus +info: Entering event queue @ 456175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 457175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 458175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 459175979000. Starting simulation... +info: Entering event queue @ 466175972000. Starting simulation... +info: Entering event queue @ 466175979000. Starting simulation... +switching cpus +info: Entering event queue @ 466175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 467175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 468175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 469175983500. Starting simulation... +info: Entering event queue @ 476175972000. Starting simulation... +info: Entering event queue @ 476175979000. Starting simulation... +switching cpus +info: Entering event queue @ 476175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 477175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 478175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 479175983500. Starting simulation... +info: Entering event queue @ 486175972000. Starting simulation... +info: Entering event queue @ 486175978500. Starting simulation... +switching cpus +info: Entering event queue @ 486175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 487175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 488175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 489175979000. Starting simulation... +info: Entering event queue @ 496175972000. Starting simulation... +info: Entering event queue @ 496175978500. Starting simulation... +switching cpus +info: Entering event queue @ 496175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 497175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 498175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 499175979000. Starting simulation... +info: Entering event queue @ 506175972000. Starting simulation... +info: Entering event queue @ 506175978500. Starting simulation... +switching cpus +info: Entering event queue @ 506175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 507175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 508175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 509175979000. Starting simulation... +info: Entering event queue @ 516175972000. Starting simulation... +info: Entering event queue @ 516175978500. Starting simulation... +switching cpus +info: Entering event queue @ 516175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 517175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 518175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 519175979000. Starting simulation... +info: Entering event queue @ 526175972000. Starting simulation... +info: Entering event queue @ 526175979000. Starting simulation... +switching cpus +info: Entering event queue @ 526175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 527175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 528175983500. Starting simulation... +info: Entering event queue @ 528869056000. Starting simulation... +switching cpus +info: Entering event queue @ 528869058000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 529869058000. Starting simulation... +info: Entering event queue @ 536175972000. Starting simulation... +info: Entering event queue @ 536175979000. Starting simulation... +switching cpus +info: Entering event queue @ 536175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 537175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 538175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 539175983500. Starting simulation... +switching cpus +info: Entering event queue @ 546175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 547175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 548175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 549175973000. Starting simulation... +info: Entering event queue @ 556175973000. Starting simulation... +info: Entering event queue @ 556175985000. Starting simulation... +switching cpus +info: Entering event queue @ 556175989500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 557175989500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 558175989500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 559175989500. Starting simulation... +switching cpus +info: Entering event queue @ 566175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 567175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 568175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 569175973000. Starting simulation... +switching cpus +info: Entering event queue @ 576175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 577175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 578175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 579175973000. Starting simulation... +switching cpus +info: Entering event queue @ 586175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 587175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 588175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 589175973000. Starting simulation... +info: Entering event queue @ 596175973000. Starting simulation... +info: Entering event queue @ 596175981500. Starting simulation... +switching cpus +info: Entering event queue @ 596175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 597175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 598175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 599175986000. Starting simulation... +switching cpus +info: Entering event queue @ 606175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 607175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 608175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 609175973000. Starting simulation... +info: Entering event queue @ 616175972000. Starting simulation... +info: Entering event queue @ 616175978500. Starting simulation... +switching cpus +info: Entering event queue @ 616175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 617175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 618175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 619175979000. Starting simulation... +info: Entering event queue @ 626175972000. Starting simulation... +info: Entering event queue @ 627078091000. Starting simulation... +switching cpus +info: Entering event queue @ 627078093000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 628078093000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 629078093000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 630078093000. Starting simulation... +info: Entering event queue @ 636175972000. Starting simulation... +info: Entering event queue @ 636175978500. Starting simulation... +switching cpus +info: Entering event queue @ 636175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 637175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 638175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 639175979000. Starting simulation... +info: Entering event queue @ 646175972000. Starting simulation... +info: Entering event queue @ 646175978500. Starting simulation... +switching cpus +info: Entering event queue @ 646175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 647175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 648175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 649175979000. Starting simulation... +info: Entering event queue @ 656175972000. Starting simulation... +info: Entering event queue @ 656175979000. Starting simulation... +switching cpus +info: Entering event queue @ 656175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 657175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 658175983500. Starting simulation... +info: Entering event queue @ 659814382000. Starting simulation... +switching cpus +info: Entering event queue @ 659814384000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 660814384000. Starting simulation... +info: Entering event queue @ 666175972000. Starting simulation... +info: Entering event queue @ 666175979000. Starting simulation... +switching cpus +info: Entering event queue @ 666175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 667175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 668175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 669175983500. Starting simulation... +info: Entering event queue @ 676175972000. Starting simulation... +info: Entering event queue @ 676175978500. Starting simulation... +switching cpus +info: Entering event queue @ 676175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 677175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 678175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 679175979000. Starting simulation... +info: Entering event queue @ 686175972000. Starting simulation... +info: Entering event queue @ 686175978500. Starting simulation... +switching cpus +info: Entering event queue @ 686175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 687175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 688175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 689175979000. Starting simulation... +info: Entering event queue @ 696175972000. Starting simulation... +info: Entering event queue @ 696175978500. Starting simulation... +switching cpus +info: Entering event queue @ 696175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 697175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 698175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 699175979000. Starting simulation... +info: Entering event queue @ 706175972000. Starting simulation... +info: Entering event queue @ 706175978500. Starting simulation... +switching cpus +info: Entering event queue @ 706175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 707175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 708175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 709175979000. Starting simulation... +info: Entering event queue @ 716175972000. Starting simulation... +info: Entering event queue @ 716175979000. Starting simulation... +switching cpus +info: Entering event queue @ 716175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 717175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 718175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 719175983500. Starting simulation... +info: Entering event queue @ 726175972000. Starting simulation... +info: Entering event queue @ 726175979000. Starting simulation... +switching cpus +info: Entering event queue @ 726175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 727175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 728175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 729175983500. Starting simulation... +info: Entering event queue @ 736175973000. Starting simulation... +info: Entering event queue @ 736175981000. Starting simulation... +switching cpus +info: Entering event queue @ 736175985500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 737175985500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 738175985500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 739175985500. Starting simulation... +info: Entering event queue @ 746175973000. Starting simulation... +info: Entering event queue @ 746175980500. Starting simulation... +switching cpus +info: Entering event queue @ 746175985000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 747175985000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 748175985000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 749175985000. Starting simulation... +info: Entering event queue @ 756175972000. Starting simulation... +info: Entering event queue @ 756175979000. Starting simulation... +switching cpus +info: Entering event queue @ 756175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 757175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 758175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 759175983500. Starting simulation... +info: Entering event queue @ 766175973000. Starting simulation... +info: Entering event queue @ 766175980000. Starting simulation... +switching cpus +info: Entering event queue @ 766175984500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 767175984500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 768175984500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 769175984500. Starting simulation... +info: Entering event queue @ 776175972000. Starting simulation... +info: Entering event queue @ 776175978500. Starting simulation... +switching cpus +info: Entering event queue @ 776175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 777175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 778175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 779175979000. Starting simulation... +info: Entering event queue @ 786175972000. Starting simulation... +info: Entering event queue @ 786175978500. Starting simulation... +switching cpus +info: Entering event queue @ 786175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 787175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 788175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 789175979000. Starting simulation... +info: Entering event queue @ 796175972000. Starting simulation... +info: Entering event queue @ 796175978500. Starting simulation... +switching cpus +info: Entering event queue @ 796175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 797175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 798175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 799175979000. Starting simulation... +info: Entering event queue @ 806175972000. Starting simulation... +info: Entering event queue @ 806175978500. Starting simulation... +switching cpus +info: Entering event queue @ 806175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 807175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 808175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 809175979000. Starting simulation... +info: Entering event queue @ 816175972000. Starting simulation... +info: Entering event queue @ 816175979000. Starting simulation... +switching cpus +info: Entering event queue @ 816175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 817175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 818175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 819175983500. Starting simulation... +info: Entering event queue @ 826175972000. Starting simulation... +info: Entering event queue @ 826175979000. Starting simulation... +switching cpus +info: Entering event queue @ 826175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 827175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 828175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 829175983500. Starting simulation... +info: Entering event queue @ 836175972000. Starting simulation... +info: Entering event queue @ 836175978500. Starting simulation... +switching cpus +info: Entering event queue @ 836175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 837175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 838175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 839175979000. Starting simulation... +info: Entering event queue @ 846175972000. Starting simulation... +info: Entering event queue @ 846175978500. Starting simulation... +switching cpus +info: Entering event queue @ 846175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 847175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 848175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 849175979000. Starting simulation... +info: Entering event queue @ 856175972000. Starting simulation... +info: Entering event queue @ 856231996000. Starting simulation... +switching cpus +info: Entering event queue @ 856231998000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 857231998000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 858231998000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 859231998000. Starting simulation... +info: Entering event queue @ 866175972000. Starting simulation... +info: Entering event queue @ 866175978500. Starting simulation... +switching cpus +info: Entering event queue @ 866175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 867175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 868175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 869175979000. Starting simulation... +info: Entering event queue @ 876175972000. Starting simulation... +info: Entering event queue @ 876175979000. Starting simulation... +switching cpus +info: Entering event queue @ 876175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 877175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 878175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 879175983500. Starting simulation... +info: Entering event queue @ 886175972000. Starting simulation... +info: Entering event queue @ 886175979000. Starting simulation... +switching cpus +info: Entering event queue @ 886175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 887175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 888175983500. Starting simulation... +info: Entering event queue @ 888968137000. Starting simulation... +switching cpus +info: Entering event queue @ 888968139000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 889968139000. Starting simulation... +info: Entering event queue @ 896175973000. Starting simulation... +info: Entering event queue @ 896175981000. Starting simulation... +switching cpus +info: Entering event queue @ 896175985500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 897175985500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 898175985500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 899175985500. Starting simulation... +switching cpus +info: Entering event queue @ 906175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 907175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 908175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 909175973000. Starting simulation... +info: Entering event queue @ 916175972000. Starting simulation... +info: Entering event queue @ 916175979000. Starting simulation... +switching cpus +info: Entering event queue @ 916175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 917175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 918175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 919175983500. Starting simulation... +info: Entering event queue @ 926175973000. Starting simulation... +info: Entering event queue @ 926175981500. Starting simulation... +switching cpus +info: Entering event queue @ 926175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 927175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 928175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 929175986000. Starting simulation... +info: Entering event queue @ 936175972000. Starting simulation... +info: Entering event queue @ 936175978500. Starting simulation... +switching cpus +info: Entering event queue @ 936175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 937175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 938175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 939175979000. Starting simulation... +info: Entering event queue @ 946175972000. Starting simulation... +info: Entering event queue @ 946175978500. Starting simulation... +switching cpus +info: Entering event queue @ 946175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 947175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 948175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 949175979000. Starting simulation... +info: Entering event queue @ 956175972000. Starting simulation... +info: Entering event queue @ 956175978500. Starting simulation... +switching cpus +info: Entering event queue @ 956175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 957175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 958175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 959175979000. Starting simulation... +info: Entering event queue @ 966175972000. Starting simulation... +info: Entering event queue @ 966175978500. Starting simulation... +switching cpus +info: Entering event queue @ 966175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 967175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 968175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 969175979000. Starting simulation... +info: Entering event queue @ 976175972000. Starting simulation... +info: Entering event queue @ 976175979000. Starting simulation... +switching cpus +info: Entering event queue @ 976175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 977175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 978175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 979175983500. Starting simulation... +info: Entering event queue @ 986175973000. Starting simulation... +info: Entering event queue @ 987176863000. Starting simulation... +switching cpus +info: Entering event queue @ 987176865000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 988176865000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 989176865000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 990176865000. Starting simulation... +info: Entering event queue @ 996175972000. Starting simulation... +info: Entering event queue @ 996175978500. Starting simulation... +switching cpus +info: Entering event queue @ 996175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 997175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 998175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 999175979000. Starting simulation... +info: Entering event queue @ 1006175972000. Starting simulation... +info: Entering event queue @ 1006175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1006175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1007175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1008175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1009175979000. Starting simulation... +info: Entering event queue @ 1016175972000. Starting simulation... +info: Entering event queue @ 1016175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1016175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1017175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1018175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1019175979000. Starting simulation... +info: Entering event queue @ 1026175972000. Starting simulation... +info: Entering event queue @ 1026175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1026175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1027175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1028175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1029175979000. Starting simulation... +info: Entering event queue @ 1036175972000. Starting simulation... +info: Entering event queue @ 1036175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1036175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1037175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1038175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1039175983500. Starting simulation... +info: Entering event queue @ 1046175972000. Starting simulation... +info: Entering event queue @ 1046175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1046175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1047175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1048175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1049175983500. Starting simulation... +info: Entering event queue @ 1056175972000. Starting simulation... +info: Entering event queue @ 1056175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1056175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1057175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1058175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1059175983500. Starting simulation... +info: Entering event queue @ 1066175972000. Starting simulation... +info: Entering event queue @ 1066175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1066175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1067175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1068175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1069175983500. Starting simulation... +info: Entering event queue @ 1076175972000. Starting simulation... +info: Entering event queue @ 1076175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1076175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1077175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1078175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1079175983500. Starting simulation... +info: Entering event queue @ 1086175973000. Starting simulation... +info: Entering event queue @ 1086175981500. Starting simulation... +switching cpus +info: Entering event queue @ 1086175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1087175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1088175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1089175986000. Starting simulation... +info: Entering event queue @ 1096175972000. Starting simulation... +info: Entering event queue @ 1096175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1096175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1097175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1098175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1099175979000. Starting simulation... +info: Entering event queue @ 1106175972000. Starting simulation... +info: Entering event queue @ 1106175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1106175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1107175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1108175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1109175979000. Starting simulation... +info: Entering event queue @ 1116175972000. Starting simulation... +info: Entering event queue @ 1116175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1116175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1117175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1118175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1119175979000. Starting simulation... +info: Entering event queue @ 1126175972000. Starting simulation... +info: Entering event queue @ 1126175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1126175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1127175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1128175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1129175979000. Starting simulation... +info: Entering event queue @ 1136175972000. Starting simulation... +info: Entering event queue @ 1136175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1136175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1137175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1138175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1139175983500. Starting simulation... +info: Entering event queue @ 1146175972000. Starting simulation... +info: Entering event queue @ 1146175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1146175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1147175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1148175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1149175983500. Starting simulation... +info: Entering event queue @ 1156175972000. Starting simulation... +info: Entering event queue @ 1156175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1156175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1157175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1158175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1159175979000. Starting simulation... +info: Entering event queue @ 1166175972000. Starting simulation... +info: Entering event queue @ 1166175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1166175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1167175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1168175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1169175979000. Starting simulation... +info: Entering event queue @ 1176175972000. Starting simulation... +info: Entering event queue @ 1176175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1176175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1177175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1178175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1179175979000. Starting simulation... +info: Entering event queue @ 1186175972000. Starting simulation... +info: Entering event queue @ 1186175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1186175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1187175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1188175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1189175979000. Starting simulation... +info: Entering event queue @ 1196175972000. Starting simulation... +info: Entering event queue @ 1196175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1196175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1197175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1198175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1199175983500. Starting simulation... +info: Entering event queue @ 1206175972000. Starting simulation... +info: Entering event queue @ 1206175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1206175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1207175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1208175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1209175983500. Starting simulation... +info: Entering event queue @ 1216175973000. Starting simulation... +info: Entering event queue @ 1216330621000. Starting simulation... +switching cpus +info: Entering event queue @ 1216330623000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1217330623000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1218330623000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1219330623000. Starting simulation... +info: Entering event queue @ 1226175973000. Starting simulation... +info: Entering event queue @ 1226175980500. Starting simulation... +switching cpus +info: Entering event queue @ 1226175985000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1227175985000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1228175985000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1229175985000. Starting simulation... +info: Entering event queue @ 1236175972000. Starting simulation... +info: Entering event queue @ 1236175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1236175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1237175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1238175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1239175983500. Starting simulation... +info: Entering event queue @ 1246175973000. Starting simulation... +info: Entering event queue @ 1246175981500. Starting simulation... +switching cpus +info: Entering event queue @ 1246175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1247175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1248175986000. Starting simulation... +info: Entering event queue @ 1249067221000. Starting simulation... +switching cpus +info: Entering event queue @ 1249067223000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1250067223000. Starting simulation... +info: Entering event queue @ 1256175972000. Starting simulation... +info: Entering event queue @ 1256175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1256175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1257175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1258175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1259175979000. Starting simulation... +info: Entering event queue @ 1266175972000. Starting simulation... +info: Entering event queue @ 1266175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1266175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1267175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1268175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1269175979000. Starting simulation... +info: Entering event queue @ 1276175972000. Starting simulation... +info: Entering event queue @ 1276175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1276175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1277175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1278175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1279175979000. Starting simulation... +info: Entering event queue @ 1286175972000. Starting simulation... +info: Entering event queue @ 1286175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1286175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1287175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1288175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1289175979000. Starting simulation... +info: Entering event queue @ 1296175972000. Starting simulation... +info: Entering event queue @ 1296175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1296175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1297175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1298175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1299175983500. Starting simulation... +info: Entering event queue @ 1306175972000. Starting simulation... +info: Entering event queue @ 1306175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1306175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1307175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1308175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1309175983500. Starting simulation... +info: Entering event queue @ 1316175972000. Starting simulation... +info: Entering event queue @ 1316175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1316175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1317175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1318175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1319175979000. Starting simulation... +info: Entering event queue @ 1326175972000. Starting simulation... +info: Entering event queue @ 1326175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1326175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1327175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1328175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1329175979000. Starting simulation... +info: Entering event queue @ 1336175972000. Starting simulation... +info: Entering event queue @ 1336175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1336175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1337175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1338175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1339175979000. Starting simulation... +info: Entering event queue @ 1346175972000. Starting simulation... +info: Entering event queue @ 1347275947000. Starting simulation... +switching cpus +info: Entering event queue @ 1347275949000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1348275949000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1349275949000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1350275949000. Starting simulation... +info: Entering event queue @ 1356175972000. Starting simulation... +info: Entering event queue @ 1356175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1356175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1357175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1358175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1359175983500. Starting simulation... +info: Entering event queue @ 1366175972000. Starting simulation... +info: Entering event queue @ 1366175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1366175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1367175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1368175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1369175983500. Starting simulation... +switching cpus +info: Entering event queue @ 1376175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1377175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1378175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1379175973000. Starting simulation... +switching cpus +info: Entering event queue @ 1386175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1387175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1388175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1389175973000. Starting simulation... +info: Entering event queue @ 1396175973000. Starting simulation... +info: Entering event queue @ 1396175981500. Starting simulation... +switching cpus +info: Entering event queue @ 1396175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1397175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1398175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1399175986000. Starting simulation... +switching cpus +info: Entering event queue @ 1406175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1407175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1408175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1409175973000. Starting simulation... +info: Entering event queue @ 1416175972000. Starting simulation... +info: Entering event queue @ 1416175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1416175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1417175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1418175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1419175979000. Starting simulation... +info: Entering event queue @ 1426175972000. Starting simulation... +info: Entering event queue @ 1426175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1426175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1427175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1428175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1429175979000. Starting simulation... +info: Entering event queue @ 1436175972000. Starting simulation... +info: Entering event queue @ 1436175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1436175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1437175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1438175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1439175979000. Starting simulation... +info: Entering event queue @ 1446175972000. Starting simulation... +info: Entering event queue @ 1446175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1446175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1447175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1448175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1449175979000. Starting simulation... +info: Entering event queue @ 1456175972000. Starting simulation... +info: Entering event queue @ 1456175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1456175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1457175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1458175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1459175983500. Starting simulation... +info: Entering event queue @ 1466175972000. Starting simulation... +info: Entering event queue @ 1466175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1466175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1467175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1468175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1469175983500. Starting simulation... +info: Entering event queue @ 1476175972000. Starting simulation... +info: Entering event queue @ 1476175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1476175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1477175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1478175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1479175979000. Starting simulation... +info: Entering event queue @ 1486175972000. Starting simulation... +info: Entering event queue @ 1486175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1486175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1487175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1488175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1489175979000. Starting simulation... +info: Entering event queue @ 1496175972000. Starting simulation... +info: Entering event queue @ 1496175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1496175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1497175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1498175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1499175979000. Starting simulation... +info: Entering event queue @ 1506175972000. Starting simulation... +info: Entering event queue @ 1506175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1506175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1507175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1508175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1509175979000. Starting simulation... +info: Entering event queue @ 1516175972000. Starting simulation... +info: Entering event queue @ 1516175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1516175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1517175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1518175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1519175983500. Starting simulation... +info: Entering event queue @ 1526175972000. Starting simulation... +info: Entering event queue @ 1526175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1526175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1527175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1528175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1529175983500. Starting simulation... +switching cpus +info: Entering event queue @ 1536175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1537175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1538175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1539175973000. Starting simulation... +switching cpus +info: Entering event queue @ 1546175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1547175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1548175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1549175973000. Starting simulation... +info: Entering event queue @ 1556175972000. Starting simulation... +info: Entering event queue @ 1556175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1556175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1557175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1558175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1559175983500. Starting simulation... +info: Entering event queue @ 1566175973000. Starting simulation... +info: Entering event queue @ 1566175981500. Starting simulation... +switching cpus +info: Entering event queue @ 1566175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1567175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1568175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1569175986000. Starting simulation... +info: Entering event queue @ 1576175972000. Starting simulation... +info: Entering event queue @ 1576429705000. Starting simulation... +switching cpus +info: Entering event queue @ 1576429707000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1577429707000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1578429707000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1579429707000. Starting simulation... +info: Entering event queue @ 1586175972000. Starting simulation... +info: Entering event queue @ 1586175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1586175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1587175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1588175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1589175979000. Starting simulation... +info: Entering event queue @ 1596175972000. Starting simulation... +info: Entering event queue @ 1596175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1596175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1597175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1598175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1599175979000. Starting simulation... +info: Entering event queue @ 1606175972000. Starting simulation... +info: Entering event queue @ 1606175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1606175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1607175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1608175979000. Starting simulation... +info: Entering event queue @ 1609165996000. Starting simulation... +switching cpus +info: Entering event queue @ 1609165998000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1610165998000. Starting simulation... +info: Entering event queue @ 1616175972000. Starting simulation... +info: Entering event queue @ 1616175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1616175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1617175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1618175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1619175983500. Starting simulation... +info: Entering event queue @ 1626175972000. Starting simulation... +info: Entering event queue @ 1626175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1626175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1627175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1628175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1629175983500. Starting simulation... +info: Entering event queue @ 1636175972000. Starting simulation... +info: Entering event queue @ 1636175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1636175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1637175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1638175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1639175979000. Starting simulation... +info: Entering event queue @ 1646175972000. Starting simulation... +info: Entering event queue @ 1646175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1646175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1647175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1648175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1649175979000. Starting simulation... +info: Entering event queue @ 1656175972000. Starting simulation... +info: Entering event queue @ 1656175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1656175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1657175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1658175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1659175979000. Starting simulation... +info: Entering event queue @ 1666175972000. Starting simulation... +info: Entering event queue @ 1666175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1666175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1667175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1668175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1669175979000. Starting simulation... +info: Entering event queue @ 1676175972000. Starting simulation... +info: Entering event queue @ 1676175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1676175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1677175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1678175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1679175983500. Starting simulation... +info: Entering event queue @ 1686175972000. Starting simulation... +info: Entering event queue @ 1686175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1686175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1687175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1688175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1689175983500. Starting simulation... +switching cpus +info: Entering event queue @ 1696175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1697175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1698175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1699175973000. Starting simulation... +info: Entering event queue @ 1706175973000. Starting simulation... +info: Entering event queue @ 1707375031000. Starting simulation... +switching cpus +info: Entering event queue @ 1707375033000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1708375033000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1709375033000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1710375033000. Starting simulation... +info: Entering event queue @ 1716175972000. Starting simulation... +info: Entering event queue @ 1716175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1716175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1717175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1718175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1719175983500. Starting simulation... +info: Entering event queue @ 1726175973000. Starting simulation... +info: Entering event queue @ 1726175981500. Starting simulation... +switching cpus +info: Entering event queue @ 1726175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1727175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1728175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1729175986000. Starting simulation... +info: Entering event queue @ 1736175972000. Starting simulation... +info: Entering event queue @ 1736175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1736175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1737175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1738175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1739175979000. Starting simulation... +info: Entering event queue @ 1746175972000. Starting simulation... +info: Entering event queue @ 1746175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1746175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1747175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1748175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1749175979000. Starting simulation... +info: Entering event queue @ 1756175972000. Starting simulation... +info: Entering event queue @ 1756175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1756175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1757175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1758175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1759175979000. Starting simulation... +info: Entering event queue @ 1766175972000. Starting simulation... +info: Entering event queue @ 1766175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1766175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1767175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1768175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1769175979000. Starting simulation... +info: Entering event queue @ 1776175972000. Starting simulation... +info: Entering event queue @ 1776175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1776175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1777175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1778175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1779175983500. Starting simulation... +info: Entering event queue @ 1786175972000. Starting simulation... +info: Entering event queue @ 1786175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1786175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1787175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1788175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1789175983500. Starting simulation... +info: Entering event queue @ 1796175972000. Starting simulation... +info: Entering event queue @ 1796175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1796175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1797175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1798175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1799175979000. Starting simulation... +info: Entering event queue @ 1806175972000. Starting simulation... +info: Entering event queue @ 1806175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1806175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1807175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1808175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1809175979000. Starting simulation... +info: Entering event queue @ 1816175972000. Starting simulation... +info: Entering event queue @ 1816175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1816175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1817175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1818175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1819175979000. Starting simulation... +info: Entering event queue @ 1826175972000. Starting simulation... +info: Entering event queue @ 1826175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1826175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1827175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1828175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1829175979000. Starting simulation... +info: Entering event queue @ 1836175972000. Starting simulation... +info: Entering event queue @ 1836175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1836175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1837175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1838175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1839175983500. Starting simulation... +info: Entering event queue @ 1846175972000. Starting simulation... +info: Entering event queue @ 1846175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1846175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1847175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1848175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1849175983500. Starting simulation... +switching cpus +info: Entering event queue @ 1856175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1857175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1858175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1859175973000. Starting simulation... +switching cpus +info: Entering event queue @ 1866175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1867175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1868175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1869175973000. Starting simulation... +info: Entering event queue @ 1876175972000. Starting simulation... +info: Entering event queue @ 1876175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1876175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1877175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1878175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1879175983500. Starting simulation... +info: Entering event queue @ 1886175973000. Starting simulation... +info: Entering event queue @ 1886175981500. Starting simulation... +switching cpus +info: Entering event queue @ 1886175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1887175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1888175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1889175986000. Starting simulation... +info: Entering event queue @ 1896175972000. Starting simulation... +info: Entering event queue @ 1896175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1896175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1897175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1898175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1899175979000. Starting simulation... +info: Entering event queue @ 1906175972000. Starting simulation... +info: Entering event queue @ 1906175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1906175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1907175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1908175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1909175979000. Starting simulation... +info: Entering event queue @ 1916175972000. Starting simulation... +info: Entering event queue @ 1916175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1916175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1917175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1918175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1919175979000. Starting simulation... +info: Entering event queue @ 1926175972000. Starting simulation... +info: Entering event queue @ 1926175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1926175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1927175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1928175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1929175979000. Starting simulation... +info: Entering event queue @ 1936175972000. Starting simulation... +info: Entering event queue @ 1936528480000. Starting simulation... +switching cpus +info: Entering event queue @ 1936528482000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1937528482000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1938528482000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1939528482000. Starting simulation... +info: Entering event queue @ 1946175972000. Starting simulation... +info: Entering event queue @ 1946175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1946175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1947175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1948175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1949175983500. Starting simulation... +info: Entering event queue @ 1956175972000. Starting simulation... +info: Entering event queue @ 1956175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1956175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1957175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1958175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1959175979000. Starting simulation... +info: Entering event queue @ 1966175972000. Starting simulation... +info: Entering event queue @ 1966175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1966175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1967175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 1968175979000. Starting simulation... +info: Entering event queue @ 1969264621000. Starting simulation... +switching cpus +info: Entering event queue @ 1969264623000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1970264623000. Starting simulation... +info: Entering event queue @ 1976175972000. Starting simulation... +info: Entering event queue @ 1976175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1976175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1977175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1978175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1979175979000. Starting simulation... +info: Entering event queue @ 1986175972000. Starting simulation... +info: Entering event queue @ 1986175978500. Starting simulation... +switching cpus +info: Entering event queue @ 1986175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1987175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1988175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1989175979000. Starting simulation... +info: Entering event queue @ 1996175972000. Starting simulation... +info: Entering event queue @ 1996175979000. Starting simulation... +switching cpus +info: Entering event queue @ 1996175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 1997175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 1998175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 1999175983500. Starting simulation... +info: Entering event queue @ 2006175972000. Starting simulation... +info: Entering event queue @ 2006175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2006175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2007175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2008175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2009175983500. Starting simulation... +switching cpus +info: Entering event queue @ 2016175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2017175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2018175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2019175973000. Starting simulation... +info: Entering event queue @ 2026175973000. Starting simulation... +info: Entering event queue @ 2026175980500. Starting simulation... +switching cpus +info: Entering event queue @ 2026175985000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2027175985000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2028175985000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2029175985000. Starting simulation... +info: Entering event queue @ 2036175972000. Starting simulation... +info: Entering event queue @ 2036175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2036175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2037175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2038175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2039175983500. Starting simulation... +info: Entering event queue @ 2046175973000. Starting simulation... +info: Entering event queue @ 2046175981500. Starting simulation... +switching cpus +info: Entering event queue @ 2046175986000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2047175986000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2048175986000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2049175986000. Starting simulation... +info: Entering event queue @ 2056175972000. Starting simulation... +info: Entering event queue @ 2056175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2056175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2057175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2058175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2059175979000. Starting simulation... +info: Entering event queue @ 2066175972000. Starting simulation... +info: Entering event queue @ 2067473656000. Starting simulation... +switching cpus +info: Entering event queue @ 2067473658000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2068473658000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2069473658000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2070473658000. Starting simulation... +info: Entering event queue @ 2076175972000. Starting simulation... +info: Entering event queue @ 2076175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2076175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2077175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2078175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2079175979000. Starting simulation... +info: Entering event queue @ 2086175972000. Starting simulation... +info: Entering event queue @ 2086175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2086175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2087175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2088175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2089175979000. Starting simulation... +info: Entering event queue @ 2096175972000. Starting simulation... +info: Entering event queue @ 2096175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2096175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2097175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2098175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2099175983500. Starting simulation... +info: Entering event queue @ 2106175972000. Starting simulation... +info: Entering event queue @ 2106175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2106175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2107175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2108175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2109175983500. Starting simulation... +info: Entering event queue @ 2116175972000. Starting simulation... +info: Entering event queue @ 2116175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2116175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2117175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2118175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2119175979000. Starting simulation... +info: Entering event queue @ 2126175972000. Starting simulation... +info: Entering event queue @ 2126175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2126175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2127175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2128175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2129175979000. Starting simulation... +info: Entering event queue @ 2136175972000. Starting simulation... +info: Entering event queue @ 2136175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2136175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2137175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2138175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2139175979000. Starting simulation... +info: Entering event queue @ 2146175972000. Starting simulation... +info: Entering event queue @ 2146175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2146175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2147175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2148175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2149175979000. Starting simulation... +info: Entering event queue @ 2156175972000. Starting simulation... +info: Entering event queue @ 2156175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2156175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2157175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2158175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2159175983500. Starting simulation... +info: Entering event queue @ 2166175972000. Starting simulation... +info: Entering event queue @ 2166175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2166175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2167175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2168175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2169175983500. Starting simulation... +info: Entering event queue @ 2176175972000. Starting simulation... +info: Entering event queue @ 2176175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2176175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2177175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2178175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2179175983500. Starting simulation... +info: Entering event queue @ 2186175972000. Starting simulation... +info: Entering event queue @ 2186175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2186175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2187175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2188175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2189175983500. Starting simulation... +switching cpus +info: Entering event queue @ 2196175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2197175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2198175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2199175973000. Starting simulation... +switching cpus +info: Entering event queue @ 2206175973000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2207175973000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2208175973000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2209175973000. Starting simulation... +info: Entering event queue @ 2216175972000. Starting simulation... +info: Entering event queue @ 2216175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2216175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2217175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2218175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2219175979000. Starting simulation... +info: Entering event queue @ 2226175972000. Starting simulation... +info: Entering event queue @ 2226175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2226175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2227175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2228175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2229175979000. Starting simulation... +info: Entering event queue @ 2236175972000. Starting simulation... +info: Entering event queue @ 2236175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2236175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2237175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2238175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2239175979000. Starting simulation... +info: Entering event queue @ 2246175972000. Starting simulation... +info: Entering event queue @ 2246175978500. Starting simulation... +switching cpus +info: Entering event queue @ 2246175979000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2247175979000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2248175979000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2249175979000. Starting simulation... +info: Entering event queue @ 2256175972000. Starting simulation... +info: Entering event queue @ 2256175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2256175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2257175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +switching cpus +info: Entering event queue @ 2258175983500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2259175983500. Starting simulation... +info: Entering event queue @ 2266175972000. Starting simulation... +info: Entering event queue @ 2266175979000. Starting simulation... +switching cpus +info: Entering event queue @ 2266175983500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2267175983500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2268175983500. Starting simulation... +switching cpus +info: Entering event queue @ 2268175984500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2269175984500. Starting simulation... +switching cpus +info: Entering event queue @ 2269176099000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +info: Entering event queue @ 2270176099000. Starting simulation... +switching cpus +info: Entering event queue @ 2270176101000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2271176101000. Starting simulation... +switching cpus +info: Entering event queue @ 2271176134000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2272176134000. Starting simulation... +switching cpus +info: Entering event queue @ 2272176298000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2273176298000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2274176298000. Starting simulation... +switching cpus +info: Entering event queue @ 2274176358000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2275176358000. Starting simulation... +switching cpus +info: Entering event queue @ 2275176444000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2276176444000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2277176444000. Starting simulation... +switching cpus +info: Entering event queue @ 2277176548000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2278176548000. Starting simulation... +switching cpus +info: Entering event queue @ 2278176623000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2279176623000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2280176623000. Starting simulation... +switching cpus +info: Entering event queue @ 2280176733000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2281176733000. Starting simulation... +switching cpus +info: Entering event queue @ 2281177431000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2282177431000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2283177431000. Starting simulation... +switching cpus +info: Entering event queue @ 2283177432000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2284177432000. Starting simulation... +switching cpus +info: Entering event queue @ 2284177537000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2285177537000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2286177537000. Starting simulation... +switching cpus +info: Entering event queue @ 2286177620000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2287177620000. Starting simulation... +switching cpus +info: Entering event queue @ 2287177681000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2288177681000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2289177681000. Starting simulation... +switching cpus +info: Entering event queue @ 2289177796000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2290177796000. Starting simulation... +switching cpus +info: Entering event queue @ 2290177891000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2291177891000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2292177891000. Starting simulation... +switching cpus +info: Entering event queue @ 2292177955000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2293177955000. Starting simulation... +switching cpus +info: Entering event queue @ 2293178118500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2294178118500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2295178118500. Starting simulation... +info: Entering event queue @ 2296627561000. Starting simulation... +switching cpus +info: Entering event queue @ 2296627563000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2297627563000. Starting simulation... +switching cpus +info: Entering event queue @ 2297627577000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2298627577000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2299627577000. Starting simulation... +switching cpus +info: Entering event queue @ 2299627643000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2300627643000. Starting simulation... +switching cpus +info: Entering event queue @ 2300627767000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2301627767000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2302627767000. Starting simulation... +switching cpus +info: Entering event queue @ 2302627826000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2303627826000. Starting simulation... +switching cpus +info: Entering event queue @ 2303627914000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2304627914000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2305627914000. Starting simulation... +switching cpus +info: Entering event queue @ 2305628068000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2306628068000. Starting simulation... +switching cpus +info: Entering event queue @ 2306628219000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2307628219000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2308628219000. Starting simulation... +switching cpus +info: Entering event queue @ 2308628231000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2309628231000. Starting simulation... +switching cpus +info: Entering event queue @ 2309628374500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2310628374500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2311628374500. Starting simulation... +switching cpus +info: Entering event queue @ 2311628440000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2312628440000. Starting simulation... +switching cpus +info: Entering event queue @ 2312628571000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2313628571000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2314628571000. Starting simulation... +switching cpus +info: Entering event queue @ 2314628586000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2315628586000. Starting simulation... +switching cpus +info: Entering event queue @ 2315628609000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2316628609000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2317628609000. Starting simulation... +switching cpus +info: Entering event queue @ 2317628760000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2318628760000. Starting simulation... +switching cpus +info: Entering event queue @ 2318628871500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2319628871500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2320628871500. Starting simulation... +switching cpus +info: Entering event queue @ 2320628950000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2321628950000. Starting simulation... +switching cpus +info: Entering event queue @ 2321628957000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2322628957000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2323628957000. Starting simulation... +switching cpus +info: Entering event queue @ 2323629079000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2324629079000. Starting simulation... +switching cpus +info: Entering event queue @ 2324629126000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2325629126000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2326629126000. Starting simulation... +switching cpus +info: Entering event queue @ 2326629176000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2327629176000. Starting simulation... +switching cpus +info: Entering event queue @ 2327629301000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2328629301000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2329629301000. Starting simulation... +switching cpus +info: Entering event queue @ 2329629399000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2330629399000. Starting simulation... +switching cpus +info: Entering event queue @ 2330629558000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2331629558000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2332629558000. Starting simulation... +switching cpus +info: Entering event queue @ 2332629573000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2333629573000. Starting simulation... +switching cpus +info: Entering event queue @ 2333629640000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2334629640000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2335629640000. Starting simulation... +switching cpus +info: Entering event queue @ 2335629779000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2336629779000. Starting simulation... +switching cpus +info: Entering event queue @ 2336629888500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2337629888500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2338629888500. Starting simulation... +switching cpus +info: Entering event queue @ 2338630042000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2339630042000. Starting simulation... +switching cpus +info: Entering event queue @ 2339630075000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2340630075000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2341630075000. Starting simulation... +switching cpus +info: Entering event queue @ 2341630098000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2342630098000. Starting simulation... +switching cpus +info: Entering event queue @ 2342630224500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2343630224500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2344630224500. Starting simulation... +switching cpus +info: Entering event queue @ 2344630308000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2345630308000. Starting simulation... +switching cpus +info: Entering event queue @ 2345630440000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2346630440000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2347630440000. Starting simulation... +switching cpus +info: Entering event queue @ 2347630481000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2348630481000. Starting simulation... +switching cpus +info: Entering event queue @ 2348630538000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2349630538000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2350630538000. Starting simulation... +switching cpus +info: Entering event queue @ 2350630623000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2351630623000. Starting simulation... +switching cpus +info: Entering event queue @ 2351630640000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2352630640000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2353630640000. Starting simulation... +switching cpus +info: Entering event queue @ 2353630748000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2354630748000. Starting simulation... +switching cpus +info: Entering event queue @ 2354630878000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2355630878000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2356630878000. Starting simulation... +switching cpus +info: Entering event queue @ 2356630895000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2357630895000. Starting simulation... +switching cpus +info: Entering event queue @ 2357630943000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2358630943000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2359630943000. Starting simulation... +switching cpus +info: Entering event queue @ 2359630963000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2360630963000. Starting simulation... +info: Entering event queue @ 2362100305000. Starting simulation... +switching cpus +info: Entering event queue @ 2362100307000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2363100307000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2364100307000. Starting simulation... +switching cpus +info: Entering event queue @ 2364100364000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2365100364000. Starting simulation... +switching cpus +info: Entering event queue @ 2365100522000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2366100522000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2367100522000. Starting simulation... +info: Entering event queue @ 2367100525000. Starting simulation... +switching cpus +info: Entering event queue @ 2367100527500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2368100527500. Starting simulation... +switching cpus +info: Entering event queue @ 2368100529500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2369100529500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2370100529500. Starting simulation... +switching cpus +info: Entering event queue @ 2370100533000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2371100533000. Starting simulation... +switching cpus +info: Entering event queue @ 2371100682500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2372100682500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2373100682500. Starting simulation... +switching cpus +info: Entering event queue @ 2373100683500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2374100683500. Starting simulation... +switching cpus +info: Entering event queue @ 2374102804500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2375102804500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2376102804500. Starting simulation... +switching cpus +info: Entering event queue @ 2376102808000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2377102808000. Starting simulation... +switching cpus +info: Entering event queue @ 2377102891000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2378102891000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2379102891000. Starting simulation... +switching cpus +info: Entering event queue @ 2379102993000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2380102993000. Starting simulation... +switching cpus +info: Entering event queue @ 2380103021000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2381103021000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2382103021000. Starting simulation... +switching cpus +info: Entering event queue @ 2382103048000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2383103048000. Starting simulation... +switching cpus +info: Entering event queue @ 2383112179000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2384112179000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2385112179000. Starting simulation... +switching cpus +info: Entering event queue @ 2385112305000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2386112305000. Starting simulation... +switching cpus +info: Entering event queue @ 2386112310500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +info: Entering event queue @ 2387112310500. Starting simulation... +switching cpus +info: Entering event queue @ 2387112312500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2388112312500. Starting simulation... +switching cpus +info: Entering event queue @ 2388112314500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2389112314500. Starting simulation... +switching cpus +info: Entering event queue @ 2389112333500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2390112333500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2391112333500. Starting simulation... +switching cpus +info: Entering event queue @ 2391112334500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2392112334500. Starting simulation... +switching cpus +info: Entering event queue @ 2392112630500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +info: Entering event queue @ 2393112630500. Starting simulation... +switching cpus +info: Entering event queue @ 2393112631000. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2394112631000. Starting simulation... +info: Entering event queue @ 2394836596000. Starting simulation... +switching cpus +info: Entering event queue @ 2394836598000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2395836598000. Starting simulation... +switching cpus +info: Entering event queue @ 2395839042500. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +switching cpus +info: Entering event queue @ 2396839042500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2397839042500. Starting simulation... +switching cpus +info: Entering event queue @ 2397839043500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2398839043500. Starting simulation... +switching cpus +info: Entering event queue @ 2398839190000. Starting simulation... +Switching CPUs... +Next CPU: TimingSimpleCPU +info: Entering event queue @ 2399839190000. Starting simulation... +switching cpus +info: Entering event queue @ 2399839190500. Starting simulation... +Switching CPUs... +Next CPU: DerivO3CPU +info: Entering event queue @ 2400839190500. Starting simulation... +info: Entering event queue @ 2400839197500. Starting simulation... +switching cpus +info: Entering event queue @ 2400839201000. Starting simulation... diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/stats.txt b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/stats.txt new file mode 100644 index 000000000..ba425396c --- /dev/null +++ b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/stats.txt @@ -0,0 +1,1572 @@ + +---------- Begin Simulation Statistics ---------- +sim_seconds 2.401421 # Number of seconds simulated +sim_ticks 2401421439000 # Number of ticks simulated +final_tick 2401421439000 # Number of ticks from beginning of simulation (restored from checkpoints and never reset) +sim_freq 1000000000000 # Frequency of simulated ticks +host_inst_rate 170882 # Simulator instruction rate (inst/s) +host_op_rate 219406 # Simulator op (including micro ops) rate (op/s) +host_tick_rate 6786575645 # Simulator tick rate (ticks/s) +host_mem_usage 393972 # Number of bytes of host memory used +host_seconds 353.85 # Real time elapsed on the host +sim_insts 60466509 # Number of instructions simulated +sim_ops 77636591 # Number of ops (including micro ops) simulated +system.physmem.bytes_read::realview.clcd 114819072 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.dtb.walker 64 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.itb.walker 128 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.inst 478816 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.data 7027600 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.dtb.walker 64 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.inst 73664 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.data 716876 # Number of bytes read from this memory +system.physmem.bytes_read::cpu2.dtb.walker 1216 # Number of bytes read from this memory +system.physmem.bytes_read::cpu2.itb.walker 128 # Number of bytes read from this memory +system.physmem.bytes_read::cpu2.inst 218496 # Number of bytes read from this memory +system.physmem.bytes_read::cpu2.data 1332556 # Number of bytes read from this memory +system.physmem.bytes_read::total 124668680 # Number of bytes read from this memory +system.physmem.bytes_inst_read::cpu0.inst 478816 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::cpu1.inst 73664 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::cpu2.inst 218496 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::total 770976 # Number of instructions bytes read from this memory +system.physmem.bytes_written::writebacks 3748032 # Number of bytes written to this memory +system.physmem.bytes_written::cpu0.data 1052216 # Number of bytes written to this memory +system.physmem.bytes_written::cpu1.data 199484 # Number of bytes written to this memory +system.physmem.bytes_written::cpu2.data 1764144 # Number of bytes written to this memory +system.physmem.bytes_written::total 6763876 # Number of bytes written to this memory +system.physmem.num_reads::realview.clcd 14352384 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.dtb.walker 1 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.itb.walker 2 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.inst 13684 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.data 109840 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.dtb.walker 1 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.inst 1151 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.data 11204 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu2.dtb.walker 19 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu2.itb.walker 2 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu2.inst 3414 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu2.data 20824 # Number of read requests responded to by this memory +system.physmem.num_reads::total 14512526 # Number of read requests responded to by this memory +system.physmem.num_writes::writebacks 58563 # Number of write requests responded to by this memory +system.physmem.num_writes::cpu0.data 263054 # Number of write requests responded to by this memory +system.physmem.num_writes::cpu1.data 49871 # Number of write requests responded to by this memory +system.physmem.num_writes::cpu2.data 441036 # Number of write requests responded to by this memory +system.physmem.num_writes::total 812524 # Number of write requests responded to by this memory +system.physmem.bw_read::realview.clcd 47812962 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.dtb.walker 27 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.itb.walker 53 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.inst 199389 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.data 2926433 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.dtb.walker 27 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.inst 30675 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.data 298522 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu2.dtb.walker 506 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu2.itb.walker 53 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu2.inst 90986 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu2.data 554903 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::total 51914536 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu0.inst 199389 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu1.inst 30675 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu2.inst 90986 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::total 321050 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_write::writebacks 1560756 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::cpu0.data 438164 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::cpu1.data 83069 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::cpu2.data 734625 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::total 2816613 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_total::writebacks 1560756 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::realview.clcd 47812962 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.dtb.walker 27 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.itb.walker 53 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.inst 199389 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.data 3364597 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.dtb.walker 27 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.inst 30675 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.data 381591 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu2.dtb.walker 506 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu2.itb.walker 53 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu2.inst 90986 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu2.data 1289528 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::total 54731150 # Total bandwidth to/from this memory (bytes/s) +system.physmem.readReqs 12619527 # Total number of read requests seen +system.physmem.writeReqs 508095 # Total number of write requests seen +system.physmem.cpureqs 56153 # Reqs generatd by CPU via cache - shady +system.physmem.bytesRead 807649728 # Total number of bytes read from memory +system.physmem.bytesWritten 32518080 # Total number of bytes written to memory +system.physmem.bytesConsumedRd 103006296 # bytesRead derated as per pkt->getSize() +system.physmem.bytesConsumedWr 3063660 # bytesWritten derated as per pkt->getSize() +system.physmem.servicedByWrQ 2 # Number of read reqs serviced by write Q +system.physmem.neitherReadNorWrite 2356 # Reqs where no action is needed +system.physmem.perBankRdReqs::0 788374 # Track reads on a per bank basis +system.physmem.perBankRdReqs::1 788516 # Track reads on a per bank basis +system.physmem.perBankRdReqs::2 788173 # Track reads on a per bank basis +system.physmem.perBankRdReqs::3 788282 # Track reads on a per bank basis +system.physmem.perBankRdReqs::4 788267 # Track reads on a per bank basis +system.physmem.perBankRdReqs::5 788268 # Track reads on a per bank basis +system.physmem.perBankRdReqs::6 788411 # Track reads on a per bank basis +system.physmem.perBankRdReqs::7 789077 # Track reads on a per bank basis +system.physmem.perBankRdReqs::8 789904 # Track reads on a per bank basis +system.physmem.perBankRdReqs::9 789864 # Track reads on a per bank basis +system.physmem.perBankRdReqs::10 789609 # Track reads on a per bank basis +system.physmem.perBankRdReqs::11 789636 # Track reads on a per bank basis +system.physmem.perBankRdReqs::12 788668 # Track reads on a per bank basis +system.physmem.perBankRdReqs::13 788108 # Track reads on a per bank basis +system.physmem.perBankRdReqs::14 788208 # Track reads on a per bank basis +system.physmem.perBankRdReqs::15 788160 # Track reads on a per bank basis +system.physmem.perBankWrReqs::0 30462 # Track writes on a per bank basis +system.physmem.perBankWrReqs::1 31339 # Track writes on a per bank basis +system.physmem.perBankWrReqs::2 31367 # Track writes on a per bank basis +system.physmem.perBankWrReqs::3 31519 # Track writes on a per bank basis +system.physmem.perBankWrReqs::4 31434 # Track writes on a per bank basis +system.physmem.perBankWrReqs::5 31463 # Track writes on a per bank basis +system.physmem.perBankWrReqs::6 31715 # Track writes on a per bank basis +system.physmem.perBankWrReqs::7 32144 # Track writes on a per bank basis +system.physmem.perBankWrReqs::8 32667 # Track writes on a per bank basis +system.physmem.perBankWrReqs::9 32642 # Track writes on a per bank basis +system.physmem.perBankWrReqs::10 32415 # Track writes on a per bank basis +system.physmem.perBankWrReqs::11 32370 # Track writes on a per bank basis +system.physmem.perBankWrReqs::12 31797 # Track writes on a per bank basis +system.physmem.perBankWrReqs::13 31479 # Track writes on a per bank basis +system.physmem.perBankWrReqs::14 31921 # Track writes on a per bank basis +system.physmem.perBankWrReqs::15 31361 # Track writes on a per bank basis +system.physmem.numRdRetry 0 # Number of times rd buffer was full causing retry +system.physmem.numWrRetry 317403 # Number of times wr buffer was full causing retry +system.physmem.totGap 2400386249000 # Total gap between requests +system.physmem.readPktSize::0 0 # Categorize read packet sizes +system.physmem.readPktSize::1 0 # Categorize read packet sizes +system.physmem.readPktSize::2 6 # Categorize read packet sizes +system.physmem.readPktSize::3 12582912 # Categorize read packet sizes +system.physmem.readPktSize::4 0 # Categorize read packet sizes +system.physmem.readPktSize::5 0 # Categorize read packet sizes +system.physmem.readPktSize::6 36609 # Categorize read packet sizes +system.physmem.readPktSize::7 0 # Categorize read packet sizes +system.physmem.readPktSize::8 0 # Categorize read packet sizes +system.physmem.writePktSize::0 0 # categorize write packet sizes +system.physmem.writePktSize::1 0 # categorize write packet sizes +system.physmem.writePktSize::2 808310 # categorize write packet sizes +system.physmem.writePktSize::3 0 # categorize write packet sizes +system.physmem.writePktSize::4 0 # categorize write packet sizes +system.physmem.writePktSize::5 0 # categorize write packet sizes +system.physmem.writePktSize::6 17188 # categorize write packet sizes +system.physmem.writePktSize::7 0 # categorize write packet sizes +system.physmem.writePktSize::8 0 # categorize write packet sizes +system.physmem.neitherpktsize::0 0 # categorize neither packet sizes +system.physmem.neitherpktsize::1 0 # categorize neither packet sizes +system.physmem.neitherpktsize::2 0 # categorize neither packet sizes +system.physmem.neitherpktsize::3 0 # categorize neither packet sizes +system.physmem.neitherpktsize::4 0 # categorize neither packet sizes +system.physmem.neitherpktsize::5 0 # categorize neither packet sizes +system.physmem.neitherpktsize::6 2356 # categorize neither packet sizes +system.physmem.neitherpktsize::7 0 # categorize neither packet sizes +system.physmem.neitherpktsize::8 0 # categorize neither packet sizes +system.physmem.rdQLenPdf::0 817282 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::1 792530 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::2 787018 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::3 816081 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::4 2309777 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::5 2310026 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::6 4565188 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::7 24972 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::8 24597 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::9 24594 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::10 24587 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::11 47867 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::12 24582 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::13 47847 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::14 1291 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::15 1284 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::16 2 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::17 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::18 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::19 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::20 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::21 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::22 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::23 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::24 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::25 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::26 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::27 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::28 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::29 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::30 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::31 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::32 0 # What read queue length does an incoming req see +system.physmem.wrQLenPdf::0 3518 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::1 3552 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::2 3620 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::3 3760 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::4 3937 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::5 4056 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::6 4161 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::7 4250 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::8 4415 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::9 22096 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::10 22090 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::11 22088 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::12 22084 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::13 22079 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::14 22076 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::15 22070 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::16 22068 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::17 22064 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::18 22061 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::19 22055 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::20 22051 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::21 22047 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::22 22044 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::23 18625 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::24 18585 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::25 18515 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::26 18369 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::27 18188 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::28 18065 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::29 17957 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::30 17859 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::31 17690 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::32 0 # What write queue length does an incoming req see +system.physmem.totQLat 234691241923 # Total cycles spent in queuing delays +system.physmem.totMemAccLat 297448055923 # Sum of mem lat for all requests +system.physmem.totBusLat 50478100000 # Total cycles spent in databus access +system.physmem.totBankLat 12278714000 # Total cycles spent in bank access +system.physmem.avgQLat 18597.47 # Average queueing delay per request +system.physmem.avgBankLat 972.99 # Average bank access latency per request +system.physmem.avgBusLat 4000.00 # Average bus latency per request +system.physmem.avgMemAccLat 23570.46 # Average memory access latency +system.physmem.avgRdBW 336.32 # Average achieved read bandwidth in MB/s +system.physmem.avgWrBW 13.54 # Average achieved write bandwidth in MB/s +system.physmem.avgConsumedRdBW 42.89 # Average consumed read bandwidth in MB/s +system.physmem.avgConsumedWrBW 1.28 # Average consumed write bandwidth in MB/s +system.physmem.peakBW 16000.00 # Theoretical peak bandwidth in MB/s +system.physmem.busUtil 2.19 # Data bus utilization in percentage +system.physmem.avgRdQLen 0.12 # Average read queue length over time +system.physmem.avgWrQLen 0.40 # Average write queue length over time +system.physmem.readRowHits 12589945 # Number of row buffer hits during reads +system.physmem.writeRowHits 499132 # Number of row buffer hits during writes +system.physmem.readRowHitRate 99.77 # Row buffer hit rate for reads +system.physmem.writeRowHitRate 98.24 # Row buffer hit rate for writes +system.physmem.avgGap 182850.04 # Average gap between requests +system.realview.nvmem.bytes_read::cpu0.inst 20 # Number of bytes read from this memory +system.realview.nvmem.bytes_read::total 20 # Number of bytes read from this memory +system.realview.nvmem.bytes_inst_read::cpu0.inst 20 # Number of instructions bytes read from this memory +system.realview.nvmem.bytes_inst_read::total 20 # Number of instructions bytes read from this memory +system.realview.nvmem.num_reads::cpu0.inst 5 # Number of read requests responded to by this memory +system.realview.nvmem.num_reads::total 5 # Number of read requests responded to by this memory +system.realview.nvmem.bw_read::cpu0.inst 8 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_read::total 8 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::cpu0.inst 8 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::total 8 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_total::cpu0.inst 8 # Total bandwidth to/from this memory (bytes/s) +system.realview.nvmem.bw_total::total 8 # Total bandwidth to/from this memory (bytes/s) +system.l2c.replacements 63371 # number of replacements +system.l2c.tagsinuse 50440.930838 # Cycle average of tags in use +system.l2c.total_refs 1764263 # Total number of references to valid blocks. +system.l2c.sampled_refs 128761 # Sample count of references to valid blocks. +system.l2c.avg_refs 13.701843 # Average number of references to valid blocks. +system.l2c.warmup_cycle 2374519462500 # Cycle when the warmup percentage was hit. +system.l2c.occ_blocks::writebacks 36775.045658 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.dtb.walker 0.000018 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.itb.walker 0.000124 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.inst 4782.596749 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.data 3401.388842 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.dtb.walker 0.993264 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.inst 624.225892 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.data 1084.430901 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu2.dtb.walker 16.710319 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu2.itb.walker 0.970933 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu2.inst 2110.368967 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu2.data 1644.199171 # Average occupied blocks per requestor +system.l2c.occ_percent::writebacks 0.561143 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.dtb.walker 0.000000 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.itb.walker 0.000000 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.inst 0.072977 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.data 0.051901 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.dtb.walker 0.000015 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.inst 0.009525 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.data 0.016547 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu2.dtb.walker 0.000255 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu2.itb.walker 0.000015 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu2.inst 0.032202 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu2.data 0.025088 # Average percentage of cache occupancy +system.l2c.occ_percent::total 0.769668 # Average percentage of cache occupancy +system.l2c.ReadReq_hits::cpu0.dtb.walker 8850 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.itb.walker 3418 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.inst 467065 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.data 185990 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.dtb.walker 2576 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.itb.walker 1139 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.inst 127160 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.data 58153 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu2.dtb.walker 32653 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu2.itb.walker 4529 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu2.inst 285923 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu2.data 129158 # number of ReadReq hits +system.l2c.ReadReq_hits::total 1306614 # number of ReadReq hits +system.l2c.Writeback_hits::writebacks 597611 # number of Writeback hits +system.l2c.Writeback_hits::total 597611 # number of Writeback hits +system.l2c.UpgradeReq_hits::cpu0.data 13 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu1.data 4 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu2.data 14 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::total 31 # number of UpgradeReq hits +system.l2c.SCUpgradeReq_hits::cpu2.data 6 # number of SCUpgradeReq hits +system.l2c.SCUpgradeReq_hits::total 6 # number of SCUpgradeReq hits +system.l2c.ReadExReq_hits::cpu0.data 62389 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu1.data 18579 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu2.data 32685 # number of ReadExReq hits +system.l2c.ReadExReq_hits::total 113653 # number of ReadExReq hits +system.l2c.demand_hits::cpu0.dtb.walker 8850 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.itb.walker 3418 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.inst 467065 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.data 248379 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.dtb.walker 2576 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.itb.walker 1139 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.inst 127160 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.data 76732 # number of demand (read+write) hits +system.l2c.demand_hits::cpu2.dtb.walker 32653 # number of demand (read+write) hits +system.l2c.demand_hits::cpu2.itb.walker 4529 # number of demand (read+write) hits +system.l2c.demand_hits::cpu2.inst 285923 # number of demand (read+write) hits +system.l2c.demand_hits::cpu2.data 161843 # number of demand (read+write) hits +system.l2c.demand_hits::total 1420267 # number of demand (read+write) hits +system.l2c.overall_hits::cpu0.dtb.walker 8850 # number of overall hits +system.l2c.overall_hits::cpu0.itb.walker 3418 # number of overall hits +system.l2c.overall_hits::cpu0.inst 467065 # number of overall hits +system.l2c.overall_hits::cpu0.data 248379 # number of overall hits +system.l2c.overall_hits::cpu1.dtb.walker 2576 # number of overall hits +system.l2c.overall_hits::cpu1.itb.walker 1139 # number of overall hits +system.l2c.overall_hits::cpu1.inst 127160 # number of overall hits +system.l2c.overall_hits::cpu1.data 76732 # number of overall hits +system.l2c.overall_hits::cpu2.dtb.walker 32653 # number of overall hits +system.l2c.overall_hits::cpu2.itb.walker 4529 # number of overall hits +system.l2c.overall_hits::cpu2.inst 285923 # number of overall hits +system.l2c.overall_hits::cpu2.data 161843 # number of overall hits +system.l2c.overall_hits::total 1420267 # number of overall hits +system.l2c.ReadReq_misses::cpu0.dtb.walker 1 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.itb.walker 2 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.inst 7068 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.data 5964 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.dtb.walker 1 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.inst 1151 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.data 1562 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu2.dtb.walker 19 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu2.itb.walker 2 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu2.inst 3416 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu2.data 2619 # number of ReadReq misses +system.l2c.ReadReq_misses::total 21805 # number of ReadReq misses +system.l2c.UpgradeReq_misses::cpu0.data 1429 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::cpu1.data 489 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::cpu2.data 987 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::total 2905 # number of UpgradeReq misses +system.l2c.ReadExReq_misses::cpu0.data 104629 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu1.data 9911 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu2.data 18825 # number of ReadExReq misses +system.l2c.ReadExReq_misses::total 133365 # number of ReadExReq misses +system.l2c.demand_misses::cpu0.dtb.walker 1 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.itb.walker 2 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.inst 7068 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.data 110593 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.dtb.walker 1 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.inst 1151 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.data 11473 # number of demand (read+write) misses +system.l2c.demand_misses::cpu2.dtb.walker 19 # number of demand (read+write) misses +system.l2c.demand_misses::cpu2.itb.walker 2 # number of demand (read+write) misses +system.l2c.demand_misses::cpu2.inst 3416 # number of demand (read+write) misses +system.l2c.demand_misses::cpu2.data 21444 # number of demand (read+write) misses +system.l2c.demand_misses::total 155170 # number of demand (read+write) misses +system.l2c.overall_misses::cpu0.dtb.walker 1 # number of overall misses +system.l2c.overall_misses::cpu0.itb.walker 2 # number of overall misses +system.l2c.overall_misses::cpu0.inst 7068 # number of overall misses +system.l2c.overall_misses::cpu0.data 110593 # number of overall misses +system.l2c.overall_misses::cpu1.dtb.walker 1 # number of overall misses +system.l2c.overall_misses::cpu1.inst 1151 # number of overall misses +system.l2c.overall_misses::cpu1.data 11473 # number of overall misses +system.l2c.overall_misses::cpu2.dtb.walker 19 # number of overall misses +system.l2c.overall_misses::cpu2.itb.walker 2 # number of overall misses +system.l2c.overall_misses::cpu2.inst 3416 # number of overall misses +system.l2c.overall_misses::cpu2.data 21444 # number of overall misses +system.l2c.overall_misses::total 155170 # number of overall misses +system.l2c.ReadReq_miss_latency::cpu1.dtb.walker 69000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.inst 59181000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.data 81935500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu2.dtb.walker 1348500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu2.itb.walker 137000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu2.inst 197768500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu2.data 150939499 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::total 491378999 # number of ReadReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu1.data 91500 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu2.data 137000 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::total 228500 # number of UpgradeReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu1.data 442251500 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu2.data 1015620500 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::total 1457872000 # number of ReadExReq miss cycles +system.l2c.demand_miss_latency::cpu1.dtb.walker 69000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.inst 59181000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.data 524187000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu2.dtb.walker 1348500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu2.itb.walker 137000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu2.inst 197768500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu2.data 1166559999 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::total 1949250999 # number of demand (read+write) miss cycles +system.l2c.overall_miss_latency::cpu1.dtb.walker 69000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.inst 59181000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.data 524187000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu2.dtb.walker 1348500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu2.itb.walker 137000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu2.inst 197768500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu2.data 1166559999 # number of overall miss cycles +system.l2c.overall_miss_latency::total 1949250999 # number of overall miss cycles +system.l2c.ReadReq_accesses::cpu0.dtb.walker 8851 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.itb.walker 3420 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.inst 474133 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.data 191954 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.dtb.walker 2577 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.itb.walker 1139 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.inst 128311 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.data 59715 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu2.dtb.walker 32672 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu2.itb.walker 4531 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu2.inst 289339 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu2.data 131777 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::total 1328419 # number of ReadReq accesses(hits+misses) +system.l2c.Writeback_accesses::writebacks 597611 # number of Writeback accesses(hits+misses) +system.l2c.Writeback_accesses::total 597611 # number of Writeback accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu0.data 1442 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu1.data 493 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu2.data 1001 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::total 2936 # number of UpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::cpu2.data 6 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::total 6 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu0.data 167018 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu1.data 28490 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu2.data 51510 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::total 247018 # number of ReadExReq accesses(hits+misses) +system.l2c.demand_accesses::cpu0.dtb.walker 8851 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.itb.walker 3420 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.inst 474133 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.data 358972 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.dtb.walker 2577 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.itb.walker 1139 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.inst 128311 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.data 88205 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu2.dtb.walker 32672 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu2.itb.walker 4531 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu2.inst 289339 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu2.data 183287 # number of demand (read+write) accesses +system.l2c.demand_accesses::total 1575437 # number of demand (read+write) accesses +system.l2c.overall_accesses::cpu0.dtb.walker 8851 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.itb.walker 3420 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.inst 474133 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.data 358972 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.dtb.walker 2577 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.itb.walker 1139 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.inst 128311 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.data 88205 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu2.dtb.walker 32672 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu2.itb.walker 4531 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu2.inst 289339 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu2.data 183287 # number of overall (read+write) accesses +system.l2c.overall_accesses::total 1575437 # number of overall (read+write) accesses +system.l2c.ReadReq_miss_rate::cpu0.dtb.walker 0.000113 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.itb.walker 0.000585 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.inst 0.014907 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.data 0.031070 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.dtb.walker 0.000388 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.inst 0.008970 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.data 0.026158 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu2.dtb.walker 0.000582 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu2.itb.walker 0.000441 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu2.inst 0.011806 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu2.data 0.019874 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::total 0.016414 # miss rate for ReadReq accesses +system.l2c.UpgradeReq_miss_rate::cpu0.data 0.990985 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::cpu1.data 0.991886 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::cpu2.data 0.986014 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::total 0.989441 # miss rate for UpgradeReq accesses +system.l2c.ReadExReq_miss_rate::cpu0.data 0.626453 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu1.data 0.347876 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu2.data 0.365463 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::total 0.539900 # miss rate for ReadExReq accesses +system.l2c.demand_miss_rate::cpu0.dtb.walker 0.000113 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.itb.walker 0.000585 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.inst 0.014907 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.data 0.308083 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.dtb.walker 0.000388 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.inst 0.008970 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.data 0.130072 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu2.dtb.walker 0.000582 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu2.itb.walker 0.000441 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu2.inst 0.011806 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu2.data 0.116997 # miss rate for demand accesses +system.l2c.demand_miss_rate::total 0.098493 # miss rate for demand accesses +system.l2c.overall_miss_rate::cpu0.dtb.walker 0.000113 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.itb.walker 0.000585 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.inst 0.014907 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.data 0.308083 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.dtb.walker 0.000388 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.inst 0.008970 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.data 0.130072 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu2.dtb.walker 0.000582 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu2.itb.walker 0.000441 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu2.inst 0.011806 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu2.data 0.116997 # miss rate for overall accesses +system.l2c.overall_miss_rate::total 0.098493 # miss rate for overall accesses +system.l2c.ReadReq_avg_miss_latency::cpu1.dtb.walker 69000 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.inst 51417.028671 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.data 52455.505762 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu2.dtb.walker 70973.684211 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu2.itb.walker 68500 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu2.inst 57894.759953 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu2.data 57632.492936 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::total 22535.152442 # average ReadReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu1.data 187.116564 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu2.data 138.804458 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::total 78.657487 # average UpgradeReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu1.data 44622.288366 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu2.data 53950.624170 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::total 10931.443782 # average ReadExReq miss latency +system.l2c.demand_avg_miss_latency::cpu1.dtb.walker 69000 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.inst 51417.028671 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.data 45688.747494 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu2.dtb.walker 70973.684211 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu2.itb.walker 68500 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu2.inst 57894.759953 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu2.data 54400.298405 # average overall miss latency +system.l2c.demand_avg_miss_latency::total 12562.035181 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.dtb.walker 69000 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.inst 51417.028671 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.data 45688.747494 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu2.dtb.walker 70973.684211 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu2.itb.walker 68500 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu2.inst 57894.759953 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu2.data 54400.298405 # average overall miss latency +system.l2c.overall_avg_miss_latency::total 12562.035181 # average overall miss latency +system.l2c.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.l2c.blocked::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked::no_targets 0 # number of cycles access was blocked +system.l2c.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.l2c.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.l2c.fast_writes 0 # number of fast writes performed +system.l2c.cache_copies 0 # number of cache copies performed +system.l2c.writebacks::writebacks 58563 # number of writebacks +system.l2c.writebacks::total 58563 # number of writebacks +system.l2c.ReadReq_mshr_hits::cpu2.inst 2 # number of ReadReq MSHR hits +system.l2c.ReadReq_mshr_hits::cpu2.data 15 # number of ReadReq MSHR hits +system.l2c.ReadReq_mshr_hits::total 17 # number of ReadReq MSHR hits +system.l2c.demand_mshr_hits::cpu2.inst 2 # number of demand (read+write) MSHR hits +system.l2c.demand_mshr_hits::cpu2.data 15 # number of demand (read+write) MSHR hits +system.l2c.demand_mshr_hits::total 17 # number of demand (read+write) MSHR hits +system.l2c.overall_mshr_hits::cpu2.inst 2 # number of overall MSHR hits +system.l2c.overall_mshr_hits::cpu2.data 15 # number of overall MSHR hits +system.l2c.overall_mshr_hits::total 17 # number of overall MSHR hits +system.l2c.ReadReq_mshr_misses::cpu1.dtb.walker 1 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.inst 1151 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.data 1562 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu2.dtb.walker 19 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu2.itb.walker 2 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu2.inst 3414 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu2.data 2604 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::total 8753 # number of ReadReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu1.data 489 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu2.data 987 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::total 1476 # number of UpgradeReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu1.data 9911 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu2.data 18825 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::total 28736 # number of ReadExReq MSHR misses +system.l2c.demand_mshr_misses::cpu1.dtb.walker 1 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.inst 1151 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.data 11473 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu2.dtb.walker 19 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu2.itb.walker 2 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu2.inst 3414 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu2.data 21429 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::total 37489 # number of demand (read+write) MSHR misses +system.l2c.overall_mshr_misses::cpu1.dtb.walker 1 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.inst 1151 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.data 11473 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu2.dtb.walker 19 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu2.itb.walker 2 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu2.inst 3414 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu2.data 21429 # number of overall MSHR misses +system.l2c.overall_mshr_misses::total 37489 # number of overall MSHR misses +system.l2c.ReadReq_mshr_miss_latency::cpu1.dtb.walker 56002 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.inst 44565780 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.data 61910606 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu2.dtb.walker 1106535 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu2.itb.walker 112004 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu2.inst 154485385 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu2.data 117079807 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::total 379316119 # number of ReadReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu1.data 4947956 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu2.data 9870987 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::total 14818943 # number of UpgradeReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu1.data 315063958 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu2.data 780713218 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::total 1095777176 # number of ReadExReq MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.dtb.walker 56002 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.inst 44565780 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.data 376974564 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu2.dtb.walker 1106535 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu2.itb.walker 112004 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu2.inst 154485385 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu2.data 897793025 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::total 1475093295 # number of demand (read+write) MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.dtb.walker 56002 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.inst 44565780 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.data 376974564 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu2.dtb.walker 1106535 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu2.itb.walker 112004 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu2.inst 154485385 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu2.data 897793025 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::total 1475093295 # number of overall MSHR miss cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu1.data 25233133000 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu2.data 26572368004 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::total 51805501004 # number of ReadReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu1.data 640106868 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu2.data 7144945536 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::total 7785052404 # number of WriteReq MSHR uncacheable cycles +system.l2c.LoadLockedReq_mshr_uncacheable_latency::cpu1.data 76004 # number of LoadLockedReq MSHR uncacheable cycles +system.l2c.LoadLockedReq_mshr_uncacheable_latency::total 76004 # number of LoadLockedReq MSHR uncacheable cycles +system.l2c.StoreCondReq_mshr_uncacheable_latency::cpu1.data 30003 # number of StoreCondReq MSHR uncacheable cycles +system.l2c.StoreCondReq_mshr_uncacheable_latency::total 30003 # number of StoreCondReq MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu1.data 25873239868 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu2.data 33717313540 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::total 59590553408 # number of overall MSHR uncacheable cycles +system.l2c.ReadReq_mshr_miss_rate::cpu1.dtb.walker 0.000388 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.inst 0.008970 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.data 0.026158 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu2.dtb.walker 0.000582 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu2.itb.walker 0.000441 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu2.inst 0.011799 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu2.data 0.019761 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::total 0.006589 # mshr miss rate for ReadReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu1.data 0.991886 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu2.data 0.986014 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::total 0.502725 # mshr miss rate for UpgradeReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu1.data 0.347876 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu2.data 0.365463 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::total 0.116332 # mshr miss rate for ReadExReq accesses +system.l2c.demand_mshr_miss_rate::cpu1.dtb.walker 0.000388 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.inst 0.008970 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.data 0.130072 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu2.dtb.walker 0.000582 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu2.itb.walker 0.000441 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu2.inst 0.011799 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu2.data 0.116915 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::total 0.023796 # mshr miss rate for demand accesses +system.l2c.overall_mshr_miss_rate::cpu1.dtb.walker 0.000388 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.inst 0.008970 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.data 0.130072 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu2.dtb.walker 0.000582 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu2.itb.walker 0.000441 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu2.inst 0.011799 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu2.data 0.116915 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::total 0.023796 # mshr miss rate for overall accesses +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.dtb.walker 56002 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.inst 38719.183319 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.data 39635.471191 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu2.dtb.walker 58238.684211 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu2.itb.walker 56002 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu2.inst 45250.552138 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu2.data 44961.523425 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::total 43335.555695 # average ReadReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu1.data 10118.519427 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu2.data 10001 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::total 10039.934282 # average UpgradeReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu1.data 31789.320755 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu2.data 41472.149695 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::total 38132.557628 # average ReadExReq mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.dtb.walker 56002 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.inst 38719.183319 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.data 32857.540661 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu2.dtb.walker 58238.684211 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu2.itb.walker 56002 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu2.inst 45250.552138 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu2.data 41896.169910 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::total 39347.363093 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.dtb.walker 56002 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.inst 38719.183319 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.data 32857.540661 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu2.dtb.walker 58238.684211 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu2.itb.walker 56002 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu2.inst 45250.552138 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu2.data 41896.169910 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::total 39347.363093 # average overall mshr miss latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu2.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu2.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.l2c.LoadLockedReq_avg_mshr_uncacheable_latency::cpu1.data inf # average LoadLockedReq mshr uncacheable latency +system.l2c.LoadLockedReq_avg_mshr_uncacheable_latency::total inf # average LoadLockedReq mshr uncacheable latency +system.l2c.StoreCondReq_avg_mshr_uncacheable_latency::cpu1.data inf # average StoreCondReq mshr uncacheable latency +system.l2c.StoreCondReq_avg_mshr_uncacheable_latency::total inf # average StoreCondReq mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu2.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.l2c.no_allocate_misses 0 # Number of misses that were no-allocate +system.cf0.dma_read_full_pages 0 # Number of full page size DMA reads (not PRD). +system.cf0.dma_read_bytes 0 # Number of bytes transfered via DMA reads (not PRD). +system.cf0.dma_read_txs 0 # Number of DMA read transactions (not PRD). +system.cf0.dma_write_full_pages 0 # Number of full page size DMA writes. +system.cf0.dma_write_bytes 0 # Number of bytes transfered via DMA writes. +system.cf0.dma_write_txs 0 # Number of DMA write transactions. +system.cpu0.dtb.inst_hits 0 # ITB inst hits +system.cpu0.dtb.inst_misses 0 # ITB inst misses +system.cpu0.dtb.read_hits 7902224 # DTB read hits +system.cpu0.dtb.read_misses 6242 # DTB read misses +system.cpu0.dtb.write_hits 6537817 # DTB write hits +system.cpu0.dtb.write_misses 1923 # DTB write misses +system.cpu0.dtb.flush_tlb 279 # Number of times complete TLB was flushed +system.cpu0.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.dtb.flush_tlb_mva_asid 688 # Number of times TLB was flushed by MVA & ASID +system.cpu0.dtb.flush_tlb_asid 30 # Number of times TLB was flushed by ASID +system.cpu0.dtb.flush_entries 5669 # Number of entries that have been flushed from TLB +system.cpu0.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.dtb.prefetch_faults 113 # Number of TLB faults due to prefetch +system.cpu0.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.dtb.perms_faults 213 # Number of TLB faults due to permissions restrictions +system.cpu0.dtb.read_accesses 7908466 # DTB read accesses +system.cpu0.dtb.write_accesses 6539740 # DTB write accesses +system.cpu0.dtb.inst_accesses 0 # ITB inst accesses +system.cpu0.dtb.hits 14440041 # DTB hits +system.cpu0.dtb.misses 8165 # DTB misses +system.cpu0.dtb.accesses 14448206 # DTB accesses +system.cpu0.itb.inst_hits 31853127 # ITB inst hits +system.cpu0.itb.inst_misses 3518 # ITB inst misses +system.cpu0.itb.read_hits 0 # DTB read hits +system.cpu0.itb.read_misses 0 # DTB read misses +system.cpu0.itb.write_hits 0 # DTB write hits +system.cpu0.itb.write_misses 0 # DTB write misses +system.cpu0.itb.flush_tlb 279 # Number of times complete TLB was flushed +system.cpu0.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.itb.flush_tlb_mva_asid 688 # Number of times TLB was flushed by MVA & ASID +system.cpu0.itb.flush_tlb_asid 30 # Number of times TLB was flushed by ASID +system.cpu0.itb.flush_entries 2622 # Number of entries that have been flushed from TLB +system.cpu0.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu0.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions +system.cpu0.itb.read_accesses 0 # DTB read accesses +system.cpu0.itb.write_accesses 0 # DTB write accesses +system.cpu0.itb.inst_accesses 31856645 # ITB inst accesses +system.cpu0.itb.hits 31853127 # DTB hits +system.cpu0.itb.misses 3518 # DTB misses +system.cpu0.itb.accesses 31856645 # DTB accesses +system.cpu0.numCycles 112931028 # number of cpu cycles simulated +system.cpu0.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu0.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu0.committedInsts 31362077 # Number of instructions committed +system.cpu0.committedOps 41448320 # Number of ops (including micro ops) committed +system.cpu0.num_int_alu_accesses 36567470 # Number of integer alu accesses +system.cpu0.num_fp_alu_accesses 5105 # Number of float alu accesses +system.cpu0.num_func_calls 1216492 # number of times a function call or return occured +system.cpu0.num_conditional_control_insts 4268853 # number of instructions that are conditional controls +system.cpu0.num_int_insts 36567470 # number of integer instructions +system.cpu0.num_fp_insts 5105 # number of float instructions +system.cpu0.num_int_register_reads 186633277 # number of times the integer registers were read +system.cpu0.num_int_register_writes 38778240 # number of times the integer registers were written +system.cpu0.num_fp_register_reads 3615 # number of times the floating registers were read +system.cpu0.num_fp_register_writes 1492 # number of times the floating registers were written +system.cpu0.num_mem_refs 15097186 # number of memory refs +system.cpu0.num_load_insts 8269911 # Number of load instructions +system.cpu0.num_store_insts 6827275 # Number of store instructions +system.cpu0.num_idle_cycles 13401980962.617596 # Number of idle cycles +system.cpu0.num_busy_cycles -13289049934.617596 # Number of busy cycles +system.cpu0.not_idle_fraction -117.674037 # Percentage of non-idle cycles +system.cpu0.idle_fraction 118.674037 # Percentage of idle cycles +system.cpu0.kern.inst.arm 0 # number of arm instructions executed +system.cpu0.kern.inst.quiesce 84468 # number of quiesce instructions executed +system.cpu0.icache.replacements 892780 # number of replacements +system.cpu0.icache.tagsinuse 511.591234 # Cycle average of tags in use +system.cpu0.icache.total_refs 43441886 # Total number of references to valid blocks. +system.cpu0.icache.sampled_refs 893292 # Sample count of references to valid blocks. +system.cpu0.icache.avg_refs 48.631227 # Average number of references to valid blocks. +system.cpu0.icache.warmup_cycle 8001805000 # Cycle when the warmup percentage was hit. +system.cpu0.icache.occ_blocks::cpu0.inst 491.376976 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu1.inst 7.109245 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu2.inst 13.105014 # Average occupied blocks per requestor +system.cpu0.icache.occ_percent::cpu0.inst 0.959721 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu1.inst 0.013885 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu2.inst 0.025596 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::total 0.999202 # Average percentage of cache occupancy +system.cpu0.icache.ReadReq_hits::cpu0.inst 31380980 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu1.inst 8436238 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu2.inst 3624668 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::total 43441886 # number of ReadReq hits +system.cpu0.icache.demand_hits::cpu0.inst 31380980 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu1.inst 8436238 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu2.inst 3624668 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::total 43441886 # number of demand (read+write) hits +system.cpu0.icache.overall_hits::cpu0.inst 31380980 # number of overall hits +system.cpu0.icache.overall_hits::cpu1.inst 8436238 # number of overall hits +system.cpu0.icache.overall_hits::cpu2.inst 3624668 # number of overall hits +system.cpu0.icache.overall_hits::total 43441886 # number of overall hits +system.cpu0.icache.ReadReq_misses::cpu0.inst 474853 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu1.inst 128587 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu2.inst 314740 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::total 918180 # number of ReadReq misses +system.cpu0.icache.demand_misses::cpu0.inst 474853 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu1.inst 128587 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu2.inst 314740 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::total 918180 # number of demand (read+write) misses +system.cpu0.icache.overall_misses::cpu0.inst 474853 # number of overall misses +system.cpu0.icache.overall_misses::cpu1.inst 128587 # number of overall misses +system.cpu0.icache.overall_misses::cpu2.inst 314740 # number of overall misses +system.cpu0.icache.overall_misses::total 918180 # number of overall misses +system.cpu0.icache.ReadReq_miss_latency::cpu1.inst 1722310000 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::cpu2.inst 4209726988 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::total 5932036988 # number of ReadReq miss cycles +system.cpu0.icache.demand_miss_latency::cpu1.inst 1722310000 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::cpu2.inst 4209726988 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::total 5932036988 # number of demand (read+write) miss cycles +system.cpu0.icache.overall_miss_latency::cpu1.inst 1722310000 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::cpu2.inst 4209726988 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::total 5932036988 # number of overall miss cycles +system.cpu0.icache.ReadReq_accesses::cpu0.inst 31855833 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu1.inst 8564825 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu2.inst 3939408 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::total 44360066 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.demand_accesses::cpu0.inst 31855833 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu1.inst 8564825 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu2.inst 3939408 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::total 44360066 # number of demand (read+write) accesses +system.cpu0.icache.overall_accesses::cpu0.inst 31855833 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu1.inst 8564825 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu2.inst 3939408 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::total 44360066 # number of overall (read+write) accesses +system.cpu0.icache.ReadReq_miss_rate::cpu0.inst 0.014906 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu1.inst 0.015013 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu2.inst 0.079895 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::total 0.020698 # miss rate for ReadReq accesses +system.cpu0.icache.demand_miss_rate::cpu0.inst 0.014906 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu1.inst 0.015013 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu2.inst 0.079895 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::total 0.020698 # miss rate for demand accesses +system.cpu0.icache.overall_miss_rate::cpu0.inst 0.014906 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu1.inst 0.015013 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu2.inst 0.079895 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::total 0.020698 # miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_miss_latency::cpu1.inst 13394.122267 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::cpu2.inst 13375.252551 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::total 6460.647137 # average ReadReq miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu1.inst 13394.122267 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu2.inst 13375.252551 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::total 6460.647137 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu1.inst 13394.122267 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu2.inst 13375.252551 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::total 6460.647137 # average overall miss latency +system.cpu0.icache.blocked_cycles::no_mshrs 3469 # number of cycles access was blocked +system.cpu0.icache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.cpu0.icache.blocked::no_mshrs 241 # number of cycles access was blocked +system.cpu0.icache.blocked::no_targets 0 # number of cycles access was blocked +system.cpu0.icache.avg_blocked_cycles::no_mshrs 14.394191 # average number of cycles each access was blocked +system.cpu0.icache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.cpu0.icache.fast_writes 0 # number of fast writes performed +system.cpu0.icache.cache_copies 0 # number of cache copies performed +system.cpu0.icache.ReadReq_mshr_hits::cpu2.inst 24876 # number of ReadReq MSHR hits +system.cpu0.icache.ReadReq_mshr_hits::total 24876 # number of ReadReq MSHR hits +system.cpu0.icache.demand_mshr_hits::cpu2.inst 24876 # number of demand (read+write) MSHR hits +system.cpu0.icache.demand_mshr_hits::total 24876 # number of demand (read+write) MSHR hits +system.cpu0.icache.overall_mshr_hits::cpu2.inst 24876 # number of overall MSHR hits +system.cpu0.icache.overall_mshr_hits::total 24876 # number of overall MSHR hits +system.cpu0.icache.ReadReq_mshr_misses::cpu1.inst 128587 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::cpu2.inst 289864 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::total 418451 # number of ReadReq MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu1.inst 128587 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu2.inst 289864 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::total 418451 # number of demand (read+write) MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu1.inst 128587 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu2.inst 289864 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::total 418451 # number of overall MSHR misses +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu1.inst 1465136000 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu2.inst 3427061488 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::total 4892197488 # number of ReadReq MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu1.inst 1465136000 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu2.inst 3427061488 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::total 4892197488 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu1.inst 1465136000 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu2.inst 3427061488 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::total 4892197488 # number of overall MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu1.inst 0.015013 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu2.inst 0.073581 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::total 0.009433 # mshr miss rate for ReadReq accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu1.inst 0.015013 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu2.inst 0.073581 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::total 0.009433 # mshr miss rate for demand accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu1.inst 0.015013 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu2.inst 0.073581 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::total 0.009433 # mshr miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu1.inst 11394.122267 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu2.inst 11822.997985 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::total 11691.207544 # average ReadReq mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu1.inst 11394.122267 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu2.inst 11822.997985 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::total 11691.207544 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu1.inst 11394.122267 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu2.inst 11822.997985 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::total 11691.207544 # average overall mshr miss latency +system.cpu0.icache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu0.dcache.replacements 629952 # number of replacements +system.cpu0.dcache.tagsinuse 511.997116 # Cycle average of tags in use +system.cpu0.dcache.total_refs 23322161 # Total number of references to valid blocks. +system.cpu0.dcache.sampled_refs 630464 # Sample count of references to valid blocks. +system.cpu0.dcache.avg_refs 36.992058 # Average number of references to valid blocks. +system.cpu0.dcache.warmup_cycle 21763000 # Cycle when the warmup percentage was hit. +system.cpu0.dcache.occ_blocks::cpu0.data 497.280136 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu1.data 8.191597 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu2.data 6.525382 # Average occupied blocks per requestor +system.cpu0.dcache.occ_percent::cpu0.data 0.971250 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu1.data 0.015999 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu2.data 0.012745 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::total 0.999994 # Average percentage of cache occupancy +system.cpu0.dcache.ReadReq_hits::cpu0.data 6763167 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu1.data 1877822 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu2.data 4718068 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::total 13359057 # number of ReadReq hits +system.cpu0.dcache.WriteReq_hits::cpu0.data 5963557 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu1.data 1365617 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu2.data 2102817 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::total 9431991 # number of WriteReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu0.data 135570 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu1.data 32797 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu2.data 91307 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::total 259674 # number of LoadLockedReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu0.data 142092 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu1.data 34425 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu2.data 91924 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::total 268441 # number of StoreCondReq hits +system.cpu0.dcache.demand_hits::cpu0.data 12726724 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu1.data 3243439 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu2.data 6820885 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::total 22791048 # number of demand (read+write) hits +system.cpu0.dcache.overall_hits::cpu0.data 12726724 # number of overall hits +system.cpu0.dcache.overall_hits::cpu1.data 3243439 # number of overall hits +system.cpu0.dcache.overall_hits::cpu2.data 6820885 # number of overall hits +system.cpu0.dcache.overall_hits::total 22791048 # number of overall hits +system.cpu0.dcache.ReadReq_misses::cpu0.data 185432 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu1.data 58086 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu2.data 273913 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::total 517431 # number of ReadReq misses +system.cpu0.dcache.WriteReq_misses::cpu0.data 168460 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu1.data 28983 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu2.data 595876 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::total 793319 # number of WriteReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu0.data 6522 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu1.data 1629 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu2.data 3810 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::total 11961 # number of LoadLockedReq misses +system.cpu0.dcache.StoreCondReq_misses::cpu2.data 6 # number of StoreCondReq misses +system.cpu0.dcache.StoreCondReq_misses::total 6 # number of StoreCondReq misses +system.cpu0.dcache.demand_misses::cpu0.data 353892 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu1.data 87069 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu2.data 869789 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::total 1310750 # number of demand (read+write) misses +system.cpu0.dcache.overall_misses::cpu0.data 353892 # number of overall misses +system.cpu0.dcache.overall_misses::cpu1.data 87069 # number of overall misses +system.cpu0.dcache.overall_misses::cpu2.data 869789 # number of overall misses +system.cpu0.dcache.overall_misses::total 1310750 # number of overall misses +system.cpu0.dcache.ReadReq_miss_latency::cpu1.data 824588500 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::cpu2.data 3876286000 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::total 4700874500 # number of ReadReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu1.data 726126000 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu2.data 19133055918 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::total 19859181918 # number of WriteReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu1.data 21335000 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu2.data 51226000 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::total 72561000 # number of LoadLockedReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::cpu2.data 78000 # number of StoreCondReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::total 78000 # number of StoreCondReq miss cycles +system.cpu0.dcache.demand_miss_latency::cpu1.data 1550714500 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::cpu2.data 23009341918 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::total 24560056418 # number of demand (read+write) miss cycles +system.cpu0.dcache.overall_miss_latency::cpu1.data 1550714500 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::cpu2.data 23009341918 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::total 24560056418 # number of overall miss cycles +system.cpu0.dcache.ReadReq_accesses::cpu0.data 6948599 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu1.data 1935908 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu2.data 4991981 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::total 13876488 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu0.data 6132017 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu1.data 1394600 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu2.data 2698693 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::total 10225310 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu0.data 142092 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu1.data 34426 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu2.data 95117 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::total 271635 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu0.data 142092 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu1.data 34425 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu2.data 91930 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::total 268447 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.demand_accesses::cpu0.data 13080616 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu1.data 3330508 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu2.data 7690674 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::total 24101798 # number of demand (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu0.data 13080616 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu1.data 3330508 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu2.data 7690674 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::total 24101798 # number of overall (read+write) accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu0.data 0.026686 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu1.data 0.030005 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu2.data 0.054871 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::total 0.037288 # miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu0.data 0.027472 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu1.data 0.020782 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu2.data 0.220802 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::total 0.077584 # miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu0.data 0.045900 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu1.data 0.047319 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu2.data 0.040056 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::total 0.044033 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::cpu2.data 0.000065 # miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::total 0.000022 # miss rate for StoreCondReq accesses +system.cpu0.dcache.demand_miss_rate::cpu0.data 0.027055 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu1.data 0.026143 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu2.data 0.113097 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::total 0.054384 # miss rate for demand accesses +system.cpu0.dcache.overall_miss_rate::cpu0.data 0.027055 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu1.data 0.026143 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu2.data 0.113097 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::total 0.054384 # miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu1.data 14195.993871 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu2.data 14151.522564 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::total 9085.026796 # average ReadReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu1.data 25053.514129 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu2.data 32109.123237 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::total 25033.034527 # average WriteReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu1.data 13096.992020 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu2.data 13445.144357 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::total 6066.466015 # average LoadLockedReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::cpu2.data 13000 # average StoreCondReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::total 13000 # average StoreCondReq miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu1.data 17810.179283 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu2.data 26453.935285 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::total 18737.407147 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu1.data 17810.179283 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu2.data 26453.935285 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::total 18737.407147 # average overall miss latency +system.cpu0.dcache.blocked_cycles::no_mshrs 6963 # number of cycles access was blocked +system.cpu0.dcache.blocked_cycles::no_targets 952 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_mshrs 771 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_targets 46 # number of cycles access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_mshrs 9.031128 # average number of cycles each access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_targets 20.695652 # average number of cycles each access was blocked +system.cpu0.dcache.fast_writes 0 # number of fast writes performed +system.cpu0.dcache.cache_copies 0 # number of cache copies performed +system.cpu0.dcache.writebacks::writebacks 597611 # number of writebacks +system.cpu0.dcache.writebacks::total 597611 # number of writebacks +system.cpu0.dcache.ReadReq_mshr_hits::cpu2.data 145491 # number of ReadReq MSHR hits +system.cpu0.dcache.ReadReq_mshr_hits::total 145491 # number of ReadReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::cpu2.data 543392 # number of WriteReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::total 543392 # number of WriteReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::cpu2.data 428 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::total 428 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.demand_mshr_hits::cpu2.data 688883 # number of demand (read+write) MSHR hits +system.cpu0.dcache.demand_mshr_hits::total 688883 # number of demand (read+write) MSHR hits +system.cpu0.dcache.overall_mshr_hits::cpu2.data 688883 # number of overall MSHR hits +system.cpu0.dcache.overall_mshr_hits::total 688883 # number of overall MSHR hits +system.cpu0.dcache.ReadReq_mshr_misses::cpu1.data 58086 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::cpu2.data 128422 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::total 186508 # number of ReadReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu1.data 28983 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu2.data 52484 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::total 81467 # number of WriteReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu1.data 1629 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu2.data 3382 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::total 5011 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::cpu2.data 6 # number of StoreCondReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::total 6 # number of StoreCondReq MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu1.data 87069 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu2.data 180906 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::total 267975 # number of demand (read+write) MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu1.data 87069 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu2.data 180906 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::total 267975 # number of overall MSHR misses +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu1.data 708416500 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu2.data 1664999000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::total 2373415500 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu1.data 668160000 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu2.data 1456004992 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::total 2124164992 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu1.data 18077000 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu2.data 39418000 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::total 57495000 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::cpu2.data 66000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::total 66000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu1.data 1376576500 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu2.data 3121003992 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::total 4497580492 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu1.data 1376576500 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu2.data 3121003992 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::total 4497580492 # number of overall MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu1.data 27568021500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu2.data 29009742000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::total 56577763500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu1.data 1272962000 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu2.data 12893978360 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::total 14166940360 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.LoadLockedReq_mshr_uncacheable_latency::cpu1.data 117500 # number of LoadLockedReq MSHR uncacheable cycles +system.cpu0.dcache.LoadLockedReq_mshr_uncacheable_latency::total 117500 # number of LoadLockedReq MSHR uncacheable cycles +system.cpu0.dcache.StoreCondReq_mshr_uncacheable_latency::cpu1.data 69000 # number of StoreCondReq MSHR uncacheable cycles +system.cpu0.dcache.StoreCondReq_mshr_uncacheable_latency::total 69000 # number of StoreCondReq MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu1.data 28840983500 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu2.data 41903720360 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::total 70744703860 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu1.data 0.030005 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu2.data 0.025726 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::total 0.013441 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu1.data 0.020782 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu2.data 0.019448 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::total 0.007967 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu1.data 0.047319 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu2.data 0.035556 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::total 0.018448 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::cpu2.data 0.000065 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::total 0.000022 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu1.data 0.026143 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu2.data 0.023523 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::total 0.011118 # mshr miss rate for demand accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu1.data 0.026143 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu2.data 0.023523 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::total 0.011118 # mshr miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu1.data 12195.993871 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu2.data 12965.060504 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::total 12725.542604 # average ReadReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu1.data 23053.514129 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu2.data 27741.883088 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::total 26073.931678 # average WriteReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu1.data 11096.992020 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu2.data 11655.233590 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::total 11473.757733 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::cpu2.data 11000 # average StoreCondReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::total 11000 # average StoreCondReq mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu1.data 15810.179283 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu2.data 17252.075619 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::total 16783.582394 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu1.data 15810.179283 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu2.data 17252.075619 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::total 16783.582394 # average overall mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu2.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu2.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_uncacheable_latency::cpu1.data inf # average LoadLockedReq mshr uncacheable latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_uncacheable_latency::total inf # average LoadLockedReq mshr uncacheable latency +system.cpu0.dcache.StoreCondReq_avg_mshr_uncacheable_latency::cpu1.data inf # average StoreCondReq mshr uncacheable latency +system.cpu0.dcache.StoreCondReq_avg_mshr_uncacheable_latency::total inf # average StoreCondReq mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu2.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.cpu0.dcache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu1.dtb.inst_hits 0 # ITB inst hits +system.cpu1.dtb.inst_misses 0 # ITB inst misses +system.cpu1.dtb.read_hits 2149941 # DTB read hits +system.cpu1.dtb.read_misses 2094 # DTB read misses +system.cpu1.dtb.write_hits 1479770 # DTB write hits +system.cpu1.dtb.write_misses 382 # DTB write misses +system.cpu1.dtb.flush_tlb 277 # Number of times complete TLB was flushed +system.cpu1.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.dtb.flush_tlb_mva_asid 240 # Number of times TLB was flushed by MVA & ASID +system.cpu1.dtb.flush_tlb_asid 11 # Number of times TLB was flushed by ASID +system.cpu1.dtb.flush_entries 1681 # Number of entries that have been flushed from TLB +system.cpu1.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.dtb.prefetch_faults 46 # Number of TLB faults due to prefetch +system.cpu1.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.dtb.perms_faults 79 # Number of TLB faults due to permissions restrictions +system.cpu1.dtb.read_accesses 2152035 # DTB read accesses +system.cpu1.dtb.write_accesses 1480152 # DTB write accesses +system.cpu1.dtb.inst_accesses 0 # ITB inst accesses +system.cpu1.dtb.hits 3629711 # DTB hits +system.cpu1.dtb.misses 2476 # DTB misses +system.cpu1.dtb.accesses 3632187 # DTB accesses +system.cpu1.itb.inst_hits 8564825 # ITB inst hits +system.cpu1.itb.inst_misses 1128 # ITB inst misses +system.cpu1.itb.read_hits 0 # DTB read hits +system.cpu1.itb.read_misses 0 # DTB read misses +system.cpu1.itb.write_hits 0 # DTB write hits +system.cpu1.itb.write_misses 0 # DTB write misses +system.cpu1.itb.flush_tlb 277 # Number of times complete TLB was flushed +system.cpu1.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.itb.flush_tlb_mva_asid 240 # Number of times TLB was flushed by MVA & ASID +system.cpu1.itb.flush_tlb_asid 11 # Number of times TLB was flushed by ASID +system.cpu1.itb.flush_entries 827 # Number of entries that have been flushed from TLB +system.cpu1.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu1.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions +system.cpu1.itb.read_accesses 0 # DTB read accesses +system.cpu1.itb.write_accesses 0 # DTB write accesses +system.cpu1.itb.inst_accesses 8565953 # ITB inst accesses +system.cpu1.itb.hits 8564825 # DTB hits +system.cpu1.itb.misses 1128 # DTB misses +system.cpu1.itb.accesses 8565953 # DTB accesses +system.cpu1.numCycles 573618226 # number of cpu cycles simulated +system.cpu1.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu1.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu1.committedInsts 8360582 # Number of instructions committed +system.cpu1.committedOps 10552123 # Number of ops (including micro ops) committed +system.cpu1.num_int_alu_accesses 9474069 # Number of integer alu accesses +system.cpu1.num_fp_alu_accesses 2062 # Number of float alu accesses +system.cpu1.num_func_calls 304948 # number of times a function call or return occured +system.cpu1.num_conditional_control_insts 1122653 # number of instructions that are conditional controls +system.cpu1.num_int_insts 9474069 # number of integer instructions +system.cpu1.num_fp_insts 2062 # number of float instructions +system.cpu1.num_int_register_reads 54388368 # number of times the integer registers were read +system.cpu1.num_int_register_writes 10296894 # number of times the integer registers were written +system.cpu1.num_fp_register_reads 1613 # number of times the floating registers were read +system.cpu1.num_fp_register_writes 450 # number of times the floating registers were written +system.cpu1.num_mem_refs 3801129 # number of memory refs +system.cpu1.num_load_insts 2242444 # Number of load instructions +system.cpu1.num_store_insts 1558685 # Number of store instructions +system.cpu1.num_idle_cycles -28470862.464355 # Number of idle cycles +system.cpu1.num_busy_cycles 602089088.464355 # Number of busy cycles +system.cpu1.not_idle_fraction 1.049634 # Percentage of non-idle cycles +system.cpu1.idle_fraction -0.049634 # Percentage of idle cycles +system.cpu1.kern.inst.arm 0 # number of arm instructions executed +system.cpu1.kern.inst.quiesce 0 # number of quiesce instructions executed +system.cpu2.dtb.inst_hits 0 # ITB inst hits +system.cpu2.dtb.inst_misses 0 # ITB inst misses +system.cpu2.dtb.read_hits 11072336 # DTB read hits +system.cpu2.dtb.read_misses 27162 # DTB read misses +system.cpu2.dtb.write_hits 3379244 # DTB write hits +system.cpu2.dtb.write_misses 7485 # DTB write misses +system.cpu2.dtb.flush_tlb 276 # Number of times complete TLB was flushed +system.cpu2.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu2.dtb.flush_tlb_mva_asid 511 # Number of times TLB was flushed by MVA & ASID +system.cpu2.dtb.flush_tlb_asid 22 # Number of times TLB was flushed by ASID +system.cpu2.dtb.flush_entries 3059 # Number of entries that have been flushed from TLB +system.cpu2.dtb.align_faults 671 # Number of TLB faults due to alignment restrictions +system.cpu2.dtb.prefetch_faults 210 # Number of TLB faults due to prefetch +system.cpu2.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu2.dtb.perms_faults 417 # Number of TLB faults due to permissions restrictions +system.cpu2.dtb.read_accesses 11099498 # DTB read accesses +system.cpu2.dtb.write_accesses 3386729 # DTB write accesses +system.cpu2.dtb.inst_accesses 0 # ITB inst accesses +system.cpu2.dtb.hits 14451580 # DTB hits +system.cpu2.dtb.misses 34647 # DTB misses +system.cpu2.dtb.accesses 14486227 # DTB accesses +system.cpu2.itb.inst_hits 3940913 # ITB inst hits +system.cpu2.itb.inst_misses 4663 # ITB inst misses +system.cpu2.itb.read_hits 0 # DTB read hits +system.cpu2.itb.read_misses 0 # DTB read misses +system.cpu2.itb.write_hits 0 # DTB write hits +system.cpu2.itb.write_misses 0 # DTB write misses +system.cpu2.itb.flush_tlb 276 # Number of times complete TLB was flushed +system.cpu2.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu2.itb.flush_tlb_mva_asid 511 # Number of times TLB was flushed by MVA & ASID +system.cpu2.itb.flush_tlb_asid 22 # Number of times TLB was flushed by ASID +system.cpu2.itb.flush_entries 1673 # Number of entries that have been flushed from TLB +system.cpu2.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu2.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu2.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu2.itb.perms_faults 1015 # Number of TLB faults due to permissions restrictions +system.cpu2.itb.read_accesses 0 # DTB read accesses +system.cpu2.itb.write_accesses 0 # DTB write accesses +system.cpu2.itb.inst_accesses 3945576 # ITB inst accesses +system.cpu2.itb.hits 3940913 # DTB hits +system.cpu2.itb.misses 4663 # DTB misses +system.cpu2.itb.accesses 3945576 # DTB accesses +system.cpu2.numCycles 88228970 # number of cpu cycles simulated +system.cpu2.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu2.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu2.BPredUnit.lookups 4678533 # Number of BP lookups +system.cpu2.BPredUnit.condPredicted 3809806 # Number of conditional branches predicted +system.cpu2.BPredUnit.condIncorrect 231267 # Number of conditional branches incorrect +system.cpu2.BPredUnit.BTBLookups 3069092 # Number of BTB lookups +system.cpu2.BPredUnit.BTBHits 2498136 # Number of BTB hits +system.cpu2.BPredUnit.BTBCorrect 0 # Number of correct BTB predictions (this stat may not work properly. +system.cpu2.BPredUnit.usedRAS 412114 # Number of times the RAS was used to get a target. +system.cpu2.BPredUnit.RASInCorrect 22380 # Number of incorrect RAS predictions. +system.cpu2.fetch.icacheStallCycles 9360105 # Number of cycles fetch is stalled on an Icache miss +system.cpu2.fetch.Insts 31976282 # Number of instructions fetch has processed +system.cpu2.fetch.Branches 4678533 # Number of branches that fetch encountered +system.cpu2.fetch.predictedBranches 2910250 # Number of branches that fetch has predicted taken +system.cpu2.fetch.Cycles 6786917 # Number of cycles fetch has run and was not squashing or blocked +system.cpu2.fetch.SquashCycles 1728503 # Number of cycles fetch has spent squashing +system.cpu2.fetch.TlbCycles 53808 # Number of cycles fetch has spent waiting for tlb +system.cpu2.fetch.BlockedCycles 19342330 # Number of cycles fetch has spent blocked +system.cpu2.fetch.MiscStallCycles 594 # Number of cycles fetch has spent waiting on interrupts, or bad addresses, or out of MSHRs +system.cpu2.fetch.PendingDrainCycles 913 # Number of cycles fetch has spent waiting on pipes to drain +system.cpu2.fetch.PendingTrapStallCycles 36859 # Number of stall cycles due to pending traps +system.cpu2.fetch.PendingQuiesceStallCycles 59251 # Number of stall cycles due to pending quiesce instructions +system.cpu2.fetch.IcacheWaitRetryStallCycles 389 # Number of stall cycles due to full MSHR +system.cpu2.fetch.CacheLines 3939412 # Number of cache lines fetched +system.cpu2.fetch.IcacheSquashes 244088 # Number of outstanding Icache misses that were squashed +system.cpu2.fetch.ItlbSquashes 2174 # Number of outstanding ITLB misses that were squashed +system.cpu2.fetch.rateDist::samples 36830548 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::mean 1.047719 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::stdev 2.434253 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::underflows 0 0.00% 0.00% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::0 30048718 81.59% 81.59% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::1 408687 1.11% 82.70% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::2 492187 1.34% 84.03% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::3 812698 2.21% 86.24% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::4 611463 1.66% 87.90% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::5 330922 0.90% 88.80% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::6 1062958 2.89% 91.68% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::7 224607 0.61% 92.29% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::8 2838308 7.71% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::overflows 0 0.00% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::min_value 0 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::max_value 8 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.rateDist::total 36830548 # Number of instructions fetched each cycle (Total) +system.cpu2.fetch.branchRate 0.053027 # Number of branch fetches per cycle +system.cpu2.fetch.rate 0.362424 # Number of inst fetches per cycle +system.cpu2.decode.IdleCycles 9885763 # Number of cycles decode is idle +system.cpu2.decode.BlockedCycles 19327017 # Number of cycles decode is blocked +system.cpu2.decode.RunCycles 6180149 # Number of cycles decode is running +system.cpu2.decode.UnblockCycles 300885 # Number of cycles decode is unblocking +system.cpu2.decode.SquashCycles 1135792 # Number of cycles decode is squashing +system.cpu2.decode.BranchResolved 597498 # Number of times decode resolved a branch +system.cpu2.decode.BranchMispred 54848 # Number of times decode detected a branch misprediction +system.cpu2.decode.DecodedInsts 36565818 # Number of instructions handled by decode +system.cpu2.decode.SquashedInsts 186819 # Number of squashed instructions handled by decode +system.cpu2.rename.SquashCycles 1135792 # Number of cycles rename is squashing +system.cpu2.rename.IdleCycles 10385247 # Number of cycles rename is idle +system.cpu2.rename.BlockCycles 6621320 # Number of cycles rename is blocking +system.cpu2.rename.serializeStallCycles 11277395 # count of cycles rename stalled for serializing inst +system.cpu2.rename.RunCycles 5962558 # Number of cycles rename is running +system.cpu2.rename.UnblockCycles 1447335 # Number of cycles rename is unblocking +system.cpu2.rename.RenamedInsts 34838937 # Number of instructions processed by rename +system.cpu2.rename.ROBFullEvents 2719 # Number of times rename has blocked due to ROB full +system.cpu2.rename.IQFullEvents 250879 # Number of times rename has blocked due to IQ full +system.cpu2.rename.LSQFullEvents 912957 # Number of times rename has blocked due to LSQ full +system.cpu2.rename.FullRegisterEvents 22201 # Number of times there has been no free registers +system.cpu2.rename.RenamedOperands 37227895 # Number of destination operands rename has renamed +system.cpu2.rename.RenameLookups 159446068 # Number of register rename lookups that rename has made +system.cpu2.rename.int_rename_lookups 159418988 # Number of integer rename lookups +system.cpu2.rename.fp_rename_lookups 27080 # Number of floating rename lookups +system.cpu2.rename.CommittedMaps 26794485 # Number of HB maps that are committed +system.cpu2.rename.UndoneMaps 10433409 # Number of HB maps that are undone due to squashing +system.cpu2.rename.serializingInsts 254044 # count of serializing insts renamed +system.cpu2.rename.tempSerializingInsts 230219 # count of temporary serializing insts renamed +system.cpu2.rename.skidInsts 3142941 # count of insts added to the skid buffer +system.cpu2.memDep0.insertedLoads 6628278 # Number of loads inserted to the mem dependence unit. +system.cpu2.memDep0.insertedStores 3915406 # Number of stores inserted to the mem dependence unit. +system.cpu2.memDep0.conflictingLoads 518992 # Number of conflicting loads. +system.cpu2.memDep0.conflictingStores 767543 # Number of conflicting stores. +system.cpu2.iq.iqInstsAdded 32164019 # Number of instructions added to the IQ (excludes non-spec) +system.cpu2.iq.iqNonSpecInstsAdded 534132 # Number of non-speculative instructions added to the IQ +system.cpu2.iq.iqInstsIssued 35030885 # Number of instructions issued +system.cpu2.iq.iqSquashedInstsIssued 59969 # Number of squashed instructions issued +system.cpu2.iq.iqSquashedInstsExamined 6868407 # Number of squashed instructions iterated over during squash; mainly for profiling +system.cpu2.iq.iqSquashedOperandsExamined 17749072 # Number of squashed operands that are examined and possibly removed from graph +system.cpu2.iq.iqSquashedNonSpecRemoved 150741 # Number of squashed non-spec instructions that were removed +system.cpu2.iq.issued_per_cycle::samples 36830548 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::mean 0.951137 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::stdev 1.612264 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::underflows 0 0.00% 0.00% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::0 24216483 65.75% 65.75% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::1 3835065 10.41% 76.16% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::2 2287291 6.21% 82.37% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::3 1980355 5.38% 87.75% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::4 2800040 7.60% 95.35% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::5 1007857 2.74% 98.09% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::6 517219 1.40% 99.49% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::7 152490 0.41% 99.91% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::8 33748 0.09% 100.00% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::overflows 0 0.00% 100.00% # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::min_value 0 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::max_value 8 # Number of insts issued each cycle +system.cpu2.iq.issued_per_cycle::total 36830548 # Number of insts issued each cycle +system.cpu2.iq.fu_full::No_OpClass 0 0.00% 0.00% # attempts to use FU when none available +system.cpu2.iq.fu_full::IntAlu 17662 1.14% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::IntMult 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::IntDiv 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatAdd 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatCmp 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatCvt 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatMult 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatDiv 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::FloatSqrt 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdAdd 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdAddAcc 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdAlu 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdCmp 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdCvt 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdMisc 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdMult 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdMultAcc 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdShift 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdShiftAcc 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdSqrt 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatAdd 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatAlu 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatCmp 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatCvt 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatDiv 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatMisc 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatMult 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatMultAcc 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::SimdFloatSqrt 0 0.00% 1.14% # attempts to use FU when none available +system.cpu2.iq.fu_full::MemRead 1415792 91.50% 92.64% # attempts to use FU when none available +system.cpu2.iq.fu_full::MemWrite 113850 7.36% 100.00% # attempts to use FU when none available +system.cpu2.iq.fu_full::IprAccess 0 0.00% 100.00% # attempts to use FU when none available +system.cpu2.iq.fu_full::InstPrefetch 0 0.00% 100.00% # attempts to use FU when none available +system.cpu2.iq.FU_type_0::No_OpClass 60995 0.17% 0.17% # Type of FU issued +system.cpu2.iq.FU_type_0::IntAlu 19871242 56.72% 56.90% # Type of FU issued +system.cpu2.iq.FU_type_0::IntMult 29695 0.08% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::IntDiv 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatAdd 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatCmp 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatCvt 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatMult 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatDiv 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::FloatSqrt 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdAdd 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdAddAcc 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdAlu 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdCmp 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdCvt 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdMisc 5 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdMult 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdMultAcc 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdShift 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdShiftAcc 5 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdSqrt 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatAdd 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatAlu 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatCmp 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatCvt 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatDiv 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatMisc 372 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatMult 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatMultAcc 5 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::SimdFloatSqrt 0 0.00% 56.98% # Type of FU issued +system.cpu2.iq.FU_type_0::MemRead 11515486 32.87% 89.86% # Type of FU issued +system.cpu2.iq.FU_type_0::MemWrite 3553080 10.14% 100.00% # Type of FU issued +system.cpu2.iq.FU_type_0::IprAccess 0 0.00% 100.00% # Type of FU issued +system.cpu2.iq.FU_type_0::InstPrefetch 0 0.00% 100.00% # Type of FU issued +system.cpu2.iq.FU_type_0::total 35030885 # Type of FU issued +system.cpu2.iq.rate 0.397045 # Inst issue rate +system.cpu2.iq.fu_busy_cnt 1547304 # FU busy when requested +system.cpu2.iq.fu_busy_rate 0.044170 # FU busy rate (busy events/executed inst) +system.cpu2.iq.int_inst_queue_reads 108527324 # Number of integer instruction queue reads +system.cpu2.iq.int_inst_queue_writes 39572230 # Number of integer instruction queue writes +system.cpu2.iq.int_inst_queue_wakeup_accesses 28399462 # Number of integer instruction queue wakeup accesses +system.cpu2.iq.fp_inst_queue_reads 6790 # Number of floating instruction queue reads +system.cpu2.iq.fp_inst_queue_writes 3711 # Number of floating instruction queue writes +system.cpu2.iq.fp_inst_queue_wakeup_accesses 3127 # Number of floating instruction queue wakeup accesses +system.cpu2.iq.int_alu_accesses 36513628 # Number of integer alu accesses +system.cpu2.iq.fp_alu_accesses 3566 # Number of floating point alu accesses +system.cpu2.iew.lsq.thread0.forwLoads 191014 # Number of loads that had data forwarded from stores +system.cpu2.iew.lsq.thread0.invAddrLoads 0 # Number of loads ignored due to an invalid address +system.cpu2.iew.lsq.thread0.squashedLoads 1467031 # Number of loads squashed +system.cpu2.iew.lsq.thread0.ignoredResponses 2011 # Number of memory responses ignored because the instruction is squashed +system.cpu2.iew.lsq.thread0.memOrderViolation 9738 # Number of memory ordering violations +system.cpu2.iew.lsq.thread0.squashedStores 545094 # Number of stores squashed +system.cpu2.iew.lsq.thread0.invAddrSwpfs 0 # Number of software prefetches ignored due to an invalid address +system.cpu2.iew.lsq.thread0.blockedLoads 0 # Number of blocked loads due to partial load-store forwarding +system.cpu2.iew.lsq.thread0.rescheduledLoads 5365251 # Number of loads that were rescheduled +system.cpu2.iew.lsq.thread0.cacheBlocked 332989 # Number of times an access to memory failed due to the cache being blocked +system.cpu2.iew.iewIdleCycles 0 # Number of cycles IEW is idle +system.cpu2.iew.iewSquashCycles 1135792 # Number of cycles IEW is squashing +system.cpu2.iew.iewBlockCycles 4899150 # Number of cycles IEW is blocking +system.cpu2.iew.iewUnblockCycles 89921 # Number of cycles IEW is unblocking +system.cpu2.iew.iewDispatchedInsts 32779082 # Number of instructions dispatched to IQ +system.cpu2.iew.iewDispSquashedInsts 64376 # Number of squashed instructions skipped by dispatch +system.cpu2.iew.iewDispLoadInsts 6628278 # Number of dispatched load instructions +system.cpu2.iew.iewDispStoreInsts 3915406 # Number of dispatched store instructions +system.cpu2.iew.iewDispNonSpecInsts 386018 # Number of dispatched non-speculative instructions +system.cpu2.iew.iewIQFullEvents 31359 # Number of times the IQ has become full, causing a stall +system.cpu2.iew.iewLSQFullEvents 2570 # Number of times the LSQ has become full, causing a stall +system.cpu2.iew.memOrderViolationEvents 9738 # Number of memory order violations +system.cpu2.iew.predictedTakenIncorrect 111294 # Number of branches that were predicted taken incorrectly +system.cpu2.iew.predictedNotTakenIncorrect 92702 # Number of branches that were predicted not taken incorrectly +system.cpu2.iew.branchMispredicts 203996 # Number of branch mispredicts detected at execute +system.cpu2.iew.iewExecutedInsts 34250844 # Number of executed instructions +system.cpu2.iew.iewExecLoadInsts 11286425 # Number of load instructions executed +system.cpu2.iew.iewExecSquashedInsts 780041 # Number of squashed instructions skipped in execute +system.cpu2.iew.exec_swp 0 # number of swp insts executed +system.cpu2.iew.exec_nop 80931 # number of nop insts executed +system.cpu2.iew.exec_refs 14805022 # number of memory reference insts executed +system.cpu2.iew.exec_branches 3673391 # Number of branches executed +system.cpu2.iew.exec_stores 3518597 # Number of stores executed +system.cpu2.iew.exec_rate 0.388204 # Inst execution rate +system.cpu2.iew.wb_sent 33866957 # cumulative count of insts sent to commit +system.cpu2.iew.wb_count 28402589 # cumulative count of insts written-back +system.cpu2.iew.wb_producers 16335424 # num instructions producing a value +system.cpu2.iew.wb_consumers 29431571 # num instructions consuming a value +system.cpu2.iew.wb_penalized 0 # number of instrctions required to write to 'other' IQ +system.cpu2.iew.wb_rate 0.321919 # insts written-back per cycle +system.cpu2.iew.wb_fanout 0.555031 # average fanout of values written-back +system.cpu2.iew.wb_penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ +system.cpu2.commit.commitSquashedInsts 6831747 # The number of squashed insts skipped by commit +system.cpu2.commit.commitNonSpecStalls 383391 # The number of times commit has been forced to stall to communicate backwards +system.cpu2.commit.branchMispredicts 177223 # The number of times a branch was mispredicted +system.cpu2.commit.committed_per_cycle::samples 35694573 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::mean 0.719725 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::stdev 1.780912 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::underflows 0 0.00% 0.00% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::0 26969912 75.56% 75.56% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::1 4228252 11.85% 87.40% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::2 1198360 3.36% 90.76% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::3 616402 1.73% 92.49% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::4 527161 1.48% 93.96% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::5 311066 0.87% 94.84% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::6 434912 1.22% 96.05% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::7 325428 0.91% 96.97% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::8 1083080 3.03% 100.00% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::overflows 0 0.00% 100.00% # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::min_value 0 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::max_value 8 # Number of insts commited each cycle +system.cpu2.commit.committed_per_cycle::total 35694573 # Number of insts commited each cycle +system.cpu2.commit.committedInsts 20797962 # Number of instructions committed +system.cpu2.commit.committedOps 25690260 # Number of ops (including micro ops) committed +system.cpu2.commit.swp_count 0 # Number of s/w prefetches committed +system.cpu2.commit.refs 8531559 # Number of memory references committed +system.cpu2.commit.loads 5161247 # Number of loads committed +system.cpu2.commit.membars 98356 # Number of memory barriers committed +system.cpu2.commit.branches 3158165 # Number of branches committed +system.cpu2.commit.fp_insts 3087 # Number of committed floating point instructions. +system.cpu2.commit.int_insts 22900752 # Number of committed integer instructions. +system.cpu2.commit.function_calls 287889 # Number of function calls committed. +system.cpu2.commit.bw_lim_events 1083080 # number cycles where commit BW limit reached +system.cpu2.commit.bw_limited 0 # number of insts not committed due to BW limits +system.cpu2.rob.rob_reads 66589270 # The number of ROB reads +system.cpu2.rob.rob_writes 66235051 # The number of ROB writes +system.cpu2.timesIdled 359715 # Number of times that the entire CPU went into an idle state and unscheduled itself +system.cpu2.idleCycles 51398422 # Total number of cycles that the CPU has spent unscheduled due to idling +system.cpu2.quiesceCycles 3569788363 # Total number of cycles that CPU has spent quiesced or waiting for an interrupt +system.cpu2.committedInsts 20743850 # Number of Instructions Simulated +system.cpu2.committedOps 25636148 # Number of Ops (including micro ops) Simulated +system.cpu2.committedInsts_total 20743850 # Number of Instructions Simulated +system.cpu2.cpi 4.253259 # CPI: Cycles Per Instruction +system.cpu2.cpi_total 4.253259 # CPI: Total CPI of All Threads +system.cpu2.ipc 0.235114 # IPC: Instructions Per Cycle +system.cpu2.ipc_total 0.235114 # IPC: Total IPC of All Threads +system.cpu2.int_regfile_reads 159046643 # number of integer regfile reads +system.cpu2.int_regfile_writes 30194860 # number of integer regfile writes +system.cpu2.fp_regfile_reads 22317 # number of floating regfile reads +system.cpu2.fp_regfile_writes 20822 # number of floating regfile writes +system.cpu2.misc_regfile_reads 41979427 # number of misc regfile reads +system.cpu2.misc_regfile_writes 278833 # number of misc regfile writes +system.iocache.replacements 0 # number of replacements +system.iocache.tagsinuse 0 # Cycle average of tags in use +system.iocache.total_refs 0 # Total number of references to valid blocks. +system.iocache.sampled_refs 0 # Sample count of references to valid blocks. +system.iocache.avg_refs nan # Average number of references to valid blocks. +system.iocache.warmup_cycle 0 # Cycle when the warmup percentage was hit. +system.iocache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.iocache.blocked::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked::no_targets 0 # number of cycles access was blocked +system.iocache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.iocache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.iocache.fast_writes 0 # number of fast writes performed +system.iocache.cache_copies 0 # number of cache copies performed +system.iocache.ReadReq_mshr_uncacheable_latency::realview.clcd 925539770424 # number of ReadReq MSHR uncacheable cycles +system.iocache.ReadReq_mshr_uncacheable_latency::total 925539770424 # number of ReadReq MSHR uncacheable cycles +system.iocache.overall_mshr_uncacheable_latency::realview.clcd 925539770424 # number of overall MSHR uncacheable cycles +system.iocache.overall_mshr_uncacheable_latency::total 925539770424 # number of overall MSHR uncacheable cycles +system.iocache.ReadReq_avg_mshr_uncacheable_latency::realview.clcd inf # average ReadReq mshr uncacheable latency +system.iocache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.iocache.overall_avg_mshr_uncacheable_latency::realview.clcd inf # average overall mshr uncacheable latency +system.iocache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.iocache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu2.kern.inst.arm 0 # number of arm instructions executed +system.cpu2.kern.inst.quiesce 0 # number of quiesce instructions executed + +---------- End Simulation Statistics ---------- diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/system.terminal b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-full/system.terminal new file mode 100644 index 0000000000000000000000000000000000000000..fa29081ad257cb90e9ff912317070668f48edb12 GIT binary patch literal 5878 zcmbVQX>%IO70uVU%Kzb3<%3Zk%WMq8RFryXu}y4jop~>0L5( zS9e^~q3f%uTKx9S+xvZqF2}bn4Q@uu9*wia7kQp!bZ>UGxeu8iC=*Mmgw?2_mYp@p z&(3wt@0xyZegg1rIG$3R#9k=9T*eCuyuu^j^B+Z%4!)FeUSy?TuuasOL(~zr%2+5- zTQ|ZB@1%I9@x||lONWa%$@t7N&V-*VVwsD83U5K$OXUYmJKQx(lEP2oJP8He3oi>- zc!K^S_GY074mXTMl)x8h5=wvN()Hyf1u|EQn{>5Rm!30t$_vB9Kg9SN!$^T3jf$l3 z!qi)c+$GcK+0Nl&qN~w>z9(!2qid5|O(iQghtDDrMPB;jZQ6QMCUTK2k7-pu#5B6P zQSE5b=i&RWH1i7o(d```GQPf1fpi_sL=ZrtUbU~|rzQRBYu&C5(^GC6J%chw?;8~8 zmZ3RRp3pYM&XzKpdwLtG1?SG+Ev;`KN>#_Whc7icTys&%upnL8HI#XglZ@#Ep74zd zxbvb|4Mqcv!t{@Gz2A2n%h3=S8Fs;^Ic3ijCW}xkMR@M8r_Xi68C_6@pgr#dV%f<9 zPd^l3JiMYuFMmYzBZv{pMJ74I*sl$xpGz&hiPB&>G+PxSKRX1u;%%!cF^{6@w&_?~ zJgZ4|w`ebl3^`{Ux$EWPeVjWP=+E`Qp}Vw zHxNo7JScPO_Gt*Bwv1&_DS};mw(GWz_$5V~ocHYXqo@v?=ecCk}^&D4F(vKYeD z4E=`?sztI#co(~2Ern^?Gi$9#zkeL!qZFB!p+))#$D7Mrl2ICp2$}0~S8X2#<6p6= zHS@T81foDxa`R2*l%uSn-x10=N@2e3X-6Qw+kXqwPI$eWaO0 zY4r*+tkK8sO-`^REY+cw9_LN8NiKA#aL6FN=k&XFlpmsARt3{Vzdze>t(|AA5&e2csn7wB`Z42yLKrwDNsl@T7b{o1VS_5)~I85ch&gReV^ zp*zrp+1ga(N*Tp0XjabWB7;F5MJ8gVBFWR9;S9%opbIpw#bZHbieAUQeYK?bz}yko zs;waobeLsL2jMq_$I>eh7LC`|Iol5m(=;B~A4QbT(P%icB<%nF71!w7u)vq=sY^Fv zfvyYD13s`w;8>b_kqi+AdoA72H0UuA8Sp>@M;8Mce+K`h+riD0f=nWG>Pi_P9ZD3p z^s+*8Y13p8grm{$D-wGN~WLak%^4=O4)YsfY)Y%1FlDNj(Qp6_JIpl^5 zzJ0SL+{XX6f5+I(UJop0CKJSeCg2as(Y5Fw_@t%%ld}uqzdg<}`Ve<=IT=!3&hizk z9PK+~w-o*Q0sI8~&f88MCZ-moiU&FeAMe)oErxxTpn{xIMM5geb2Xh%AtRB&Y}@rt z*Z2uvgFV%D^r7Z(40=;S$J0zf*Nh$S(3-?7a7z?+a6JQX)5|d-Z_wmrj>>eDd8qv- znMVzfGl~Ic6146Z!TMPw$EuKA`naWOIfvL>E=tacMqTDgKR%QHLM7UX~!QUB$8tY13H(|f0qh4HozP#e1v>q@Yy)1b4 zGVsFR?>-E;8K!6;yTeRVH+k2lE#-S@QT3>K=0##trq`_sR(i3}H8&14`<98Unq`5D zfrB~CI`ei*;BsEVz3cQE%v9C`6wjpwLX#q$zd_&v^C9T#<}gd|TBy?aQg>-Qm<|Zt zi^jvRJaZ6QdJ|J6r#3#~`4)4_f}#i(^`n5x=7yg6MYwrHDXkyi*sw|-LUR|G1tt$} zKM;s*foh-EDhkHHJ}N|%@F**m5NXmes>e-d=Lrh*gvVU46Es#|)J{WZ#AzJ-emRqV z&C&adV7)&LIn1_OGZ`3DAL#D=81*wvlMEC=Yny0l8*T-0ES(hZVg`kT1#gFr1v)YA=({?sJQo$$#mhQ`EV0z;cU|u4gSg`njei4`rNNiU5aVVY+~g*jBaSxE_n2KDXrl>ePm3o}1o}d; z*%?zvP>BZ5l%tDI7cGAzc`Vr(#pJSdi1}~6df{s=_6~RUWR44~`Zi9M15rkNB{LCm zj*AwwK-1&*T6{ATagOe+4pa>bY;b!UgkBv~ZOq-=Cp9TZL>|8@wy||J{)#IHdVf2p zi`cWE8D#Wu3!+B+o%B79&bsu2qTma*pmNnf5w$|0* zt-JRV?iIF74tN|b`=>1aPYUW;PIIQ2t%2DEq& zA-P(riL$y6z}19ld;*VDpMim7*yz$lnXfJq+y(1xz1udafxBF-rFC0ck2KvidM^IB zm`r)zP@5PQlLn#XG?~lNyLT?V>xjbdWPUr~H)M(zzI*!y9V^Ciutbj|EJgetSize() +system.physmem.bytesConsumedWr 6799204 # bytesWritten derated as per pkt->getSize() +system.physmem.servicedByWrQ 10 # Number of read reqs serviced by write Q +system.physmem.neitherReadNorWrite 4690 # Reqs where no action is needed +system.physmem.perBankRdReqs::0 955907 # Track reads on a per bank basis +system.physmem.perBankRdReqs::1 956222 # Track reads on a per bank basis +system.physmem.perBankRdReqs::2 955717 # Track reads on a per bank basis +system.physmem.perBankRdReqs::3 955757 # Track reads on a per bank basis +system.physmem.perBankRdReqs::4 955661 # Track reads on a per bank basis +system.physmem.perBankRdReqs::5 955544 # Track reads on a per bank basis +system.physmem.perBankRdReqs::6 955404 # Track reads on a per bank basis +system.physmem.perBankRdReqs::7 955585 # Track reads on a per bank basis +system.physmem.perBankRdReqs::8 956056 # Track reads on a per bank basis +system.physmem.perBankRdReqs::9 955920 # Track reads on a per bank basis +system.physmem.perBankRdReqs::10 955992 # Track reads on a per bank basis +system.physmem.perBankRdReqs::11 955944 # Track reads on a per bank basis +system.physmem.perBankRdReqs::12 956032 # Track reads on a per bank basis +system.physmem.perBankRdReqs::13 955927 # Track reads on a per bank basis +system.physmem.perBankRdReqs::14 956056 # Track reads on a per bank basis +system.physmem.perBankRdReqs::15 955714 # Track reads on a per bank basis +system.physmem.perBankWrReqs::0 50106 # Track writes on a per bank basis +system.physmem.perBankWrReqs::1 50364 # Track writes on a per bank basis +system.physmem.perBankWrReqs::2 49972 # Track writes on a per bank basis +system.physmem.perBankWrReqs::3 50036 # Track writes on a per bank basis +system.physmem.perBankWrReqs::4 50909 # Track writes on a per bank basis +system.physmem.perBankWrReqs::5 50827 # Track writes on a per bank basis +system.physmem.perBankWrReqs::6 50676 # Track writes on a per bank basis +system.physmem.perBankWrReqs::7 50834 # Track writes on a per bank basis +system.physmem.perBankWrReqs::8 51139 # Track writes on a per bank basis +system.physmem.perBankWrReqs::9 51219 # Track writes on a per bank basis +system.physmem.perBankWrReqs::10 51120 # Track writes on a per bank basis +system.physmem.perBankWrReqs::11 51083 # Track writes on a per bank basis +system.physmem.perBankWrReqs::12 51352 # Track writes on a per bank basis +system.physmem.perBankWrReqs::13 51170 # Track writes on a per bank basis +system.physmem.perBankWrReqs::14 51298 # Track writes on a per bank basis +system.physmem.perBankWrReqs::15 51031 # Track writes on a per bank basis +system.physmem.numRdRetry 0 # Number of times rd buffer was full causing retry +system.physmem.numWrRetry 677160 # Number of times wr buffer was full causing retry +system.physmem.totGap 2540585876000 # Total gap between requests +system.physmem.readPktSize::0 0 # Categorize read packet sizes +system.physmem.readPktSize::1 0 # Categorize read packet sizes +system.physmem.readPktSize::2 42 # Categorize read packet sizes +system.physmem.readPktSize::3 15138816 # Categorize read packet sizes +system.physmem.readPktSize::4 0 # Categorize read packet sizes +system.physmem.readPktSize::5 0 # Categorize read packet sizes +system.physmem.readPktSize::6 154590 # Categorize read packet sizes +system.physmem.readPktSize::7 0 # Categorize read packet sizes +system.physmem.readPktSize::8 0 # Categorize read packet sizes +system.physmem.writePktSize::0 0 # categorize write packet sizes +system.physmem.writePktSize::1 0 # categorize write packet sizes +system.physmem.writePktSize::2 1431185 # categorize write packet sizes +system.physmem.writePktSize::3 0 # categorize write packet sizes +system.physmem.writePktSize::4 0 # categorize write packet sizes +system.physmem.writePktSize::5 0 # categorize write packet sizes +system.physmem.writePktSize::6 59111 # categorize write packet sizes +system.physmem.writePktSize::7 0 # categorize write packet sizes +system.physmem.writePktSize::8 0 # categorize write packet sizes +system.physmem.neitherpktsize::0 0 # categorize neither packet sizes +system.physmem.neitherpktsize::1 0 # categorize neither packet sizes +system.physmem.neitherpktsize::2 0 # categorize neither packet sizes +system.physmem.neitherpktsize::3 0 # categorize neither packet sizes +system.physmem.neitherpktsize::4 0 # categorize neither packet sizes +system.physmem.neitherpktsize::5 0 # categorize neither packet sizes +system.physmem.neitherpktsize::6 4690 # categorize neither packet sizes +system.physmem.neitherpktsize::7 0 # categorize neither packet sizes +system.physmem.neitherpktsize::8 0 # categorize neither packet sizes +system.physmem.rdQLenPdf::0 1056941 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::1 992282 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::2 949580 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::3 983982 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::4 2774748 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::5 2777750 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::6 5475537 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::7 36612 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::8 30094 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::9 29956 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::10 29864 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::11 57737 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::12 31653 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::13 59391 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::14 5382 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::15 1868 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::16 40 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::17 15 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::18 3 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::19 2 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::20 1 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::21 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::22 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::23 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::24 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::25 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::26 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::27 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::28 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::29 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::30 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::31 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::32 0 # What read queue length does an incoming req see +system.physmem.wrQLenPdf::0 3640 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::1 3716 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::2 3825 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::3 4020 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::4 4294 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::5 4489 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::6 4657 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::7 4830 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::8 5057 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::9 35378 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::10 35366 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::11 35349 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::12 35330 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::13 35318 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::14 35309 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::15 35299 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::16 35283 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::17 35274 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::18 35255 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::19 35245 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::20 35237 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::21 35231 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::22 35222 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::23 31866 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::24 31776 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::25 31654 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::26 31445 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::27 31156 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::28 30947 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::29 30761 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::30 30573 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::31 30334 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::32 0 # What write queue length does an incoming req see +system.physmem.totQLat 295225090687 # Total cycles spent in queuing delays +system.physmem.totMemAccLat 372543516687 # Sum of mem lat for all requests +system.physmem.totBusLat 61173752000 # Total cycles spent in databus access +system.physmem.totBankLat 16144674000 # Total cycles spent in bank access +system.physmem.avgQLat 19304.04 # Average queueing delay per request +system.physmem.avgBankLat 1055.66 # Average bank access latency per request +system.physmem.avgBusLat 4000.00 # Average bus latency per request +system.physmem.avgMemAccLat 24359.70 # Average memory access latency +system.physmem.avgRdBW 385.26 # Average achieved read bandwidth in MB/s +system.physmem.avgWrBW 20.48 # Average achieved write bandwidth in MB/s +system.physmem.avgConsumedRdBW 51.56 # Average consumed read bandwidth in MB/s +system.physmem.avgConsumedWrBW 2.68 # Average consumed write bandwidth in MB/s +system.physmem.peakBW 16000.00 # Theoretical peak bandwidth in MB/s +system.physmem.busUtil 2.54 # Data bus utilization in percentage +system.physmem.avgRdQLen 0.15 # Average read queue length over time +system.physmem.avgWrQLen 1.12 # Average write queue length over time +system.physmem.readRowHits 15250784 # Number of row buffer hits during reads +system.physmem.writeRowHits 786076 # Number of row buffer hits during writes +system.physmem.readRowHitRate 99.72 # Row buffer hit rate for reads +system.physmem.writeRowHitRate 96.67 # Row buffer hit rate for writes +system.physmem.avgGap 157735.86 # Average gap between requests +system.realview.nvmem.bytes_read::cpu0.inst 64 # Number of bytes read from this memory +system.realview.nvmem.bytes_read::total 64 # Number of bytes read from this memory +system.realview.nvmem.bytes_inst_read::cpu0.inst 64 # Number of instructions bytes read from this memory +system.realview.nvmem.bytes_inst_read::total 64 # Number of instructions bytes read from this memory +system.realview.nvmem.num_reads::cpu0.inst 1 # Number of read requests responded to by this memory +system.realview.nvmem.num_reads::total 1 # Number of read requests responded to by this memory +system.realview.nvmem.bw_read::cpu0.inst 25 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_read::total 25 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::cpu0.inst 25 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::total 25 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_total::cpu0.inst 25 # Total bandwidth to/from this memory (bytes/s) +system.realview.nvmem.bw_total::total 25 # Total bandwidth to/from this memory (bytes/s) +system.l2c.replacements 64360 # number of replacements +system.l2c.tagsinuse 51403.610979 # Cycle average of tags in use +system.l2c.total_refs 1940230 # Total number of references to valid blocks. +system.l2c.sampled_refs 129752 # Sample count of references to valid blocks. +system.l2c.avg_refs 14.953373 # Average number of references to valid blocks. +system.l2c.warmup_cycle 2504468947000 # Cycle when the warmup percentage was hit. +system.l2c.occ_blocks::writebacks 36917.340991 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.dtb.walker 20.674010 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.itb.walker 0.000348 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.inst 5181.760660 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.data 3292.636698 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.dtb.walker 8.768373 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.inst 3037.851423 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.data 2944.578476 # Average occupied blocks per requestor +system.l2c.occ_percent::writebacks 0.563314 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.dtb.walker 0.000315 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.itb.walker 0.000000 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.inst 0.079067 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.data 0.050242 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.dtb.walker 0.000134 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.inst 0.046354 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.data 0.044931 # Average percentage of cache occupancy +system.l2c.occ_percent::total 0.784357 # Average percentage of cache occupancy +system.l2c.ReadReq_hits::cpu0.dtb.walker 52210 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.itb.walker 7522 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.inst 501648 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.data 201746 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.dtb.walker 46118 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.itb.walker 6836 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.inst 471830 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.data 185683 # number of ReadReq hits +system.l2c.ReadReq_hits::total 1473593 # number of ReadReq hits +system.l2c.Writeback_hits::writebacks 608099 # number of Writeback hits +system.l2c.Writeback_hits::total 608099 # number of Writeback hits +system.l2c.UpgradeReq_hits::cpu0.data 20 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu1.data 20 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::total 40 # number of UpgradeReq hits +system.l2c.SCUpgradeReq_hits::cpu0.data 6 # number of SCUpgradeReq hits +system.l2c.SCUpgradeReq_hits::cpu1.data 6 # number of SCUpgradeReq hits +system.l2c.SCUpgradeReq_hits::total 12 # number of SCUpgradeReq hits +system.l2c.ReadExReq_hits::cpu0.data 57007 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu1.data 55991 # number of ReadExReq hits +system.l2c.ReadExReq_hits::total 112998 # number of ReadExReq hits +system.l2c.demand_hits::cpu0.dtb.walker 52210 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.itb.walker 7522 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.inst 501648 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.data 258753 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.dtb.walker 46118 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.itb.walker 6836 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.inst 471830 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.data 241674 # number of demand (read+write) hits +system.l2c.demand_hits::total 1586591 # number of demand (read+write) hits +system.l2c.overall_hits::cpu0.dtb.walker 52210 # number of overall hits +system.l2c.overall_hits::cpu0.itb.walker 7522 # number of overall hits +system.l2c.overall_hits::cpu0.inst 501648 # number of overall hits +system.l2c.overall_hits::cpu0.data 258753 # number of overall hits +system.l2c.overall_hits::cpu1.dtb.walker 46118 # number of overall hits +system.l2c.overall_hits::cpu1.itb.walker 6836 # number of overall hits +system.l2c.overall_hits::cpu1.inst 471830 # number of overall hits +system.l2c.overall_hits::cpu1.data 241674 # number of overall hits +system.l2c.overall_hits::total 1586591 # number of overall hits +system.l2c.ReadReq_misses::cpu0.dtb.walker 32 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.itb.walker 2 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.inst 8033 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.data 6226 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.dtb.walker 9 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.inst 4376 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.data 4487 # number of ReadReq misses +system.l2c.ReadReq_misses::total 23165 # number of ReadReq misses +system.l2c.UpgradeReq_misses::cpu0.data 1562 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::cpu1.data 1342 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::total 2904 # number of UpgradeReq misses +system.l2c.SCUpgradeReq_misses::cpu1.data 1 # number of SCUpgradeReq misses +system.l2c.SCUpgradeReq_misses::total 1 # number of SCUpgradeReq misses +system.l2c.ReadExReq_misses::cpu0.data 68853 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu1.data 64314 # number of ReadExReq misses +system.l2c.ReadExReq_misses::total 133167 # number of ReadExReq misses +system.l2c.demand_misses::cpu0.dtb.walker 32 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.itb.walker 2 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.inst 8033 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.data 75079 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.dtb.walker 9 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.inst 4376 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.data 68801 # number of demand (read+write) misses +system.l2c.demand_misses::total 156332 # number of demand (read+write) misses +system.l2c.overall_misses::cpu0.dtb.walker 32 # number of overall misses +system.l2c.overall_misses::cpu0.itb.walker 2 # number of overall misses +system.l2c.overall_misses::cpu0.inst 8033 # number of overall misses +system.l2c.overall_misses::cpu0.data 75079 # number of overall misses +system.l2c.overall_misses::cpu1.dtb.walker 9 # number of overall misses +system.l2c.overall_misses::cpu1.inst 4376 # number of overall misses +system.l2c.overall_misses::cpu1.data 68801 # number of overall misses +system.l2c.overall_misses::total 156332 # number of overall misses +system.l2c.ReadReq_miss_latency::cpu0.dtb.walker 2269000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu0.itb.walker 118000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu0.inst 420354500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu0.data 331291999 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.dtb.walker 618500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.inst 233702500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.data 250819000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::total 1239173499 # number of ReadReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu0.data 181000 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu1.data 252500 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::total 433500 # number of UpgradeReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu0.data 3783281998 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu1.data 2967459500 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::total 6750741498 # number of ReadExReq miss cycles +system.l2c.demand_miss_latency::cpu0.dtb.walker 2269000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu0.itb.walker 118000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu0.inst 420354500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu0.data 4114573997 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.dtb.walker 618500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.inst 233702500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.data 3218278500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::total 7989914997 # number of demand (read+write) miss cycles +system.l2c.overall_miss_latency::cpu0.dtb.walker 2269000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu0.itb.walker 118000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu0.inst 420354500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu0.data 4114573997 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.dtb.walker 618500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.inst 233702500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.data 3218278500 # number of overall miss cycles +system.l2c.overall_miss_latency::total 7989914997 # number of overall miss cycles +system.l2c.ReadReq_accesses::cpu0.dtb.walker 52242 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.itb.walker 7524 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.inst 509681 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.data 207972 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.dtb.walker 46127 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.itb.walker 6836 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.inst 476206 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.data 190170 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::total 1496758 # number of ReadReq accesses(hits+misses) +system.l2c.Writeback_accesses::writebacks 608099 # number of Writeback accesses(hits+misses) +system.l2c.Writeback_accesses::total 608099 # number of Writeback accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu0.data 1582 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu1.data 1362 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::total 2944 # number of UpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::cpu0.data 6 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::cpu1.data 7 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.SCUpgradeReq_accesses::total 13 # number of SCUpgradeReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu0.data 125860 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu1.data 120305 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::total 246165 # number of ReadExReq accesses(hits+misses) +system.l2c.demand_accesses::cpu0.dtb.walker 52242 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.itb.walker 7524 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.inst 509681 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.data 333832 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.dtb.walker 46127 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.itb.walker 6836 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.inst 476206 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.data 310475 # number of demand (read+write) accesses +system.l2c.demand_accesses::total 1742923 # number of demand (read+write) accesses +system.l2c.overall_accesses::cpu0.dtb.walker 52242 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.itb.walker 7524 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.inst 509681 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.data 333832 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.dtb.walker 46127 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.itb.walker 6836 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.inst 476206 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.data 310475 # number of overall (read+write) accesses +system.l2c.overall_accesses::total 1742923 # number of overall (read+write) accesses +system.l2c.ReadReq_miss_rate::cpu0.dtb.walker 0.000613 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.itb.walker 0.000266 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.inst 0.015761 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.data 0.029937 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.dtb.walker 0.000195 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.inst 0.009189 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.data 0.023595 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::total 0.015477 # miss rate for ReadReq accesses +system.l2c.UpgradeReq_miss_rate::cpu0.data 0.987358 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::cpu1.data 0.985316 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::total 0.986413 # miss rate for UpgradeReq accesses +system.l2c.SCUpgradeReq_miss_rate::cpu1.data 0.142857 # miss rate for SCUpgradeReq accesses +system.l2c.SCUpgradeReq_miss_rate::total 0.076923 # miss rate for SCUpgradeReq accesses +system.l2c.ReadExReq_miss_rate::cpu0.data 0.547060 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu1.data 0.534591 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::total 0.540966 # miss rate for ReadExReq accesses +system.l2c.demand_miss_rate::cpu0.dtb.walker 0.000613 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.itb.walker 0.000266 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.inst 0.015761 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.data 0.224901 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.dtb.walker 0.000195 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.inst 0.009189 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.data 0.221599 # miss rate for demand accesses +system.l2c.demand_miss_rate::total 0.089695 # miss rate for demand accesses +system.l2c.overall_miss_rate::cpu0.dtb.walker 0.000613 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.itb.walker 0.000266 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.inst 0.015761 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.data 0.224901 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.dtb.walker 0.000195 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.inst 0.009189 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.data 0.221599 # miss rate for overall accesses +system.l2c.overall_miss_rate::total 0.089695 # miss rate for overall accesses +system.l2c.ReadReq_avg_miss_latency::cpu0.dtb.walker 70906.250000 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu0.itb.walker 59000 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu0.inst 52328.457612 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu0.data 53211.050273 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.dtb.walker 68722.222222 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.inst 53405.507313 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.data 55899.041676 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::total 53493.351997 # average ReadReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu0.data 115.877081 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu1.data 188.152012 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::total 149.276860 # average UpgradeReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu0.data 54947.235386 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu1.data 46140.179432 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::total 50693.801753 # average ReadExReq miss latency +system.l2c.demand_avg_miss_latency::cpu0.dtb.walker 70906.250000 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu0.itb.walker 59000 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu0.inst 52328.457612 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu0.data 54803.260526 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.dtb.walker 68722.222222 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.inst 53405.507313 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.data 46776.623886 # average overall miss latency +system.l2c.demand_avg_miss_latency::total 51108.634170 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.dtb.walker 70906.250000 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.itb.walker 59000 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.inst 52328.457612 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.data 54803.260526 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.dtb.walker 68722.222222 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.inst 53405.507313 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.data 46776.623886 # average overall miss latency +system.l2c.overall_avg_miss_latency::total 51108.634170 # average overall miss latency +system.l2c.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.l2c.blocked::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked::no_targets 0 # number of cycles access was blocked +system.l2c.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.l2c.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.l2c.fast_writes 0 # number of fast writes performed +system.l2c.cache_copies 0 # number of cache copies performed +system.l2c.writebacks::writebacks 59111 # number of writebacks +system.l2c.writebacks::total 59111 # number of writebacks +system.l2c.ReadReq_mshr_hits::cpu0.inst 8 # number of ReadReq MSHR hits +system.l2c.ReadReq_mshr_hits::cpu0.data 39 # number of ReadReq MSHR hits +system.l2c.ReadReq_mshr_hits::cpu1.inst 4 # number of ReadReq MSHR hits +system.l2c.ReadReq_mshr_hits::cpu1.data 24 # number of ReadReq MSHR hits +system.l2c.ReadReq_mshr_hits::total 75 # number of ReadReq MSHR hits +system.l2c.demand_mshr_hits::cpu0.inst 8 # number of demand (read+write) MSHR hits +system.l2c.demand_mshr_hits::cpu0.data 39 # number of demand (read+write) MSHR hits +system.l2c.demand_mshr_hits::cpu1.inst 4 # number of demand (read+write) MSHR hits +system.l2c.demand_mshr_hits::cpu1.data 24 # number of demand (read+write) MSHR hits +system.l2c.demand_mshr_hits::total 75 # number of demand (read+write) MSHR hits +system.l2c.overall_mshr_hits::cpu0.inst 8 # number of overall MSHR hits +system.l2c.overall_mshr_hits::cpu0.data 39 # number of overall MSHR hits +system.l2c.overall_mshr_hits::cpu1.inst 4 # number of overall MSHR hits +system.l2c.overall_mshr_hits::cpu1.data 24 # number of overall MSHR hits +system.l2c.overall_mshr_hits::total 75 # number of overall MSHR hits +system.l2c.ReadReq_mshr_misses::cpu0.dtb.walker 32 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu0.itb.walker 2 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu0.inst 8025 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu0.data 6187 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.dtb.walker 9 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.inst 4372 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.data 4463 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::total 23090 # number of ReadReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu0.data 1562 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu1.data 1342 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::total 2904 # number of UpgradeReq MSHR misses +system.l2c.SCUpgradeReq_mshr_misses::cpu1.data 1 # number of SCUpgradeReq MSHR misses +system.l2c.SCUpgradeReq_mshr_misses::total 1 # number of SCUpgradeReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu0.data 68853 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu1.data 64314 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::total 133167 # number of ReadExReq MSHR misses +system.l2c.demand_mshr_misses::cpu0.dtb.walker 32 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu0.itb.walker 2 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu0.inst 8025 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu0.data 75040 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.dtb.walker 9 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.inst 4372 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.data 68777 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::total 156257 # number of demand (read+write) MSHR misses +system.l2c.overall_mshr_misses::cpu0.dtb.walker 32 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu0.itb.walker 2 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu0.inst 8025 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu0.data 75040 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.dtb.walker 9 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.inst 4372 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.data 68777 # number of overall MSHR misses +system.l2c.overall_mshr_misses::total 156257 # number of overall MSHR misses +system.l2c.ReadReq_mshr_miss_latency::cpu0.dtb.walker 1865559 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu0.itb.walker 93002 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu0.inst 318411185 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu0.data 250751004 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.dtb.walker 504018 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.inst 178311078 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.data 193087266 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::total 943023112 # number of ReadReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu0.data 15680528 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu1.data 13422342 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::total 29102870 # number of UpgradeReq MSHR miss cycles +system.l2c.SCUpgradeReq_mshr_miss_latency::cpu1.data 10001 # number of SCUpgradeReq MSHR miss cycles +system.l2c.SCUpgradeReq_mshr_miss_latency::total 10001 # number of SCUpgradeReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu0.data 2929616476 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu1.data 2170341063 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::total 5099957539 # number of ReadExReq MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.dtb.walker 1865559 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.itb.walker 93002 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.inst 318411185 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.data 3180367480 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.dtb.walker 504018 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.inst 178311078 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.data 2363428329 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::total 6042980651 # number of demand (read+write) MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.dtb.walker 1865559 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.itb.walker 93002 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.inst 318411185 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.data 3180367480 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.dtb.walker 504018 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.inst 178311078 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.data 2363428329 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::total 6042980651 # number of overall MSHR miss cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu0.inst 4312653 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu0.data 83955529530 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu1.data 83016717004 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::total 166976559187 # number of ReadReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu0.data 8488186790 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu1.data 5709859144 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::total 14198045934 # number of WriteReq MSHR uncacheable cycles +system.l2c.LoadLockedReq_mshr_uncacheable_latency::cpu1.data 76004 # number of LoadLockedReq MSHR uncacheable cycles +system.l2c.LoadLockedReq_mshr_uncacheable_latency::total 76004 # number of LoadLockedReq MSHR uncacheable cycles +system.l2c.StoreCondReq_mshr_uncacheable_latency::cpu1.data 30003 # number of StoreCondReq MSHR uncacheable cycles +system.l2c.StoreCondReq_mshr_uncacheable_latency::total 30003 # number of StoreCondReq MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu0.inst 4312653 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu0.data 92443716320 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu1.data 88726576148 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::total 181174605121 # number of overall MSHR uncacheable cycles +system.l2c.ReadReq_mshr_miss_rate::cpu0.dtb.walker 0.000613 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu0.itb.walker 0.000266 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu0.inst 0.015745 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu0.data 0.029749 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.dtb.walker 0.000195 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.inst 0.009181 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.data 0.023468 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::total 0.015427 # mshr miss rate for ReadReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu0.data 0.987358 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu1.data 0.985316 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::total 0.986413 # mshr miss rate for UpgradeReq accesses +system.l2c.SCUpgradeReq_mshr_miss_rate::cpu1.data 0.142857 # mshr miss rate for SCUpgradeReq accesses +system.l2c.SCUpgradeReq_mshr_miss_rate::total 0.076923 # mshr miss rate for SCUpgradeReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu0.data 0.547060 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu1.data 0.534591 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::total 0.540966 # mshr miss rate for ReadExReq accesses +system.l2c.demand_mshr_miss_rate::cpu0.dtb.walker 0.000613 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu0.itb.walker 0.000266 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu0.inst 0.015745 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu0.data 0.224784 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.dtb.walker 0.000195 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.inst 0.009181 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.data 0.221522 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::total 0.089652 # mshr miss rate for demand accesses +system.l2c.overall_mshr_miss_rate::cpu0.dtb.walker 0.000613 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu0.itb.walker 0.000266 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu0.inst 0.015745 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu0.data 0.224784 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.dtb.walker 0.000195 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.inst 0.009181 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.data 0.221522 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::total 0.089652 # mshr miss rate for overall accesses +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.dtb.walker 58298.718750 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.itb.walker 46501 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.inst 39677.406231 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.data 40528.689834 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.dtb.walker 56002 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.inst 40784.784538 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.data 43264.007618 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::total 40841.191511 # average ReadReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu0.data 10038.750320 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu1.data 10001.745156 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::total 10021.649449 # average UpgradeReq mshr miss latency +system.l2c.SCUpgradeReq_avg_mshr_miss_latency::cpu1.data 10001 # average SCUpgradeReq mshr miss latency +system.l2c.SCUpgradeReq_avg_mshr_miss_latency::total 10001 # average SCUpgradeReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu0.data 42548.857363 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu1.data 33746.012734 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::total 38297.457621 # average ReadExReq mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.dtb.walker 58298.718750 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.itb.walker 46501 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.inst 39677.406231 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.data 42382.295842 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.dtb.walker 56002 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.inst 40784.784538 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.data 34363.643791 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::total 38673.343601 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.dtb.walker 58298.718750 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.itb.walker 46501 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.inst 39677.406231 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.data 42382.295842 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.dtb.walker 56002 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.inst 40784.784538 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.data 34363.643791 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::total 38673.343601 # average overall mshr miss latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu0.inst inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu0.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu0.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.l2c.LoadLockedReq_avg_mshr_uncacheable_latency::cpu1.data inf # average LoadLockedReq mshr uncacheable latency +system.l2c.LoadLockedReq_avg_mshr_uncacheable_latency::total inf # average LoadLockedReq mshr uncacheable latency +system.l2c.StoreCondReq_avg_mshr_uncacheable_latency::cpu1.data inf # average StoreCondReq mshr uncacheable latency +system.l2c.StoreCondReq_avg_mshr_uncacheable_latency::total inf # average StoreCondReq mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu0.inst inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu0.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.l2c.no_allocate_misses 0 # Number of misses that were no-allocate +system.cf0.dma_read_full_pages 0 # Number of full page size DMA reads (not PRD). +system.cf0.dma_read_bytes 0 # Number of bytes transfered via DMA reads (not PRD). +system.cf0.dma_read_txs 0 # Number of DMA read transactions (not PRD). +system.cf0.dma_write_full_pages 0 # Number of full page size DMA writes. +system.cf0.dma_write_bytes 0 # Number of bytes transfered via DMA writes. +system.cf0.dma_write_txs 0 # Number of DMA write transactions. +system.cpu0.dtb.inst_hits 0 # ITB inst hits +system.cpu0.dtb.inst_misses 0 # ITB inst misses +system.cpu0.dtb.read_hits 26104138 # DTB read hits +system.cpu0.dtb.read_misses 45655 # DTB read misses +system.cpu0.dtb.write_hits 6173225 # DTB write hits +system.cpu0.dtb.write_misses 11582 # DTB write misses +system.cpu0.dtb.flush_tlb 257 # Number of times complete TLB was flushed +system.cpu0.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.dtb.flush_tlb_mva_asid 737 # Number of times TLB was flushed by MVA & ASID +system.cpu0.dtb.flush_tlb_asid 32 # Number of times TLB was flushed by ASID +system.cpu0.dtb.flush_entries 8687 # Number of entries that have been flushed from TLB +system.cpu0.dtb.align_faults 1569 # Number of TLB faults due to alignment restrictions +system.cpu0.dtb.prefetch_faults 298 # Number of TLB faults due to prefetch +system.cpu0.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.dtb.perms_faults 666 # Number of TLB faults due to permissions restrictions +system.cpu0.dtb.read_accesses 26149793 # DTB read accesses +system.cpu0.dtb.write_accesses 6184807 # DTB write accesses +system.cpu0.dtb.inst_accesses 0 # ITB inst accesses +system.cpu0.dtb.hits 32277363 # DTB hits +system.cpu0.dtb.misses 57237 # DTB misses +system.cpu0.dtb.accesses 32334600 # DTB accesses +system.cpu0.itb.inst_hits 6054056 # ITB inst hits +system.cpu0.itb.inst_misses 7505 # ITB inst misses +system.cpu0.itb.read_hits 0 # DTB read hits +system.cpu0.itb.read_misses 0 # DTB read misses +system.cpu0.itb.write_hits 0 # DTB write hits +system.cpu0.itb.write_misses 0 # DTB write misses +system.cpu0.itb.flush_tlb 257 # Number of times complete TLB was flushed +system.cpu0.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.itb.flush_tlb_mva_asid 737 # Number of times TLB was flushed by MVA & ASID +system.cpu0.itb.flush_tlb_asid 32 # Number of times TLB was flushed by ASID +system.cpu0.itb.flush_entries 2789 # Number of entries that have been flushed from TLB +system.cpu0.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu0.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.itb.perms_faults 1640 # Number of TLB faults due to permissions restrictions +system.cpu0.itb.read_accesses 0 # DTB read accesses +system.cpu0.itb.write_accesses 0 # DTB write accesses +system.cpu0.itb.inst_accesses 6061561 # ITB inst accesses +system.cpu0.itb.hits 6054056 # DTB hits +system.cpu0.itb.misses 7505 # DTB misses +system.cpu0.itb.accesses 6061561 # DTB accesses +system.cpu0.numCycles 240389950 # number of cpu cycles simulated +system.cpu0.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu0.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu0.BPredUnit.lookups 7650447 # Number of BP lookups +system.cpu0.BPredUnit.condPredicted 6071769 # Number of conditional branches predicted +system.cpu0.BPredUnit.condIncorrect 390619 # Number of conditional branches incorrect +system.cpu0.BPredUnit.BTBLookups 4963412 # Number of BTB lookups +system.cpu0.BPredUnit.BTBHits 4056247 # Number of BTB hits +system.cpu0.BPredUnit.BTBCorrect 0 # Number of correct BTB predictions (this stat may not work properly. +system.cpu0.BPredUnit.usedRAS 744385 # Number of times the RAS was used to get a target. +system.cpu0.BPredUnit.RASInCorrect 39840 # Number of incorrect RAS predictions. +system.cpu0.fetch.icacheStallCycles 15652124 # Number of cycles fetch is stalled on an Icache miss +system.cpu0.fetch.Insts 47554546 # Number of instructions fetch has processed +system.cpu0.fetch.Branches 7650447 # Number of branches that fetch encountered +system.cpu0.fetch.predictedBranches 4800632 # Number of branches that fetch has predicted taken +system.cpu0.fetch.Cycles 10611377 # Number of cycles fetch has run and was not squashing or blocked +system.cpu0.fetch.SquashCycles 2494725 # Number of cycles fetch has spent squashing +system.cpu0.fetch.TlbCycles 89565 # Number of cycles fetch has spent waiting for tlb +system.cpu0.fetch.BlockedCycles 50696365 # Number of cycles fetch has spent blocked +system.cpu0.fetch.MiscStallCycles 1823 # Number of cycles fetch has spent waiting on interrupts, or bad addresses, or out of MSHRs +system.cpu0.fetch.PendingDrainCycles 1967 # Number of cycles fetch has spent waiting on pipes to drain +system.cpu0.fetch.PendingTrapStallCycles 55574 # Number of stall cycles due to pending traps +system.cpu0.fetch.PendingQuiesceStallCycles 106827 # Number of stall cycles due to pending quiesce instructions +system.cpu0.fetch.IcacheWaitRetryStallCycles 232 # Number of stall cycles due to full MSHR +system.cpu0.fetch.CacheLines 6051824 # Number of cache lines fetched +system.cpu0.fetch.IcacheSquashes 344537 # Number of outstanding Icache misses that were squashed +system.cpu0.fetch.ItlbSquashes 3471 # Number of outstanding ITLB misses that were squashed +system.cpu0.fetch.rateDist::samples 78943853 # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::mean 0.750152 # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::stdev 2.105781 # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::underflows 0 0.00% 0.00% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::0 68340077 86.57% 86.57% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::1 702129 0.89% 87.46% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::2 881040 1.12% 88.57% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::3 1224383 1.55% 90.12% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::4 1120463 1.42% 91.54% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::5 584523 0.74% 92.28% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::6 1319074 1.67% 93.95% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::7 413717 0.52% 94.48% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::8 4358447 5.52% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::overflows 0 0.00% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::min_value 0 # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::max_value 8 # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.rateDist::total 78943853 # Number of instructions fetched each cycle (Total) +system.cpu0.fetch.branchRate 0.031825 # Number of branch fetches per cycle +system.cpu0.fetch.rate 0.197823 # Number of inst fetches per cycle +system.cpu0.decode.IdleCycles 16656979 # Number of cycles decode is idle +system.cpu0.decode.BlockedCycles 50446432 # Number of cycles decode is blocked +system.cpu0.decode.RunCycles 9625401 # Number of cycles decode is running +system.cpu0.decode.UnblockCycles 575149 # Number of cycles decode is unblocking +system.cpu0.decode.SquashCycles 1637749 # Number of cycles decode is squashing +system.cpu0.decode.BranchResolved 1050019 # Number of times decode resolved a branch +system.cpu0.decode.BranchMispred 92865 # Number of times decode detected a branch misprediction +system.cpu0.decode.DecodedInsts 56438894 # Number of instructions handled by decode +system.cpu0.decode.SquashedInsts 312308 # Number of squashed instructions handled by decode +system.cpu0.rename.SquashCycles 1637749 # Number of cycles rename is squashing +system.cpu0.rename.IdleCycles 17559275 # Number of cycles rename is idle +system.cpu0.rename.BlockCycles 19379590 # Number of cycles rename is blocking +system.cpu0.rename.serializeStallCycles 27710296 # count of cycles rename stalled for serializing inst +system.cpu0.rename.RunCycles 9215944 # Number of cycles rename is running +system.cpu0.rename.UnblockCycles 3438937 # Number of cycles rename is unblocking +system.cpu0.rename.RenamedInsts 54038405 # Number of instructions processed by rename +system.cpu0.rename.ROBFullEvents 14132 # Number of times rename has blocked due to ROB full +system.cpu0.rename.IQFullEvents 614041 # Number of times rename has blocked due to IQ full +system.cpu0.rename.LSQFullEvents 2240889 # Number of times rename has blocked due to LSQ full +system.cpu0.rename.FullRegisterEvents 19821 # Number of times there has been no free registers +system.cpu0.rename.RenamedOperands 55994087 # Number of destination operands rename has renamed +system.cpu0.rename.RenameLookups 246350981 # Number of register rename lookups that rename has made +system.cpu0.rename.int_rename_lookups 246302367 # Number of integer rename lookups +system.cpu0.rename.fp_rename_lookups 48614 # Number of floating rename lookups +system.cpu0.rename.CommittedMaps 41407239 # Number of HB maps that are committed +system.cpu0.rename.UndoneMaps 14586848 # Number of HB maps that are undone due to squashing +system.cpu0.rename.serializingInsts 463494 # count of serializing insts renamed +system.cpu0.rename.tempSerializingInsts 411765 # count of temporary serializing insts renamed +system.cpu0.rename.skidInsts 6993142 # count of insts added to the skid buffer +system.cpu0.memDep0.insertedLoads 10396030 # Number of loads inserted to the mem dependence unit. +system.cpu0.memDep0.insertedStores 7010506 # Number of stores inserted to the mem dependence unit. +system.cpu0.memDep0.conflictingLoads 1100529 # Number of conflicting loads. +system.cpu0.memDep0.conflictingStores 1298753 # Number of conflicting stores. +system.cpu0.iq.iqInstsAdded 50240617 # Number of instructions added to the IQ (excludes non-spec) +system.cpu0.iq.iqNonSpecInstsAdded 1080191 # Number of non-speculative instructions added to the IQ +system.cpu0.iq.iqInstsIssued 63997387 # Number of instructions issued +system.cpu0.iq.iqSquashedInstsIssued 98424 # Number of squashed instructions issued +system.cpu0.iq.iqSquashedInstsExamined 10068381 # Number of squashed instructions iterated over during squash; mainly for profiling +system.cpu0.iq.iqSquashedOperandsExamined 24718063 # Number of squashed operands that are examined and possibly removed from graph +system.cpu0.iq.iqSquashedNonSpecRemoved 263130 # Number of squashed non-spec instructions that were removed +system.cpu0.iq.issued_per_cycle::samples 78943853 # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::mean 0.810670 # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::stdev 1.516651 # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::underflows 0 0.00% 0.00% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::0 55721215 70.58% 70.58% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::1 7438559 9.42% 80.01% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::2 3764189 4.77% 84.77% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::3 3138828 3.98% 88.75% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::4 6266578 7.94% 96.69% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::5 1507037 1.91% 98.60% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::6 806867 1.02% 99.62% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::7 233373 0.30% 99.91% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::8 67207 0.09% 100.00% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::overflows 0 0.00% 100.00% # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::min_value 0 # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::max_value 8 # Number of insts issued each cycle +system.cpu0.iq.issued_per_cycle::total 78943853 # Number of insts issued each cycle +system.cpu0.iq.fu_full::No_OpClass 0 0.00% 0.00% # attempts to use FU when none available +system.cpu0.iq.fu_full::IntAlu 28850 0.65% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::IntMult 4 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::IntDiv 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::FloatAdd 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::FloatCmp 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::FloatCvt 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::FloatMult 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::FloatDiv 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::FloatSqrt 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdAdd 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdAddAcc 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdAlu 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdCmp 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdCvt 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdMisc 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdMult 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdMultAcc 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdShift 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdShiftAcc 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdSqrt 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatAdd 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatAlu 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatCmp 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatCvt 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatDiv 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatMisc 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatMult 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatMultAcc 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::SimdFloatSqrt 0 0.00% 0.65% # attempts to use FU when none available +system.cpu0.iq.fu_full::MemRead 4202057 94.56% 95.21% # attempts to use FU when none available +system.cpu0.iq.fu_full::MemWrite 212765 4.79% 100.00% # attempts to use FU when none available +system.cpu0.iq.fu_full::IprAccess 0 0.00% 100.00% # attempts to use FU when none available +system.cpu0.iq.fu_full::InstPrefetch 0 0.00% 100.00% # attempts to use FU when none available +system.cpu0.iq.FU_type_0::No_OpClass 196420 0.31% 0.31% # Type of FU issued +system.cpu0.iq.FU_type_0::IntAlu 30502224 47.66% 47.97% # Type of FU issued +system.cpu0.iq.FU_type_0::IntMult 49600 0.08% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::IntDiv 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::FloatAdd 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::FloatCmp 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::FloatCvt 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::FloatMult 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::FloatDiv 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::FloatSqrt 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdAdd 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdAddAcc 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdAlu 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdCmp 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdCvt 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdMisc 11 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdMult 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdMultAcc 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdShift 1 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdShiftAcc 8 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdSqrt 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatAdd 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatAlu 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatCmp 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatCvt 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatDiv 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatMisc 1274 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatMult 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatMultAcc 8 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::SimdFloatSqrt 0 0.00% 48.05% # Type of FU issued +system.cpu0.iq.FU_type_0::MemRead 26758229 41.81% 89.86% # Type of FU issued +system.cpu0.iq.FU_type_0::MemWrite 6489612 10.14% 100.00% # Type of FU issued +system.cpu0.iq.FU_type_0::IprAccess 0 0.00% 100.00% # Type of FU issued +system.cpu0.iq.FU_type_0::InstPrefetch 0 0.00% 100.00% # Type of FU issued +system.cpu0.iq.FU_type_0::total 63997387 # Type of FU issued +system.cpu0.iq.rate 0.266223 # Inst issue rate +system.cpu0.iq.fu_busy_cnt 4443676 # FU busy when requested +system.cpu0.iq.fu_busy_rate 0.069435 # FU busy rate (busy events/executed inst) +system.cpu0.iq.int_inst_queue_reads 211525282 # Number of integer instruction queue reads +system.cpu0.iq.int_inst_queue_writes 61397992 # Number of integer instruction queue writes +system.cpu0.iq.int_inst_queue_wakeup_accesses 45248586 # Number of integer instruction queue wakeup accesses +system.cpu0.iq.fp_inst_queue_reads 12498 # Number of floating instruction queue reads +system.cpu0.iq.fp_inst_queue_writes 6745 # Number of floating instruction queue writes +system.cpu0.iq.fp_inst_queue_wakeup_accesses 5570 # Number of floating instruction queue wakeup accesses +system.cpu0.iq.int_alu_accesses 68238014 # Number of integer alu accesses +system.cpu0.iq.fp_alu_accesses 6629 # Number of floating point alu accesses +system.cpu0.iew.lsq.thread0.forwLoads 331719 # Number of loads that had data forwarded from stores +system.cpu0.iew.lsq.thread0.invAddrLoads 0 # Number of loads ignored due to an invalid address +system.cpu0.iew.lsq.thread0.squashedLoads 2183838 # Number of loads squashed +system.cpu0.iew.lsq.thread0.ignoredResponses 4014 # Number of memory responses ignored because the instruction is squashed +system.cpu0.iew.lsq.thread0.memOrderViolation 16143 # Number of memory ordering violations +system.cpu0.iew.lsq.thread0.squashedStores 861796 # Number of stores squashed +system.cpu0.iew.lsq.thread0.invAddrSwpfs 0 # Number of software prefetches ignored due to an invalid address +system.cpu0.iew.lsq.thread0.blockedLoads 0 # Number of blocked loads due to partial load-store forwarding +system.cpu0.iew.lsq.thread0.rescheduledLoads 17073193 # Number of loads that were rescheduled +system.cpu0.iew.lsq.thread0.cacheBlocked 345280 # Number of times an access to memory failed due to the cache being blocked +system.cpu0.iew.iewIdleCycles 0 # Number of cycles IEW is idle +system.cpu0.iew.iewSquashCycles 1637749 # Number of cycles IEW is squashing +system.cpu0.iew.iewBlockCycles 14492701 # Number of cycles IEW is blocking +system.cpu0.iew.iewUnblockCycles 245337 # Number of cycles IEW is unblocking +system.cpu0.iew.iewDispatchedInsts 51437500 # Number of instructions dispatched to IQ +system.cpu0.iew.iewDispSquashedInsts 107423 # Number of squashed instructions skipped by dispatch +system.cpu0.iew.iewDispLoadInsts 10396030 # Number of dispatched load instructions +system.cpu0.iew.iewDispStoreInsts 7010506 # Number of dispatched store instructions +system.cpu0.iew.iewDispNonSpecInsts 766368 # Number of dispatched non-speculative instructions +system.cpu0.iew.iewIQFullEvents 62240 # Number of times the IQ has become full, causing a stall +system.cpu0.iew.iewLSQFullEvents 3660 # Number of times the LSQ has become full, causing a stall +system.cpu0.iew.memOrderViolationEvents 16143 # Number of memory order violations +system.cpu0.iew.predictedTakenIncorrect 190401 # Number of branches that were predicted taken incorrectly +system.cpu0.iew.predictedNotTakenIncorrect 151763 # Number of branches that were predicted not taken incorrectly +system.cpu0.iew.branchMispredicts 342164 # Number of branch mispredicts detected at execute +system.cpu0.iew.iewExecutedInsts 62995358 # Number of executed instructions +system.cpu0.iew.iewExecLoadInsts 26449087 # Number of load instructions executed +system.cpu0.iew.iewExecSquashedInsts 1002029 # Number of squashed instructions skipped in execute +system.cpu0.iew.exec_swp 0 # number of swp insts executed +system.cpu0.iew.exec_nop 116692 # number of nop insts executed +system.cpu0.iew.exec_refs 32879818 # number of memory reference insts executed +system.cpu0.iew.exec_branches 6078109 # Number of branches executed +system.cpu0.iew.exec_stores 6430731 # Number of stores executed +system.cpu0.iew.exec_rate 0.262055 # Inst execution rate +system.cpu0.iew.wb_sent 62497341 # cumulative count of insts sent to commit +system.cpu0.iew.wb_count 45254156 # cumulative count of insts written-back +system.cpu0.iew.wb_producers 24800882 # num instructions producing a value +system.cpu0.iew.wb_consumers 45441474 # num instructions consuming a value +system.cpu0.iew.wb_penalized 0 # number of instrctions required to write to 'other' IQ +system.cpu0.iew.wb_rate 0.188253 # insts written-back per cycle +system.cpu0.iew.wb_fanout 0.545776 # average fanout of values written-back +system.cpu0.iew.wb_penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ +system.cpu0.commit.commitSquashedInsts 9944794 # The number of squashed insts skipped by commit +system.cpu0.commit.commitNonSpecStalls 817061 # The number of times commit has been forced to stall to communicate backwards +system.cpu0.commit.branchMispredicts 299135 # The number of times a branch was mispredicted +system.cpu0.commit.committed_per_cycle::samples 77306104 # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::mean 0.530438 # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::stdev 1.512152 # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::underflows 0 0.00% 0.00% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::0 62653127 81.05% 81.05% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::1 7139643 9.24% 90.28% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::2 2117433 2.74% 93.02% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::3 1152491 1.49% 94.51% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::4 1052620 1.36% 95.87% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::5 581358 0.75% 96.62% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::6 718590 0.93% 97.55% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::7 381418 0.49% 98.05% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::8 1509424 1.95% 100.00% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::overflows 0 0.00% 100.00% # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::min_value 0 # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::max_value 8 # Number of insts commited each cycle +system.cpu0.commit.committed_per_cycle::total 77306104 # Number of insts commited each cycle +system.cpu0.commit.committedInsts 32015395 # Number of instructions committed +system.cpu0.commit.committedOps 41006110 # Number of ops (including micro ops) committed +system.cpu0.commit.swp_count 0 # Number of s/w prefetches committed +system.cpu0.commit.refs 14360902 # Number of memory references committed +system.cpu0.commit.loads 8212192 # Number of loads committed +system.cpu0.commit.membars 221881 # Number of memory barriers committed +system.cpu0.commit.branches 5266033 # Number of branches committed +system.cpu0.commit.fp_insts 5497 # Number of committed floating point instructions. +system.cpu0.commit.int_insts 36294613 # Number of committed integer instructions. +system.cpu0.commit.function_calls 520344 # Number of function calls committed. +system.cpu0.commit.bw_lim_events 1509424 # number cycles where commit BW limit reached +system.cpu0.commit.bw_limited 0 # number of insts not committed due to BW limits +system.cpu0.rob.rob_reads 125738503 # The number of ROB reads +system.cpu0.rob.rob_writes 103590706 # The number of ROB writes +system.cpu0.timesIdled 892654 # Number of times that the entire CPU went into an idle state and unscheduled itself +system.cpu0.idleCycles 161446097 # Total number of cycles that the CPU has spent unscheduled due to idling +system.cpu0.quiesceCycles 2255175331 # Total number of cycles that CPU has spent quiesced or waiting for an interrupt +system.cpu0.committedInsts 31936467 # Number of Instructions Simulated +system.cpu0.committedOps 40927182 # Number of Ops (including micro ops) Simulated +system.cpu0.committedInsts_total 31936467 # Number of Instructions Simulated +system.cpu0.cpi 7.527130 # CPI: Cycles Per Instruction +system.cpu0.cpi_total 7.527130 # CPI: Total CPI of All Threads +system.cpu0.ipc 0.132853 # IPC: Instructions Per Cycle +system.cpu0.ipc_total 0.132853 # IPC: Total IPC of All Threads +system.cpu0.int_regfile_reads 285784738 # number of integer regfile reads +system.cpu0.int_regfile_writes 46365180 # number of integer regfile writes +system.cpu0.fp_regfile_reads 22828 # number of floating regfile reads +system.cpu0.fp_regfile_writes 19904 # number of floating regfile writes +system.cpu0.misc_regfile_reads 64493667 # number of misc regfile reads +system.cpu0.misc_regfile_writes 471303 # number of misc regfile writes +system.cpu0.icache.replacements 986601 # number of replacements +system.cpu0.icache.tagsinuse 511.585602 # Cycle average of tags in use +system.cpu0.icache.total_refs 10225858 # Total number of references to valid blocks. +system.cpu0.icache.sampled_refs 987113 # Sample count of references to valid blocks. +system.cpu0.icache.avg_refs 10.359359 # Average number of references to valid blocks. +system.cpu0.icache.warmup_cycle 6782112000 # Cycle when the warmup percentage was hit. +system.cpu0.icache.occ_blocks::cpu0.inst 321.917069 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu1.inst 189.668533 # Average occupied blocks per requestor +system.cpu0.icache.occ_percent::cpu0.inst 0.628744 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu1.inst 0.370446 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::total 0.999191 # Average percentage of cache occupancy +system.cpu0.icache.ReadReq_hits::cpu0.inst 5498991 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu1.inst 4726867 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::total 10225858 # number of ReadReq hits +system.cpu0.icache.demand_hits::cpu0.inst 5498991 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu1.inst 4726867 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::total 10225858 # number of demand (read+write) hits +system.cpu0.icache.overall_hits::cpu0.inst 5498991 # number of overall hits +system.cpu0.icache.overall_hits::cpu1.inst 4726867 # number of overall hits +system.cpu0.icache.overall_hits::total 10225858 # number of overall hits +system.cpu0.icache.ReadReq_misses::cpu0.inst 552708 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu1.inst 515964 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::total 1068672 # number of ReadReq misses +system.cpu0.icache.demand_misses::cpu0.inst 552708 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu1.inst 515964 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::total 1068672 # number of demand (read+write) misses +system.cpu0.icache.overall_misses::cpu0.inst 552708 # number of overall misses +system.cpu0.icache.overall_misses::cpu1.inst 515964 # number of overall misses +system.cpu0.icache.overall_misses::total 1068672 # number of overall misses +system.cpu0.icache.ReadReq_miss_latency::cpu0.inst 7467633494 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::cpu1.inst 6811010992 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::total 14278644486 # number of ReadReq miss cycles +system.cpu0.icache.demand_miss_latency::cpu0.inst 7467633494 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::cpu1.inst 6811010992 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::total 14278644486 # number of demand (read+write) miss cycles +system.cpu0.icache.overall_miss_latency::cpu0.inst 7467633494 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::cpu1.inst 6811010992 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::total 14278644486 # number of overall miss cycles +system.cpu0.icache.ReadReq_accesses::cpu0.inst 6051699 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu1.inst 5242831 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::total 11294530 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.demand_accesses::cpu0.inst 6051699 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu1.inst 5242831 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::total 11294530 # number of demand (read+write) accesses +system.cpu0.icache.overall_accesses::cpu0.inst 6051699 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu1.inst 5242831 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::total 11294530 # number of overall (read+write) accesses +system.cpu0.icache.ReadReq_miss_rate::cpu0.inst 0.091331 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu1.inst 0.098413 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::total 0.094619 # miss rate for ReadReq accesses +system.cpu0.icache.demand_miss_rate::cpu0.inst 0.091331 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu1.inst 0.098413 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::total 0.094619 # miss rate for demand accesses +system.cpu0.icache.overall_miss_rate::cpu0.inst 0.091331 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu1.inst 0.098413 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::total 0.094619 # miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_miss_latency::cpu0.inst 13510.992231 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::cpu1.inst 13200.554674 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::total 13361.110318 # average ReadReq miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu0.inst 13510.992231 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu1.inst 13200.554674 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::total 13361.110318 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu0.inst 13510.992231 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu1.inst 13200.554674 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::total 13361.110318 # average overall miss latency +system.cpu0.icache.blocked_cycles::no_mshrs 4485 # number of cycles access was blocked +system.cpu0.icache.blocked_cycles::no_targets 398 # number of cycles access was blocked +system.cpu0.icache.blocked::no_mshrs 340 # number of cycles access was blocked +system.cpu0.icache.blocked::no_targets 1 # number of cycles access was blocked +system.cpu0.icache.avg_blocked_cycles::no_mshrs 13.191176 # average number of cycles each access was blocked +system.cpu0.icache.avg_blocked_cycles::no_targets 398 # average number of cycles each access was blocked +system.cpu0.icache.fast_writes 0 # number of fast writes performed +system.cpu0.icache.cache_copies 0 # number of cache copies performed +system.cpu0.icache.ReadReq_mshr_hits::cpu0.inst 42344 # number of ReadReq MSHR hits +system.cpu0.icache.ReadReq_mshr_hits::cpu1.inst 39180 # number of ReadReq MSHR hits +system.cpu0.icache.ReadReq_mshr_hits::total 81524 # number of ReadReq MSHR hits +system.cpu0.icache.demand_mshr_hits::cpu0.inst 42344 # number of demand (read+write) MSHR hits +system.cpu0.icache.demand_mshr_hits::cpu1.inst 39180 # number of demand (read+write) MSHR hits +system.cpu0.icache.demand_mshr_hits::total 81524 # number of demand (read+write) MSHR hits +system.cpu0.icache.overall_mshr_hits::cpu0.inst 42344 # number of overall MSHR hits +system.cpu0.icache.overall_mshr_hits::cpu1.inst 39180 # number of overall MSHR hits +system.cpu0.icache.overall_mshr_hits::total 81524 # number of overall MSHR hits +system.cpu0.icache.ReadReq_mshr_misses::cpu0.inst 510364 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::cpu1.inst 476784 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::total 987148 # number of ReadReq MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu0.inst 510364 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu1.inst 476784 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::total 987148 # number of demand (read+write) MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu0.inst 510364 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu1.inst 476784 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::total 987148 # number of overall MSHR misses +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu0.inst 6084165494 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu1.inst 5553411993 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::total 11637577487 # number of ReadReq MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu0.inst 6084165494 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu1.inst 5553411993 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::total 11637577487 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu0.inst 6084165494 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu1.inst 5553411993 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::total 11637577487 # number of overall MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_uncacheable_latency::cpu0.inst 6767000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.icache.ReadReq_mshr_uncacheable_latency::total 6767000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.icache.overall_mshr_uncacheable_latency::cpu0.inst 6767000 # number of overall MSHR uncacheable cycles +system.cpu0.icache.overall_mshr_uncacheable_latency::total 6767000 # number of overall MSHR uncacheable cycles +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu0.inst 0.084334 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu1.inst 0.090940 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::total 0.087401 # mshr miss rate for ReadReq accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu0.inst 0.084334 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu1.inst 0.090940 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::total 0.087401 # mshr miss rate for demand accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu0.inst 0.084334 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu1.inst 0.090940 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::total 0.087401 # mshr miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu0.inst 11921.227779 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu1.inst 11647.647557 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::total 11789.090883 # average ReadReq mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu0.inst 11921.227779 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu1.inst 11647.647557 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::total 11789.090883 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu0.inst 11921.227779 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu1.inst 11647.647557 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::total 11789.090883 # average overall mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_uncacheable_latency::cpu0.inst inf # average ReadReq mshr uncacheable latency +system.cpu0.icache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.cpu0.icache.overall_avg_mshr_uncacheable_latency::cpu0.inst inf # average overall mshr uncacheable latency +system.cpu0.icache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.cpu0.icache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu0.dcache.replacements 643795 # number of replacements +system.cpu0.dcache.tagsinuse 511.994133 # Cycle average of tags in use +system.cpu0.dcache.total_refs 21730635 # Total number of references to valid blocks. +system.cpu0.dcache.sampled_refs 644307 # Sample count of references to valid blocks. +system.cpu0.dcache.avg_refs 33.727144 # Average number of references to valid blocks. +system.cpu0.dcache.warmup_cycle 36157000 # Cycle when the warmup percentage was hit. +system.cpu0.dcache.occ_blocks::cpu0.data 255.754263 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu1.data 256.239870 # Average occupied blocks per requestor +system.cpu0.dcache.occ_percent::cpu0.data 0.499520 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu1.data 0.500468 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::total 0.999989 # Average percentage of cache occupancy +system.cpu0.dcache.ReadReq_hits::cpu0.data 7320998 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu1.data 6545083 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::total 13866081 # number of ReadReq hits +system.cpu0.dcache.WriteReq_hits::cpu0.data 3839440 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu1.data 3452761 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::total 7292201 # number of WriteReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu0.data 142548 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu1.data 140954 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::total 283502 # number of LoadLockedReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu0.data 144156 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu1.data 141612 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::total 285768 # number of StoreCondReq hits +system.cpu0.dcache.demand_hits::cpu0.data 11160438 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu1.data 9997844 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::total 21158282 # number of demand (read+write) hits +system.cpu0.dcache.overall_hits::cpu0.data 11160438 # number of overall hits +system.cpu0.dcache.overall_hits::cpu1.data 9997844 # number of overall hits +system.cpu0.dcache.overall_hits::total 21158282 # number of overall hits +system.cpu0.dcache.ReadReq_misses::cpu0.data 376773 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu1.data 369451 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::total 746224 # number of ReadReq misses +system.cpu0.dcache.WriteReq_misses::cpu0.data 1505844 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu1.data 1453809 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::total 2959653 # number of WriteReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu0.data 7530 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu1.data 6140 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::total 13670 # number of LoadLockedReq misses +system.cpu0.dcache.StoreCondReq_misses::cpu0.data 6 # number of StoreCondReq misses +system.cpu0.dcache.StoreCondReq_misses::cpu1.data 7 # number of StoreCondReq misses +system.cpu0.dcache.StoreCondReq_misses::total 13 # number of StoreCondReq misses +system.cpu0.dcache.demand_misses::cpu0.data 1882617 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu1.data 1823260 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::total 3705877 # number of demand (read+write) misses +system.cpu0.dcache.overall_misses::cpu0.data 1882617 # number of overall misses +system.cpu0.dcache.overall_misses::cpu1.data 1823260 # number of overall misses +system.cpu0.dcache.overall_misses::total 3705877 # number of overall misses +system.cpu0.dcache.ReadReq_miss_latency::cpu0.data 5747755000 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::cpu1.data 5402696500 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::total 11150451500 # number of ReadReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu0.data 63541262289 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu1.data 51082353349 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::total 114623615638 # number of WriteReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu0.data 104538500 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu1.data 81673500 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::total 186212000 # number of LoadLockedReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::cpu0.data 78000 # number of StoreCondReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::cpu1.data 103000 # number of StoreCondReq miss cycles +system.cpu0.dcache.StoreCondReq_miss_latency::total 181000 # number of StoreCondReq miss cycles +system.cpu0.dcache.demand_miss_latency::cpu0.data 69289017289 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::cpu1.data 56485049849 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::total 125774067138 # number of demand (read+write) miss cycles +system.cpu0.dcache.overall_miss_latency::cpu0.data 69289017289 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::cpu1.data 56485049849 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::total 125774067138 # number of overall miss cycles +system.cpu0.dcache.ReadReq_accesses::cpu0.data 7697771 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu1.data 6914534 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::total 14612305 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu0.data 5345284 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu1.data 4906570 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::total 10251854 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu0.data 150078 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu1.data 147094 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::total 297172 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu0.data 144162 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu1.data 141619 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::total 285781 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.demand_accesses::cpu0.data 13043055 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu1.data 11821104 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::total 24864159 # number of demand (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu0.data 13043055 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu1.data 11821104 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::total 24864159 # number of overall (read+write) accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu0.data 0.048946 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu1.data 0.053431 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::total 0.051068 # miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu0.data 0.281714 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu1.data 0.296298 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::total 0.288694 # miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu0.data 0.050174 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu1.data 0.041742 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::total 0.046000 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::cpu0.data 0.000042 # miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::cpu1.data 0.000049 # miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_miss_rate::total 0.000045 # miss rate for StoreCondReq accesses +system.cpu0.dcache.demand_miss_rate::cpu0.data 0.144339 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu1.data 0.154238 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::total 0.149045 # miss rate for demand accesses +system.cpu0.dcache.overall_miss_rate::cpu0.data 0.144339 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu1.data 0.154238 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::total 0.149045 # miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu0.data 15255.219987 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu1.data 14623.580664 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::total 14942.499169 # average ReadReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu0.data 42196.444179 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu1.data 35136.908183 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::total 38728.734631 # average WriteReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu0.data 13882.934927 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu1.data 13301.872964 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::total 13621.945867 # average LoadLockedReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::cpu0.data 13000 # average StoreCondReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::cpu1.data 14714.285714 # average StoreCondReq miss latency +system.cpu0.dcache.StoreCondReq_avg_miss_latency::total 13923.076923 # average StoreCondReq miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu0.data 36804.627436 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu1.data 30980.249580 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::total 33939.083013 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu0.data 36804.627436 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu1.data 30980.249580 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::total 33939.083013 # average overall miss latency +system.cpu0.dcache.blocked_cycles::no_mshrs 35448 # number of cycles access was blocked +system.cpu0.dcache.blocked_cycles::no_targets 12573 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_mshrs 3421 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_targets 258 # number of cycles access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_mshrs 10.361882 # average number of cycles each access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_targets 48.732558 # average number of cycles each access was blocked +system.cpu0.dcache.fast_writes 0 # number of fast writes performed +system.cpu0.dcache.cache_copies 0 # number of cache copies performed +system.cpu0.dcache.writebacks::writebacks 608099 # number of writebacks +system.cpu0.dcache.writebacks::total 608099 # number of writebacks +system.cpu0.dcache.ReadReq_mshr_hits::cpu0.data 175511 # number of ReadReq MSHR hits +system.cpu0.dcache.ReadReq_mshr_hits::cpu1.data 184666 # number of ReadReq MSHR hits +system.cpu0.dcache.ReadReq_mshr_hits::total 360177 # number of ReadReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::cpu0.data 1378456 # number of WriteReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::cpu1.data 1332180 # number of WriteReq MSHR hits +system.cpu0.dcache.WriteReq_mshr_hits::total 2710636 # number of WriteReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::cpu0.data 766 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::cpu1.data 717 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.LoadLockedReq_mshr_hits::total 1483 # number of LoadLockedReq MSHR hits +system.cpu0.dcache.demand_mshr_hits::cpu0.data 1553967 # number of demand (read+write) MSHR hits +system.cpu0.dcache.demand_mshr_hits::cpu1.data 1516846 # number of demand (read+write) MSHR hits +system.cpu0.dcache.demand_mshr_hits::total 3070813 # number of demand (read+write) MSHR hits +system.cpu0.dcache.overall_mshr_hits::cpu0.data 1553967 # number of overall MSHR hits +system.cpu0.dcache.overall_mshr_hits::cpu1.data 1516846 # number of overall MSHR hits +system.cpu0.dcache.overall_mshr_hits::total 3070813 # number of overall MSHR hits +system.cpu0.dcache.ReadReq_mshr_misses::cpu0.data 201262 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::cpu1.data 184785 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::total 386047 # number of ReadReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu0.data 127388 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu1.data 121629 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::total 249017 # number of WriteReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu0.data 6764 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu1.data 5423 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::total 12187 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::cpu0.data 6 # number of StoreCondReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::cpu1.data 7 # number of StoreCondReq MSHR misses +system.cpu0.dcache.StoreCondReq_mshr_misses::total 13 # number of StoreCondReq MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu0.data 328650 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu1.data 306414 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::total 635064 # number of demand (read+write) MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu0.data 328650 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu1.data 306414 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::total 635064 # number of overall MSHR misses +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu0.data 2736355500 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu1.data 2446708500 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::total 5183064000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu0.data 4640301429 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu1.data 3791272989 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::total 8431574418 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu0.data 82236000 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu1.data 62703500 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::total 144939500 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::cpu0.data 66000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::cpu1.data 89000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.StoreCondReq_mshr_miss_latency::total 155000 # number of StoreCondReq MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu0.data 7376656929 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu1.data 6237981489 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::total 13614638418 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu0.data 7376656929 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu1.data 6237981489 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::total 13614638418 # number of overall MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu0.data 91682874000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu1.data 90682822000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::total 182365696000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu0.data 13814824895 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu1.data 10281264593 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::total 24096089488 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.LoadLockedReq_mshr_uncacheable_latency::cpu1.data 118000 # number of LoadLockedReq MSHR uncacheable cycles +system.cpu0.dcache.LoadLockedReq_mshr_uncacheable_latency::total 118000 # number of LoadLockedReq MSHR uncacheable cycles +system.cpu0.dcache.StoreCondReq_mshr_uncacheable_latency::cpu1.data 69000 # number of StoreCondReq MSHR uncacheable cycles +system.cpu0.dcache.StoreCondReq_mshr_uncacheable_latency::total 69000 # number of StoreCondReq MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu0.data 105497698895 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu1.data 100964086593 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::total 206461785488 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu0.data 0.026145 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu1.data 0.026724 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::total 0.026419 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu0.data 0.023832 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu1.data 0.024789 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::total 0.024290 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu0.data 0.045070 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu1.data 0.036868 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::total 0.041010 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::cpu0.data 0.000042 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::cpu1.data 0.000049 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.StoreCondReq_mshr_miss_rate::total 0.000045 # mshr miss rate for StoreCondReq accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu0.data 0.025197 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu1.data 0.025921 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::total 0.025541 # mshr miss rate for demand accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu0.data 0.025197 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu1.data 0.025921 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::total 0.025541 # mshr miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu0.data 13595.986823 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu1.data 13240.839354 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::total 13425.992172 # average ReadReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu0.data 36426.519209 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu1.data 31170.797992 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::total 33859.432962 # average WriteReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu0.data 12157.894737 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu1.data 11562.511525 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::total 11892.959711 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::cpu0.data 11000 # average StoreCondReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::cpu1.data 12714.285714 # average StoreCondReq mshr miss latency +system.cpu0.dcache.StoreCondReq_avg_mshr_miss_latency::total 11923.076923 # average StoreCondReq mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu0.data 22445.327640 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu1.data 20358.017222 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::total 21438.214759 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu0.data 22445.327640 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu1.data 20358.017222 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::total 21438.214759 # average overall mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu0.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu0.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_uncacheable_latency::cpu1.data inf # average LoadLockedReq mshr uncacheable latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_uncacheable_latency::total inf # average LoadLockedReq mshr uncacheable latency +system.cpu0.dcache.StoreCondReq_avg_mshr_uncacheable_latency::cpu1.data inf # average StoreCondReq mshr uncacheable latency +system.cpu0.dcache.StoreCondReq_avg_mshr_uncacheable_latency::total inf # average StoreCondReq mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu0.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.cpu0.dcache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu1.dtb.inst_hits 0 # ITB inst hits +system.cpu1.dtb.inst_misses 0 # ITB inst misses +system.cpu1.dtb.read_hits 25160982 # DTB read hits +system.cpu1.dtb.read_misses 40128 # DTB read misses +system.cpu1.dtb.write_hits 5622181 # DTB write hits +system.cpu1.dtb.write_misses 9250 # DTB write misses +system.cpu1.dtb.flush_tlb 254 # Number of times complete TLB was flushed +system.cpu1.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.dtb.flush_tlb_mva_asid 702 # Number of times TLB was flushed by MVA & ASID +system.cpu1.dtb.flush_tlb_asid 31 # Number of times TLB was flushed by ASID +system.cpu1.dtb.flush_entries 7925 # Number of entries that have been flushed from TLB +system.cpu1.dtb.align_faults 1386 # Number of TLB faults due to alignment restrictions +system.cpu1.dtb.prefetch_faults 276 # Number of TLB faults due to prefetch +system.cpu1.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.dtb.perms_faults 627 # Number of TLB faults due to permissions restrictions +system.cpu1.dtb.read_accesses 25201110 # DTB read accesses +system.cpu1.dtb.write_accesses 5631431 # DTB write accesses +system.cpu1.dtb.inst_accesses 0 # ITB inst accesses +system.cpu1.dtb.hits 30783163 # DTB hits +system.cpu1.dtb.misses 49378 # DTB misses +system.cpu1.dtb.accesses 30832541 # DTB accesses +system.cpu1.itb.inst_hits 5244962 # ITB inst hits +system.cpu1.itb.inst_misses 6670 # ITB inst misses +system.cpu1.itb.read_hits 0 # DTB read hits +system.cpu1.itb.read_misses 0 # DTB read misses +system.cpu1.itb.write_hits 0 # DTB write hits +system.cpu1.itb.write_misses 0 # DTB write misses +system.cpu1.itb.flush_tlb 254 # Number of times complete TLB was flushed +system.cpu1.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.itb.flush_tlb_mva_asid 702 # Number of times TLB was flushed by MVA & ASID +system.cpu1.itb.flush_tlb_asid 31 # Number of times TLB was flushed by ASID +system.cpu1.itb.flush_entries 2650 # Number of entries that have been flushed from TLB +system.cpu1.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu1.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.itb.perms_faults 1456 # Number of TLB faults due to permissions restrictions +system.cpu1.itb.read_accesses 0 # DTB read accesses +system.cpu1.itb.write_accesses 0 # DTB write accesses +system.cpu1.itb.inst_accesses 5251632 # ITB inst accesses +system.cpu1.itb.hits 5244962 # DTB hits +system.cpu1.itb.misses 6670 # DTB misses +system.cpu1.itb.accesses 5251632 # DTB accesses +system.cpu1.numCycles 232013377 # number of cpu cycles simulated +system.cpu1.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu1.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu1.BPredUnit.lookups 6790425 # Number of BP lookups +system.cpu1.BPredUnit.condPredicted 5410391 # Number of conditional branches predicted +system.cpu1.BPredUnit.condIncorrect 343130 # Number of conditional branches incorrect +system.cpu1.BPredUnit.BTBLookups 4365867 # Number of BTB lookups +system.cpu1.BPredUnit.BTBHits 3552399 # Number of BTB hits +system.cpu1.BPredUnit.BTBCorrect 0 # Number of correct BTB predictions (this stat may not work properly. +system.cpu1.BPredUnit.usedRAS 675836 # Number of times the RAS was used to get a target. +system.cpu1.BPredUnit.RASInCorrect 35150 # Number of incorrect RAS predictions. +system.cpu1.fetch.icacheStallCycles 14219364 # Number of cycles fetch is stalled on an Icache miss +system.cpu1.fetch.Insts 41265528 # Number of instructions fetch has processed +system.cpu1.fetch.Branches 6790425 # Number of branches that fetch encountered +system.cpu1.fetch.predictedBranches 4228235 # Number of branches that fetch has predicted taken +system.cpu1.fetch.Cycles 9330468 # Number of cycles fetch has run and was not squashing or blocked +system.cpu1.fetch.SquashCycles 2101425 # Number of cycles fetch has spent squashing +system.cpu1.fetch.TlbCycles 82678 # Number of cycles fetch has spent waiting for tlb +system.cpu1.fetch.BlockedCycles 47674573 # Number of cycles fetch has spent blocked +system.cpu1.fetch.MiscStallCycles 1053 # Number of cycles fetch has spent waiting on interrupts, or bad addresses, or out of MSHRs +system.cpu1.fetch.PendingDrainCycles 1954 # Number of cycles fetch has spent waiting on pipes to drain +system.cpu1.fetch.PendingTrapStallCycles 48379 # Number of stall cycles due to pending traps +system.cpu1.fetch.PendingQuiesceStallCycles 99398 # Number of stall cycles due to pending quiesce instructions +system.cpu1.fetch.IcacheWaitRetryStallCycles 108 # Number of stall cycles due to full MSHR +system.cpu1.fetch.CacheLines 5242833 # Number of cache lines fetched +system.cpu1.fetch.IcacheSquashes 267586 # Number of outstanding Icache misses that were squashed +system.cpu1.fetch.ItlbSquashes 2984 # Number of outstanding ITLB misses that were squashed +system.cpu1.fetch.rateDist::samples 72923984 # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::mean 0.712246 # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::stdev 2.058401 # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::underflows 0 0.00% 0.00% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::0 63601422 87.22% 87.22% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::1 651379 0.89% 88.11% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::2 811870 1.11% 89.22% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::3 1013874 1.39% 90.61% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::4 943793 1.29% 91.91% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::5 538574 0.74% 92.65% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::6 1195574 1.64% 94.29% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::7 358365 0.49% 94.78% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::8 3809133 5.22% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::overflows 0 0.00% 100.00% # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::min_value 0 # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::max_value 8 # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.rateDist::total 72923984 # Number of instructions fetched each cycle (Total) +system.cpu1.fetch.branchRate 0.029267 # Number of branch fetches per cycle +system.cpu1.fetch.rate 0.177858 # Number of inst fetches per cycle +system.cpu1.decode.IdleCycles 15065111 # Number of cycles decode is idle +system.cpu1.decode.BlockedCycles 47459427 # Number of cycles decode is blocked +system.cpu1.decode.RunCycles 8508787 # Number of cycles decode is running +system.cpu1.decode.UnblockCycles 504767 # Number of cycles decode is unblocking +system.cpu1.decode.SquashCycles 1383740 # Number of cycles decode is squashing +system.cpu1.decode.BranchResolved 935366 # Number of times decode resolved a branch +system.cpu1.decode.BranchMispred 84721 # Number of times decode detected a branch misprediction +system.cpu1.decode.DecodedInsts 49702311 # Number of instructions handled by decode +system.cpu1.decode.SquashedInsts 283407 # Number of squashed instructions handled by decode +system.cpu1.rename.SquashCycles 1383740 # Number of cycles rename is squashing +system.cpu1.rename.IdleCycles 15832821 # Number of cycles rename is idle +system.cpu1.rename.BlockCycles 18424865 # Number of cycles rename is blocking +system.cpu1.rename.serializeStallCycles 25966015 # count of cycles rename stalled for serializing inst +system.cpu1.rename.RunCycles 8176580 # Number of cycles rename is running +system.cpu1.rename.UnblockCycles 3137893 # Number of cycles rename is unblocking +system.cpu1.rename.RenamedInsts 47902393 # Number of instructions processed by rename +system.cpu1.rename.ROBFullEvents 7520 # Number of times rename has blocked due to ROB full +system.cpu1.rename.IQFullEvents 511770 # Number of times rename has blocked due to IQ full +system.cpu1.rename.LSQFullEvents 2112759 # Number of times rename has blocked due to LSQ full +system.cpu1.rename.FullRegisterEvents 14566 # Number of times there has been no free registers +system.cpu1.rename.RenamedOperands 49459920 # Number of destination operands rename has renamed +system.cpu1.rename.RenameLookups 218567938 # Number of register rename lookups that rename has made +system.cpu1.rename.int_rename_lookups 218526163 # Number of integer rename lookups +system.cpu1.rename.fp_rename_lookups 41775 # Number of floating rename lookups +system.cpu1.rename.CommittedMaps 37332689 # Number of HB maps that are committed +system.cpu1.rename.UndoneMaps 12127230 # Number of HB maps that are undone due to squashing +system.cpu1.rename.serializingInsts 420234 # count of serializing insts renamed +system.cpu1.rename.tempSerializingInsts 377586 # count of temporary serializing insts renamed +system.cpu1.rename.skidInsts 6217035 # count of insts added to the skid buffer +system.cpu1.memDep0.insertedLoads 9300150 # Number of loads inserted to the mem dependence unit. +system.cpu1.memDep0.insertedStores 6339076 # Number of stores inserted to the mem dependence unit. +system.cpu1.memDep0.conflictingLoads 983520 # Number of conflicting loads. +system.cpu1.memDep0.conflictingStores 1172387 # Number of conflicting stores. +system.cpu1.iq.iqInstsAdded 44745095 # Number of instructions added to the IQ (excludes non-spec) +system.cpu1.iq.iqNonSpecInstsAdded 970903 # Number of non-speculative instructions added to the IQ +system.cpu1.iq.iqInstsIssued 59171295 # Number of instructions issued +system.cpu1.iq.iqSquashedInstsIssued 83947 # Number of squashed instructions issued +system.cpu1.iq.iqSquashedInstsExamined 8398889 # Number of squashed instructions iterated over during squash; mainly for profiling +system.cpu1.iq.iqSquashedOperandsExamined 19786111 # Number of squashed operands that are examined and possibly removed from graph +system.cpu1.iq.iqSquashedNonSpecRemoved 243126 # Number of squashed non-spec instructions that were removed +system.cpu1.iq.issued_per_cycle::samples 72923984 # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::mean 0.811411 # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::stdev 1.516236 # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::underflows 0 0.00% 0.00% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::0 51567769 70.71% 70.71% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::1 6722785 9.22% 79.93% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::2 3414540 4.68% 84.62% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::3 2860255 3.92% 88.54% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::4 6054704 8.30% 96.84% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::5 1326273 1.82% 98.66% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::6 714361 0.98% 99.64% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::7 204058 0.28% 99.92% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::8 59239 0.08% 100.00% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::overflows 0 0.00% 100.00% # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::min_value 0 # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::max_value 8 # Number of insts issued each cycle +system.cpu1.iq.issued_per_cycle::total 72923984 # Number of insts issued each cycle +system.cpu1.iq.fu_full::No_OpClass 0 0.00% 0.00% # attempts to use FU when none available +system.cpu1.iq.fu_full::IntAlu 24658 0.56% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::IntMult 2 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::IntDiv 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::FloatAdd 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::FloatCmp 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::FloatCvt 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::FloatMult 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::FloatDiv 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::FloatSqrt 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdAdd 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdAddAcc 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdAlu 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdCmp 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdCvt 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdMisc 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdMult 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdMultAcc 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdShift 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdShiftAcc 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdSqrt 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatAdd 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatAlu 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatCmp 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatCvt 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatDiv 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatMisc 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatMult 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatMultAcc 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::SimdFloatSqrt 0 0.00% 0.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::MemRead 4170684 95.00% 95.56% # attempts to use FU when none available +system.cpu1.iq.fu_full::MemWrite 195004 4.44% 100.00% # attempts to use FU when none available +system.cpu1.iq.fu_full::IprAccess 0 0.00% 100.00% # attempts to use FU when none available +system.cpu1.iq.fu_full::InstPrefetch 0 0.00% 100.00% # attempts to use FU when none available +system.cpu1.iq.FU_type_0::No_OpClass 167246 0.28% 0.28% # Type of FU issued +system.cpu1.iq.FU_type_0::IntAlu 27298169 46.13% 46.42% # Type of FU issued +system.cpu1.iq.FU_type_0::IntMult 44245 0.07% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::IntDiv 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::FloatAdd 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::FloatCmp 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::FloatCvt 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::FloatMult 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::FloatDiv 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::FloatSqrt 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdAdd 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdAddAcc 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdAlu 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdCmp 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdCvt 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdMisc 6 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdMult 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdMultAcc 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdShift 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdShiftAcc 3 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdSqrt 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatAdd 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatAlu 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatCmp 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatCvt 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatDiv 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatMisc 839 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatMult 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatMultAcc 3 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::SimdFloatSqrt 0 0.00% 46.49% # Type of FU issued +system.cpu1.iq.FU_type_0::MemRead 25732684 43.49% 89.98% # Type of FU issued +system.cpu1.iq.FU_type_0::MemWrite 5928100 10.02% 100.00% # Type of FU issued +system.cpu1.iq.FU_type_0::IprAccess 0 0.00% 100.00% # Type of FU issued +system.cpu1.iq.FU_type_0::InstPrefetch 0 0.00% 100.00% # Type of FU issued +system.cpu1.iq.FU_type_0::total 59171295 # Type of FU issued +system.cpu1.iq.rate 0.255034 # Inst issue rate +system.cpu1.iq.fu_busy_cnt 4390348 # FU busy when requested +system.cpu1.iq.fu_busy_rate 0.074197 # FU busy rate (busy events/executed inst) +system.cpu1.iq.int_inst_queue_reads 195779484 # Number of integer instruction queue reads +system.cpu1.iq.int_inst_queue_writes 54123667 # Number of integer instruction queue writes +system.cpu1.iq.int_inst_queue_wakeup_accesses 40860194 # Number of integer instruction queue wakeup accesses +system.cpu1.iq.fp_inst_queue_reads 10578 # Number of floating instruction queue reads +system.cpu1.iq.fp_inst_queue_writes 5727 # Number of floating instruction queue writes +system.cpu1.iq.fp_inst_queue_wakeup_accesses 4726 # Number of floating instruction queue wakeup accesses +system.cpu1.iq.int_alu_accesses 63388772 # Number of integer alu accesses +system.cpu1.iq.fp_alu_accesses 5625 # Number of floating point alu accesses +system.cpu1.iew.lsq.thread0.forwLoads 295886 # Number of loads that had data forwarded from stores +system.cpu1.iew.lsq.thread0.invAddrLoads 0 # Number of loads ignored due to an invalid address +system.cpu1.iew.lsq.thread0.squashedLoads 1794199 # Number of loads squashed +system.cpu1.iew.lsq.thread0.ignoredResponses 2827 # Number of memory responses ignored because the instruction is squashed +system.cpu1.iew.lsq.thread0.memOrderViolation 15001 # Number of memory ordering violations +system.cpu1.iew.lsq.thread0.squashedStores 687985 # Number of stores squashed +system.cpu1.iew.lsq.thread0.invAddrSwpfs 0 # Number of software prefetches ignored due to an invalid address +system.cpu1.iew.lsq.thread0.blockedLoads 0 # Number of blocked loads due to partial load-store forwarding +system.cpu1.iew.lsq.thread0.rescheduledLoads 17035415 # Number of loads that were rescheduled +system.cpu1.iew.lsq.thread0.cacheBlocked 238532 # Number of times an access to memory failed due to the cache being blocked +system.cpu1.iew.iewIdleCycles 0 # Number of cycles IEW is idle +system.cpu1.iew.iewSquashCycles 1383740 # Number of cycles IEW is squashing +system.cpu1.iew.iewBlockCycles 13800740 # Number of cycles IEW is blocking +system.cpu1.iew.iewUnblockCycles 226965 # Number of cycles IEW is unblocking +system.cpu1.iew.iewDispatchedInsts 45822265 # Number of instructions dispatched to IQ +system.cpu1.iew.iewDispSquashedInsts 96960 # Number of squashed instructions skipped by dispatch +system.cpu1.iew.iewDispLoadInsts 9300150 # Number of dispatched load instructions +system.cpu1.iew.iewDispStoreInsts 6339076 # Number of dispatched store instructions +system.cpu1.iew.iewDispNonSpecInsts 695770 # Number of dispatched non-speculative instructions +system.cpu1.iew.iewIQFullEvents 48787 # Number of times the IQ has become full, causing a stall +system.cpu1.iew.iewLSQFullEvents 3997 # Number of times the LSQ has become full, causing a stall +system.cpu1.iew.memOrderViolationEvents 15001 # Number of memory order violations +system.cpu1.iew.predictedTakenIncorrect 167673 # Number of branches that were predicted taken incorrectly +system.cpu1.iew.predictedNotTakenIncorrect 132287 # Number of branches that were predicted not taken incorrectly +system.cpu1.iew.branchMispredicts 299960 # Number of branch mispredicts detected at execute +system.cpu1.iew.iewExecutedInsts 58435443 # Number of executed instructions +system.cpu1.iew.iewExecLoadInsts 25502557 # Number of load instructions executed +system.cpu1.iew.iewExecSquashedInsts 735852 # Number of squashed instructions skipped in execute +system.cpu1.iew.exec_swp 0 # number of swp insts executed +system.cpu1.iew.exec_nop 106267 # number of nop insts executed +system.cpu1.iew.exec_refs 31379358 # number of memory reference insts executed +system.cpu1.iew.exec_branches 5453104 # Number of branches executed +system.cpu1.iew.exec_stores 5876801 # Number of stores executed +system.cpu1.iew.exec_rate 0.251862 # Inst execution rate +system.cpu1.iew.wb_sent 58051293 # cumulative count of insts sent to commit +system.cpu1.iew.wb_count 40864920 # cumulative count of insts written-back +system.cpu1.iew.wb_producers 22407090 # num instructions producing a value +system.cpu1.iew.wb_consumers 41228321 # num instructions consuming a value +system.cpu1.iew.wb_penalized 0 # number of instrctions required to write to 'other' IQ +system.cpu1.iew.wb_rate 0.176132 # insts written-back per cycle +system.cpu1.iew.wb_fanout 0.543488 # average fanout of values written-back +system.cpu1.iew.wb_penalized_rate 0 # fraction of instructions written-back that wrote to 'other' IQ +system.cpu1.commit.commitSquashedInsts 8312194 # The number of squashed insts skipped by commit +system.cpu1.commit.commitNonSpecStalls 727777 # The number of times commit has been forced to stall to communicate backwards +system.cpu1.commit.branchMispredicts 259619 # The number of times a branch was mispredicted +system.cpu1.commit.committed_per_cycle::samples 71540244 # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::mean 0.518566 # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::stdev 1.491714 # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::underflows 0 0.00% 0.00% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::0 58151016 81.28% 81.28% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::1 6627858 9.26% 90.55% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::2 1880092 2.63% 93.18% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::3 1040741 1.45% 94.63% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::4 983750 1.38% 96.01% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::5 494100 0.69% 96.70% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::6 697389 0.97% 97.67% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::7 324169 0.45% 98.13% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::8 1341129 1.87% 100.00% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::overflows 0 0.00% 100.00% # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::min_value 0 # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::max_value 8 # Number of insts commited each cycle +system.cpu1.commit.committed_per_cycle::total 71540244 # Number of insts commited each cycle +system.cpu1.commit.committedInsts 28738593 # Number of instructions committed +system.cpu1.commit.committedOps 37098314 # Number of ops (including micro ops) committed +system.cpu1.commit.swp_count 0 # Number of s/w prefetches committed +system.cpu1.commit.refs 13157042 # Number of memory references committed +system.cpu1.commit.loads 7505951 # Number of loads committed +system.cpu1.commit.membars 191336 # Number of memory barriers committed +system.cpu1.commit.branches 4758017 # Number of branches committed +system.cpu1.commit.fp_insts 4715 # Number of committed floating point instructions. +system.cpu1.commit.int_insts 32847444 # Number of committed integer instructions. +system.cpu1.commit.function_calls 475803 # Number of function calls committed. +system.cpu1.commit.bw_lim_events 1341129 # number cycles where commit BW limit reached +system.cpu1.commit.bw_limited 0 # number of insts not committed due to BW limits +system.cpu1.rob.rob_reads 114702650 # The number of ROB reads +system.cpu1.rob.rob_writes 92242025 # The number of ROB writes +system.cpu1.timesIdled 868716 # Number of times that the entire CPU went into an idle state and unscheduled itself +system.cpu1.idleCycles 159089393 # Total number of cycles that the CPU has spent unscheduled due to idling +system.cpu1.quiesceCycles 2323530978 # Total number of cycles that CPU has spent quiesced or waiting for an interrupt +system.cpu1.committedInsts 28667140 # Number of Instructions Simulated +system.cpu1.committedOps 37026861 # Number of Ops (including micro ops) Simulated +system.cpu1.committedInsts_total 28667140 # Number of Instructions Simulated +system.cpu1.cpi 8.093356 # CPI: Cycles Per Instruction +system.cpu1.cpi_total 8.093356 # CPI: Total CPI of All Threads +system.cpu1.ipc 0.123558 # IPC: Instructions Per Cycle +system.cpu1.ipc_total 0.123558 # IPC: Total IPC of All Threads +system.cpu1.int_regfile_reads 264545362 # number of integer regfile reads +system.cpu1.int_regfile_writes 41743183 # number of integer regfile writes +system.cpu1.fp_regfile_reads 22037 # number of floating regfile reads +system.cpu1.fp_regfile_writes 19620 # number of floating regfile writes +system.cpu1.misc_regfile_reads 56567930 # number of misc regfile reads +system.cpu1.misc_regfile_writes 442325 # number of misc regfile writes +system.iocache.replacements 0 # number of replacements +system.iocache.tagsinuse 0 # Cycle average of tags in use +system.iocache.total_refs 0 # Total number of references to valid blocks. +system.iocache.sampled_refs 0 # Sample count of references to valid blocks. +system.iocache.avg_refs nan # Average number of references to valid blocks. +system.iocache.warmup_cycle 0 # Cycle when the warmup percentage was hit. +system.iocache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.iocache.blocked::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked::no_targets 0 # number of cycles access was blocked +system.iocache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.iocache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.iocache.fast_writes 0 # number of fast writes performed +system.iocache.cache_copies 0 # number of cache copies performed +system.iocache.ReadReq_mshr_uncacheable_latency::realview.clcd 1125347676632 # number of ReadReq MSHR uncacheable cycles +system.iocache.ReadReq_mshr_uncacheable_latency::total 1125347676632 # number of ReadReq MSHR uncacheable cycles +system.iocache.overall_mshr_uncacheable_latency::realview.clcd 1125347676632 # number of overall MSHR uncacheable cycles +system.iocache.overall_mshr_uncacheable_latency::total 1125347676632 # number of overall MSHR uncacheable cycles +system.iocache.ReadReq_avg_mshr_uncacheable_latency::realview.clcd inf # average ReadReq mshr uncacheable latency +system.iocache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.iocache.overall_avg_mshr_uncacheable_latency::realview.clcd inf # average overall mshr uncacheable latency +system.iocache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.iocache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu0.kern.inst.arm 0 # number of arm instructions executed +system.cpu0.kern.inst.quiesce 88038 # number of quiesce instructions executed +system.cpu1.kern.inst.arm 0 # number of arm instructions executed +system.cpu1.kern.inst.quiesce 0 # number of quiesce instructions executed + +---------- End Simulation Statistics ---------- diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/system.terminal b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-o3/system.terminal new file mode 100644 index 0000000000000000000000000000000000000000..f6a311dd6ea6ce8630871ad6f3409af36f86a4a7 GIT binary patch literal 5878 zcmbVQYjYaO70uVU%Kzb3<%3Zc(Db|*rlM4kWbcwSHY<>`6_v_0%rvN@d1W4w@UPFg zJ%EMeR_X&MUg7CaF?!k$ED{2o(keP3lA|qr!Z0^$)GB$ zf;bOWvh>L^2d;N0OmsaN(YK7PU^*^oX{z~fOZY62NfPAWUuJ9;6|$7Y)3H;vH?d4d zn9YhVeH?%IOpBljAN;}LCe!yfI*{Hc3mHYwXwa-X5A&M-5gLx;!t_+S=D?)F6GM|C zVVj0W^@-EwSlQEN^G`1$EpXxe)i#Fip;m2-JNVL|Lz&B3#T5x{*I1QRNh+m(!^o5s zku18DWD6CmYE7#mt8Y~={h>Ji`Q zfV-%w^=L9OD9-$akh%(lZ-Ds_Vk4?y~!mN2-=JDNIspH zQ6LT#n2xXMAt)aZ{Rm>ja#bjfF!pOlpUu6fzINz9{Y!nHhm zhi7-mbsWn*i8tnu@98{03a6uEtDV(t(%~dplZHMu2D#Y$*6DP3lviQLHoV7kVd~!$ zJOwId6LraPUHcJLuSt+D89&p5T0Ow#hj3q1QPqfo$Hvc);ffFk>#VN)Lvb#=Pcp2K ztmLB@E%D-lM7_;};0K}(er$TYJmL$6SgIEU#SVfIb`VlOFoZXBPeX7a;a8&t7y2E9 zM%Zd$(&UsDPl?Vw4H0@?3!?eEff%^PX^1#`hRGT&8XY!Tglz~o_B2G2MRhDot;Iqc za|@vr!h<%aa8E-J^;N2><{((bduxwCC3DCR3?VG@v^fD$$(J2Ovx=P>8kPtR+hz#M zFvWKvbcvDo+ajiGCMOt>zCb`g|!Xbmiz#BSlQXZmSH3id0<&43GD5{fWjRQQX zP?Bf7SikA)L+_rhKtdJ;?7%ccB0Et_vmA8mQRTUe&M4<>ujna=YuWFUH5?B5?vO6C zRW=zgX#R!AFmM(^D>zOQo2O2oJ9MSY6_%Gd#Zsrsf3Zc_Jlxdh~ z`B25LgQ7Bg+BR7P;bb!Yj6~ylt24Z#ivQ9D+4dQSe6Rrq^|kg9J^Oy!v*~Vwx1)$% zYIDdf7kv9>N4PXZ)SB3*o=p&bEixZgw>r zQ&}&{HLRTMJLFZ=6|gPRglX$`I8Bk{D>=lLYE^SiblN&M=i@#3FI1ve zl?E=1%qpPO$4>soaE4rPemDPH$`5T* z+*4Anl2oz&w2(3-F58Gd)3*0S9f+!obPEDKC_trA@L!EWolT`~nNS$6!_DI3)ioET z&4Bq36wz}~fEWJy<;M{>!yFCdbu-(tZ5V#nmdd@fXnNGL2okw1)0et#|W5dL9r>e*u-H(WluM<7OKiHvs@g9BrZRFuUH< z_9UP^J)T4n=qt@;7fc~RB|1D)PA<1 zYuWJVvI$?w%w$^Pq6IC`3i!Ph-*Di7Bkt6Ox?zD0?rww7tD~lk`P=)XE=8Fv(|6S_ zwyvk2apgcCZbvN@h2z0(*eSp*h#v8G+6&iZFSQIgsw%! zAlzDSY%nl}yup_bGvpYPZdiyfPS9IlDih;021reg&TzA{tvH@9wk3)ogvDhZC)@B^ z6f4GQZ6YkLydR(>S4%xnHunLzny}2D!6Wr&U?2q+`gB>B>&pyx!J;pmzC|6}getSize() +system.physmem.bytesConsumedWr 6688908 # bytesWritten derated as per pkt->getSize() +system.physmem.servicedByWrQ 26 # Number of read reqs serviced by write Q +system.physmem.neitherReadNorWrite 4517 # Reqs where no action is needed +system.physmem.perBankRdReqs::0 968202 # Track reads on a per bank basis +system.physmem.perBankRdReqs::1 968429 # Track reads on a per bank basis +system.physmem.perBankRdReqs::2 967970 # Track reads on a per bank basis +system.physmem.perBankRdReqs::3 967933 # Track reads on a per bank basis +system.physmem.perBankRdReqs::4 967596 # Track reads on a per bank basis +system.physmem.perBankRdReqs::5 967536 # Track reads on a per bank basis +system.physmem.perBankRdReqs::6 967538 # Track reads on a per bank basis +system.physmem.perBankRdReqs::7 967708 # Track reads on a per bank basis +system.physmem.perBankRdReqs::8 974536 # Track reads on a per bank basis +system.physmem.perBankRdReqs::9 967896 # Track reads on a per bank basis +system.physmem.perBankRdReqs::10 968050 # Track reads on a per bank basis +system.physmem.perBankRdReqs::11 968032 # Track reads on a per bank basis +system.physmem.perBankRdReqs::12 968173 # Track reads on a per bank basis +system.physmem.perBankRdReqs::13 968196 # Track reads on a per bank basis +system.physmem.perBankRdReqs::14 968244 # Track reads on a per bank basis +system.physmem.perBankRdReqs::15 967963 # Track reads on a per bank basis +system.physmem.perBankWrReqs::0 50183 # Track writes on a per bank basis +system.physmem.perBankWrReqs::1 50348 # Track writes on a per bank basis +system.physmem.perBankWrReqs::2 49939 # Track writes on a per bank basis +system.physmem.perBankWrReqs::3 49920 # Track writes on a per bank basis +system.physmem.perBankWrReqs::4 50621 # Track writes on a per bank basis +system.physmem.perBankWrReqs::5 50585 # Track writes on a per bank basis +system.physmem.perBankWrReqs::6 50546 # Track writes on a per bank basis +system.physmem.perBankWrReqs::7 50745 # Track writes on a per bank basis +system.physmem.perBankWrReqs::8 50919 # Track writes on a per bank basis +system.physmem.perBankWrReqs::9 50958 # Track writes on a per bank basis +system.physmem.perBankWrReqs::10 50981 # Track writes on a per bank basis +system.physmem.perBankWrReqs::11 51015 # Track writes on a per bank basis +system.physmem.perBankWrReqs::12 51209 # Track writes on a per bank basis +system.physmem.perBankWrReqs::13 51186 # Track writes on a per bank basis +system.physmem.perBankWrReqs::14 51259 # Track writes on a per bank basis +system.physmem.perBankWrReqs::15 51038 # Track writes on a per bank basis +system.physmem.numRdRetry 0 # Number of times rd buffer was full causing retry +system.physmem.numWrRetry 0 # Number of times wr buffer was full causing retry +system.physmem.totGap 2609472479500 # Total gap between requests +system.physmem.readPktSize::0 0 # Categorize read packet sizes +system.physmem.readPktSize::1 0 # Categorize read packet sizes +system.physmem.readPktSize::2 6673 # Categorize read packet sizes +system.physmem.readPktSize::3 15335424 # Categorize read packet sizes +system.physmem.readPktSize::4 0 # Categorize read packet sizes +system.physmem.readPktSize::5 0 # Categorize read packet sizes +system.physmem.readPktSize::6 151931 # Categorize read packet sizes +system.physmem.readPktSize::7 0 # Categorize read packet sizes +system.physmem.readPktSize::8 0 # Categorize read packet sizes +system.physmem.writePktSize::0 0 # categorize write packet sizes +system.physmem.writePktSize::1 0 # categorize write packet sizes +system.physmem.writePktSize::2 754067 # categorize write packet sizes +system.physmem.writePktSize::3 0 # categorize write packet sizes +system.physmem.writePktSize::4 0 # categorize write packet sizes +system.physmem.writePktSize::5 0 # categorize write packet sizes +system.physmem.writePktSize::6 57385 # categorize write packet sizes +system.physmem.writePktSize::7 0 # categorize write packet sizes +system.physmem.writePktSize::8 0 # categorize write packet sizes +system.physmem.neitherpktsize::0 0 # categorize neither packet sizes +system.physmem.neitherpktsize::1 0 # categorize neither packet sizes +system.physmem.neitherpktsize::2 0 # categorize neither packet sizes +system.physmem.neitherpktsize::3 0 # categorize neither packet sizes +system.physmem.neitherpktsize::4 0 # categorize neither packet sizes +system.physmem.neitherpktsize::5 0 # categorize neither packet sizes +system.physmem.neitherpktsize::6 4517 # categorize neither packet sizes +system.physmem.neitherpktsize::7 0 # categorize neither packet sizes +system.physmem.neitherpktsize::8 0 # categorize neither packet sizes +system.physmem.rdQLenPdf::0 1117981 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::1 962159 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::2 962420 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::3 998543 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::4 2811240 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::5 2816443 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::6 5545406 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::7 36112 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::8 30744 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::9 30521 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::10 30516 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::11 58787 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::12 30559 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::13 58397 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::14 2158 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::15 1941 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::16 75 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::17 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::18 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::19 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::20 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::21 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::22 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::23 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::24 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::25 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::26 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::27 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::28 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::29 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::30 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::31 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::32 0 # What read queue length does an incoming req see +system.physmem.wrQLenPdf::0 35453 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::1 35426 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::2 35407 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::3 35396 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::4 35377 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::5 35365 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::6 35352 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::7 35336 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::8 35316 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::9 35304 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::10 35296 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::11 35282 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::12 35269 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::13 35257 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::14 35242 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::15 35230 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::16 35218 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::17 35202 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::18 35180 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::19 35161 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::20 35144 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::21 35125 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::22 35114 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::23 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::24 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::25 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::26 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::27 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::28 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::29 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::30 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::31 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::32 0 # What write queue length does an incoming req see +system.physmem.totQLat 286738639625 # Total cycles spent in queuing delays +system.physmem.totMemAccLat 365542479625 # Sum of mem lat for all requests +system.physmem.totBusLat 61976008000 # Total cycles spent in databus access +system.physmem.totBankLat 16827832000 # Total cycles spent in bank access +system.physmem.avgQLat 18506.43 # Average queueing delay per request +system.physmem.avgBankLat 1086.09 # Average bank access latency per request +system.physmem.avgBusLat 4000.00 # Average bus latency per request +system.physmem.avgMemAccLat 23592.52 # Average memory access latency +system.physmem.avgRdBW 380.01 # Average achieved read bandwidth in MB/s +system.physmem.avgWrBW 19.90 # Average achieved write bandwidth in MB/s +system.physmem.avgConsumedRdBW 50.75 # Average consumed read bandwidth in MB/s +system.physmem.avgConsumedWrBW 2.56 # Average consumed write bandwidth in MB/s +system.physmem.peakBW 16000.00 # Theoretical peak bandwidth in MB/s +system.physmem.busUtil 2.50 # Data bus utilization in percentage +system.physmem.avgRdQLen 0.14 # Average read queue length over time +system.physmem.avgWrQLen 1.25 # Average write queue length over time +system.physmem.readRowHits 15452119 # Number of row buffer hits during reads +system.physmem.writeRowHits 785190 # Number of row buffer hits during writes +system.physmem.readRowHitRate 99.73 # Row buffer hit rate for reads +system.physmem.writeRowHitRate 96.76 # Row buffer hit rate for writes +system.physmem.avgGap 160036.53 # Average gap between requests +system.realview.nvmem.bytes_read::cpu0.inst 20 # Number of bytes read from this memory +system.realview.nvmem.bytes_read::total 20 # Number of bytes read from this memory +system.realview.nvmem.bytes_inst_read::cpu0.inst 20 # Number of instructions bytes read from this memory +system.realview.nvmem.bytes_inst_read::total 20 # Number of instructions bytes read from this memory +system.realview.nvmem.num_reads::cpu0.inst 5 # Number of read requests responded to by this memory +system.realview.nvmem.num_reads::total 5 # Number of read requests responded to by this memory +system.realview.nvmem.bw_read::cpu0.inst 8 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_read::total 8 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::cpu0.inst 8 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::total 8 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_total::cpu0.inst 8 # Total bandwidth to/from this memory (bytes/s) +system.realview.nvmem.bw_total::total 8 # Total bandwidth to/from this memory (bytes/s) +system.l2c.replacements 61820 # number of replacements +system.l2c.tagsinuse 50921.903557 # Cycle average of tags in use +system.l2c.total_refs 1697937 # Total number of references to valid blocks. +system.l2c.sampled_refs 127204 # Sample count of references to valid blocks. +system.l2c.avg_refs 13.348142 # Average number of references to valid blocks. +system.l2c.warmup_cycle 2557805301500 # Cycle when the warmup percentage was hit. +system.l2c.occ_blocks::writebacks 37911.972595 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.dtb.walker 0.000184 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.itb.walker 0.000639 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.inst 3578.783807 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.data 2862.372936 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.inst 3416.906879 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.data 3151.866517 # Average occupied blocks per requestor +system.l2c.occ_percent::writebacks 0.578491 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.dtb.walker 0.000000 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.itb.walker 0.000000 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.inst 0.054608 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.data 0.043676 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.inst 0.052138 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.data 0.048094 # Average percentage of cache occupancy +system.l2c.occ_percent::total 0.777007 # Average percentage of cache occupancy +system.l2c.ReadReq_hits::cpu0.dtb.walker 9713 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.itb.walker 3454 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.inst 390514 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.data 186540 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.dtb.walker 9847 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.itb.walker 3624 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.inst 453502 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.data 184024 # number of ReadReq hits +system.l2c.ReadReq_hits::total 1241218 # number of ReadReq hits +system.l2c.Writeback_hits::writebacks 596393 # number of Writeback hits +system.l2c.Writeback_hits::total 596393 # number of Writeback hits +system.l2c.UpgradeReq_hits::cpu0.data 17 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu1.data 9 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::total 26 # number of UpgradeReq hits +system.l2c.ReadExReq_hits::cpu0.data 55901 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu1.data 58662 # number of ReadExReq hits +system.l2c.ReadExReq_hits::total 114563 # number of ReadExReq hits +system.l2c.demand_hits::cpu0.dtb.walker 9713 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.itb.walker 3454 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.inst 390514 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.data 242441 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.dtb.walker 9847 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.itb.walker 3624 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.inst 453502 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.data 242686 # number of demand (read+write) hits +system.l2c.demand_hits::total 1355781 # number of demand (read+write) hits +system.l2c.overall_hits::cpu0.dtb.walker 9713 # number of overall hits +system.l2c.overall_hits::cpu0.itb.walker 3454 # number of overall hits +system.l2c.overall_hits::cpu0.inst 390514 # number of overall hits +system.l2c.overall_hits::cpu0.data 242441 # number of overall hits +system.l2c.overall_hits::cpu1.dtb.walker 9847 # number of overall hits +system.l2c.overall_hits::cpu1.itb.walker 3624 # number of overall hits +system.l2c.overall_hits::cpu1.inst 453502 # number of overall hits +system.l2c.overall_hits::cpu1.data 242686 # number of overall hits +system.l2c.overall_hits::total 1355781 # number of overall hits +system.l2c.ReadReq_misses::cpu0.dtb.walker 1 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.itb.walker 2 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.inst 5042 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.data 5096 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.inst 5563 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.data 4755 # number of ReadReq misses +system.l2c.ReadReq_misses::total 20459 # number of ReadReq misses +system.l2c.UpgradeReq_misses::cpu0.data 1441 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::cpu1.data 1437 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::total 2878 # number of UpgradeReq misses +system.l2c.ReadExReq_misses::cpu0.data 65351 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu1.data 67760 # number of ReadExReq misses +system.l2c.ReadExReq_misses::total 133111 # number of ReadExReq misses +system.l2c.demand_misses::cpu0.dtb.walker 1 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.itb.walker 2 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.inst 5042 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.data 70447 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.inst 5563 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.data 72515 # number of demand (read+write) misses +system.l2c.demand_misses::total 153570 # number of demand (read+write) misses +system.l2c.overall_misses::cpu0.dtb.walker 1 # number of overall misses +system.l2c.overall_misses::cpu0.itb.walker 2 # number of overall misses +system.l2c.overall_misses::cpu0.inst 5042 # number of overall misses +system.l2c.overall_misses::cpu0.data 70447 # number of overall misses +system.l2c.overall_misses::cpu1.inst 5563 # number of overall misses +system.l2c.overall_misses::cpu1.data 72515 # number of overall misses +system.l2c.overall_misses::total 153570 # number of overall misses +system.l2c.ReadReq_miss_latency::cpu0.dtb.walker 69000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu0.itb.walker 67500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu0.inst 248651500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu0.data 257607500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.inst 276465500 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::cpu1.data 252538000 # number of ReadReq miss cycles +system.l2c.ReadReq_miss_latency::total 1035399000 # number of ReadReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu0.data 157500 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::cpu1.data 296000 # number of UpgradeReq miss cycles +system.l2c.UpgradeReq_miss_latency::total 453500 # number of UpgradeReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu0.data 2926690000 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::cpu1.data 3113971500 # number of ReadExReq miss cycles +system.l2c.ReadExReq_miss_latency::total 6040661500 # number of ReadExReq miss cycles +system.l2c.demand_miss_latency::cpu0.dtb.walker 69000 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu0.itb.walker 67500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu0.inst 248651500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu0.data 3184297500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.inst 276465500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::cpu1.data 3366509500 # number of demand (read+write) miss cycles +system.l2c.demand_miss_latency::total 7076060500 # number of demand (read+write) miss cycles +system.l2c.overall_miss_latency::cpu0.dtb.walker 69000 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu0.itb.walker 67500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu0.inst 248651500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu0.data 3184297500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.inst 276465500 # number of overall miss cycles +system.l2c.overall_miss_latency::cpu1.data 3366509500 # number of overall miss cycles +system.l2c.overall_miss_latency::total 7076060500 # number of overall miss cycles +system.l2c.ReadReq_accesses::cpu0.dtb.walker 9714 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.itb.walker 3456 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.inst 395556 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.data 191636 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.dtb.walker 9847 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.itb.walker 3624 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.inst 459065 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.data 188779 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::total 1261677 # number of ReadReq accesses(hits+misses) +system.l2c.Writeback_accesses::writebacks 596393 # number of Writeback accesses(hits+misses) +system.l2c.Writeback_accesses::total 596393 # number of Writeback accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu0.data 1458 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu1.data 1446 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::total 2904 # number of UpgradeReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu0.data 121252 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu1.data 126422 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::total 247674 # number of ReadExReq accesses(hits+misses) +system.l2c.demand_accesses::cpu0.dtb.walker 9714 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.itb.walker 3456 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.inst 395556 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.data 312888 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.dtb.walker 9847 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.itb.walker 3624 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.inst 459065 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.data 315201 # number of demand (read+write) accesses +system.l2c.demand_accesses::total 1509351 # number of demand (read+write) accesses +system.l2c.overall_accesses::cpu0.dtb.walker 9714 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.itb.walker 3456 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.inst 395556 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.data 312888 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.dtb.walker 9847 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.itb.walker 3624 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.inst 459065 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.data 315201 # number of overall (read+write) accesses +system.l2c.overall_accesses::total 1509351 # number of overall (read+write) accesses +system.l2c.ReadReq_miss_rate::cpu0.dtb.walker 0.000103 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.itb.walker 0.000579 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.inst 0.012747 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.data 0.026592 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.inst 0.012118 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.data 0.025188 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::total 0.016216 # miss rate for ReadReq accesses +system.l2c.UpgradeReq_miss_rate::cpu0.data 0.988340 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::cpu1.data 0.993776 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::total 0.991047 # miss rate for UpgradeReq accesses +system.l2c.ReadExReq_miss_rate::cpu0.data 0.538968 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu1.data 0.535983 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::total 0.537444 # miss rate for ReadExReq accesses +system.l2c.demand_miss_rate::cpu0.dtb.walker 0.000103 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.itb.walker 0.000579 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.inst 0.012747 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.data 0.225151 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.inst 0.012118 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.data 0.230060 # miss rate for demand accesses +system.l2c.demand_miss_rate::total 0.101746 # miss rate for demand accesses +system.l2c.overall_miss_rate::cpu0.dtb.walker 0.000103 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.itb.walker 0.000579 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.inst 0.012747 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.data 0.225151 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.inst 0.012118 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.data 0.230060 # miss rate for overall accesses +system.l2c.overall_miss_rate::total 0.101746 # miss rate for overall accesses +system.l2c.ReadReq_avg_miss_latency::cpu0.dtb.walker 69000 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu0.itb.walker 33750 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu0.inst 49316.045220 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu0.data 50550.922292 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.inst 49697.195758 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::cpu1.data 53109.989485 # average ReadReq miss latency +system.l2c.ReadReq_avg_miss_latency::total 50608.485263 # average ReadReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu0.data 109.299098 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::cpu1.data 205.984690 # average UpgradeReq miss latency +system.l2c.UpgradeReq_avg_miss_latency::total 157.574705 # average UpgradeReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu0.data 44784.165506 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::cpu1.data 45955.895809 # average ReadExReq miss latency +system.l2c.ReadExReq_avg_miss_latency::total 45380.633456 # average ReadExReq miss latency +system.l2c.demand_avg_miss_latency::cpu0.dtb.walker 69000 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu0.itb.walker 33750 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu0.inst 49316.045220 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu0.data 45201.321561 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.inst 49697.195758 # average overall miss latency +system.l2c.demand_avg_miss_latency::cpu1.data 46425.008619 # average overall miss latency +system.l2c.demand_avg_miss_latency::total 46077.101647 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.dtb.walker 69000 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.itb.walker 33750 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.inst 49316.045220 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu0.data 45201.321561 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.inst 49697.195758 # average overall miss latency +system.l2c.overall_avg_miss_latency::cpu1.data 46425.008619 # average overall miss latency +system.l2c.overall_avg_miss_latency::total 46077.101647 # average overall miss latency +system.l2c.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.l2c.blocked::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked::no_targets 0 # number of cycles access was blocked +system.l2c.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.l2c.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.l2c.fast_writes 0 # number of fast writes performed +system.l2c.cache_copies 0 # number of cache copies performed +system.l2c.writebacks::writebacks 57385 # number of writebacks +system.l2c.writebacks::total 57385 # number of writebacks +system.l2c.ReadReq_mshr_misses::cpu0.dtb.walker 1 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu0.itb.walker 2 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu0.inst 5042 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu0.data 5096 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.inst 5563 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::cpu1.data 4755 # number of ReadReq MSHR misses +system.l2c.ReadReq_mshr_misses::total 20459 # number of ReadReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu0.data 1441 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::cpu1.data 1437 # number of UpgradeReq MSHR misses +system.l2c.UpgradeReq_mshr_misses::total 2878 # number of UpgradeReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu0.data 65351 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::cpu1.data 67760 # number of ReadExReq MSHR misses +system.l2c.ReadExReq_mshr_misses::total 133111 # number of ReadExReq MSHR misses +system.l2c.demand_mshr_misses::cpu0.dtb.walker 1 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu0.itb.walker 2 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu0.inst 5042 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu0.data 70447 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.inst 5563 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::cpu1.data 72515 # number of demand (read+write) MSHR misses +system.l2c.demand_mshr_misses::total 153570 # number of demand (read+write) MSHR misses +system.l2c.overall_mshr_misses::cpu0.dtb.walker 1 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu0.itb.walker 2 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu0.inst 5042 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu0.data 70447 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.inst 5563 # number of overall MSHR misses +system.l2c.overall_mshr_misses::cpu1.data 72515 # number of overall MSHR misses +system.l2c.overall_mshr_misses::total 153570 # number of overall MSHR misses +system.l2c.ReadReq_mshr_miss_latency::cpu0.dtb.walker 56002 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu0.itb.walker 42004 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu0.inst 184664530 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu0.data 192314139 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.inst 205852055 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::cpu1.data 191753450 # number of ReadReq MSHR miss cycles +system.l2c.ReadReq_mshr_miss_latency::total 774682180 # number of ReadReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu0.data 14466412 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::cpu1.data 14371437 # number of UpgradeReq MSHR miss cycles +system.l2c.UpgradeReq_mshr_miss_latency::total 28837849 # number of UpgradeReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu0.data 2097339236 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::cpu1.data 2255705289 # number of ReadExReq MSHR miss cycles +system.l2c.ReadExReq_mshr_miss_latency::total 4353044525 # number of ReadExReq MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.dtb.walker 56002 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.itb.walker 42004 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.inst 184664530 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu0.data 2289653375 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.inst 205852055 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::cpu1.data 2447458739 # number of demand (read+write) MSHR miss cycles +system.l2c.demand_mshr_miss_latency::total 5127726705 # number of demand (read+write) MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.dtb.walker 56002 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.itb.walker 42004 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.inst 184664530 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu0.data 2289653375 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.inst 205852055 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::cpu1.data 2447458739 # number of overall MSHR miss cycles +system.l2c.overall_mshr_miss_latency::total 5127726705 # number of overall MSHR miss cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu0.inst 197466551 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu0.data 84525516564 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::cpu1.data 82169986021 # number of ReadReq MSHR uncacheable cycles +system.l2c.ReadReq_mshr_uncacheable_latency::total 166892969136 # number of ReadReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu0.data 4630774338 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::cpu1.data 4531933372 # number of WriteReq MSHR uncacheable cycles +system.l2c.WriteReq_mshr_uncacheable_latency::total 9162707710 # number of WriteReq MSHR uncacheable cycles +system.l2c.LoadLockedReq_mshr_uncacheable_latency::cpu1.data 76004 # number of LoadLockedReq MSHR uncacheable cycles +system.l2c.LoadLockedReq_mshr_uncacheable_latency::total 76004 # number of LoadLockedReq MSHR uncacheable cycles +system.l2c.StoreCondReq_mshr_uncacheable_latency::cpu1.data 30003 # number of StoreCondReq MSHR uncacheable cycles +system.l2c.StoreCondReq_mshr_uncacheable_latency::total 30003 # number of StoreCondReq MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu0.inst 197466551 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu0.data 89156290902 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::cpu1.data 86701919393 # number of overall MSHR uncacheable cycles +system.l2c.overall_mshr_uncacheable_latency::total 176055676846 # number of overall MSHR uncacheable cycles +system.l2c.ReadReq_mshr_miss_rate::cpu0.dtb.walker 0.000103 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu0.itb.walker 0.000579 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu0.inst 0.012747 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu0.data 0.026592 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.inst 0.012118 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::cpu1.data 0.025188 # mshr miss rate for ReadReq accesses +system.l2c.ReadReq_mshr_miss_rate::total 0.016216 # mshr miss rate for ReadReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu0.data 0.988340 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::cpu1.data 0.993776 # mshr miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_mshr_miss_rate::total 0.991047 # mshr miss rate for UpgradeReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu0.data 0.538968 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::cpu1.data 0.535983 # mshr miss rate for ReadExReq accesses +system.l2c.ReadExReq_mshr_miss_rate::total 0.537444 # mshr miss rate for ReadExReq accesses +system.l2c.demand_mshr_miss_rate::cpu0.dtb.walker 0.000103 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu0.itb.walker 0.000579 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu0.inst 0.012747 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu0.data 0.225151 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.inst 0.012118 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::cpu1.data 0.230060 # mshr miss rate for demand accesses +system.l2c.demand_mshr_miss_rate::total 0.101746 # mshr miss rate for demand accesses +system.l2c.overall_mshr_miss_rate::cpu0.dtb.walker 0.000103 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu0.itb.walker 0.000579 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu0.inst 0.012747 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu0.data 0.225151 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.inst 0.012118 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::cpu1.data 0.230060 # mshr miss rate for overall accesses +system.l2c.overall_mshr_miss_rate::total 0.101746 # mshr miss rate for overall accesses +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.dtb.walker 56002 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.itb.walker 21002 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.inst 36625.253868 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu0.data 37738.253336 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.inst 37003.784828 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::cpu1.data 40326.698212 # average ReadReq mshr miss latency +system.l2c.ReadReq_avg_mshr_miss_latency::total 37865.104844 # average ReadReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu0.data 10039.147814 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::cpu1.data 10001 # average UpgradeReq mshr miss latency +system.l2c.UpgradeReq_avg_mshr_miss_latency::total 10020.100417 # average UpgradeReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu0.data 32093.452832 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::cpu1.data 33289.629413 # average ReadExReq mshr miss latency +system.l2c.ReadExReq_avg_mshr_miss_latency::total 32702.365131 # average ReadExReq mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.dtb.walker 56002 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.itb.walker 21002 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.inst 36625.253868 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu0.data 32501.786804 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.inst 37003.784828 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::cpu1.data 33751.068593 # average overall mshr miss latency +system.l2c.demand_avg_mshr_miss_latency::total 33390.158918 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.dtb.walker 56002 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.itb.walker 21002 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.inst 36625.253868 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu0.data 32501.786804 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.inst 37003.784828 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::cpu1.data 33751.068593 # average overall mshr miss latency +system.l2c.overall_avg_mshr_miss_latency::total 33390.158918 # average overall mshr miss latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu0.inst inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu0.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.l2c.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu0.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.l2c.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.l2c.LoadLockedReq_avg_mshr_uncacheable_latency::cpu1.data inf # average LoadLockedReq mshr uncacheable latency +system.l2c.LoadLockedReq_avg_mshr_uncacheable_latency::total inf # average LoadLockedReq mshr uncacheable latency +system.l2c.StoreCondReq_avg_mshr_uncacheable_latency::cpu1.data inf # average StoreCondReq mshr uncacheable latency +system.l2c.StoreCondReq_avg_mshr_uncacheable_latency::total inf # average StoreCondReq mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu0.inst inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu0.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.l2c.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.l2c.no_allocate_misses 0 # Number of misses that were no-allocate +system.cf0.dma_read_full_pages 0 # Number of full page size DMA reads (not PRD). +system.cf0.dma_read_bytes 0 # Number of bytes transfered via DMA reads (not PRD). +system.cf0.dma_read_txs 0 # Number of DMA read transactions (not PRD). +system.cf0.dma_write_full_pages 0 # Number of full page size DMA writes. +system.cf0.dma_write_bytes 0 # Number of bytes transfered via DMA writes. +system.cf0.dma_write_txs 0 # Number of DMA write transactions. +system.cpu0.dtb.inst_hits 0 # ITB inst hits +system.cpu0.dtb.inst_misses 0 # ITB inst misses +system.cpu0.dtb.read_hits 7346324 # DTB read hits +system.cpu0.dtb.read_misses 6876 # DTB read misses +system.cpu0.dtb.write_hits 5393725 # DTB write hits +system.cpu0.dtb.write_misses 1788 # DTB write misses +system.cpu0.dtb.flush_tlb 1277 # Number of times complete TLB was flushed +system.cpu0.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.dtb.flush_tlb_mva_asid 739 # Number of times TLB was flushed by MVA & ASID +system.cpu0.dtb.flush_tlb_asid 29 # Number of times TLB was flushed by ASID +system.cpu0.dtb.flush_entries 6380 # Number of entries that have been flushed from TLB +system.cpu0.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.dtb.prefetch_faults 138 # Number of TLB faults due to prefetch +system.cpu0.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.dtb.perms_faults 236 # Number of TLB faults due to permissions restrictions +system.cpu0.dtb.read_accesses 7353200 # DTB read accesses +system.cpu0.dtb.write_accesses 5395513 # DTB write accesses +system.cpu0.dtb.inst_accesses 0 # ITB inst accesses +system.cpu0.dtb.hits 12740049 # DTB hits +system.cpu0.dtb.misses 8664 # DTB misses +system.cpu0.dtb.accesses 12748713 # DTB accesses +system.cpu0.itb.inst_hits 30077314 # ITB inst hits +system.cpu0.itb.inst_misses 3618 # ITB inst misses +system.cpu0.itb.read_hits 0 # DTB read hits +system.cpu0.itb.read_misses 0 # DTB read misses +system.cpu0.itb.write_hits 0 # DTB write hits +system.cpu0.itb.write_misses 0 # DTB write misses +system.cpu0.itb.flush_tlb 1277 # Number of times complete TLB was flushed +system.cpu0.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.itb.flush_tlb_mva_asid 739 # Number of times TLB was flushed by MVA & ASID +system.cpu0.itb.flush_tlb_asid 29 # Number of times TLB was flushed by ASID +system.cpu0.itb.flush_entries 2643 # Number of entries that have been flushed from TLB +system.cpu0.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu0.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions +system.cpu0.itb.read_accesses 0 # DTB read accesses +system.cpu0.itb.write_accesses 0 # DTB write accesses +system.cpu0.itb.inst_accesses 30080932 # ITB inst accesses +system.cpu0.itb.hits 30077314 # DTB hits +system.cpu0.itb.misses 3618 # DTB misses +system.cpu0.itb.accesses 30080932 # DTB accesses +system.cpu0.numCycles 2667978103 # number of cpu cycles simulated +system.cpu0.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu0.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu0.committedInsts 29443364 # Number of instructions committed +system.cpu0.committedOps 37313873 # Number of ops (including micro ops) committed +system.cpu0.num_int_alu_accesses 33552683 # Number of integer alu accesses +system.cpu0.num_fp_alu_accesses 4308 # Number of float alu accesses +system.cpu0.num_func_calls 997498 # number of times a function call or return occured +system.cpu0.num_conditional_control_insts 3872350 # number of instructions that are conditional controls +system.cpu0.num_int_insts 33552683 # number of integer instructions +system.cpu0.num_fp_insts 4308 # number of float instructions +system.cpu0.num_int_register_reads 192457043 # number of times the integer registers were read +system.cpu0.num_int_register_writes 36187608 # number of times the integer registers were written +system.cpu0.num_fp_register_reads 3214 # number of times the floating registers were read +system.cpu0.num_fp_register_writes 1096 # number of times the floating registers were written +system.cpu0.num_mem_refs 13317945 # number of memory refs +system.cpu0.num_load_insts 7675788 # Number of load instructions +system.cpu0.num_store_insts 5642157 # Number of store instructions +system.cpu0.num_idle_cycles 1511306252.685236 # Number of idle cycles +system.cpu0.num_busy_cycles 1156671850.314764 # Number of busy cycles +system.cpu0.not_idle_fraction 0.433539 # Percentage of non-idle cycles +system.cpu0.idle_fraction 0.566461 # Percentage of idle cycles +system.cpu0.kern.inst.arm 0 # number of arm instructions executed +system.cpu0.kern.inst.quiesce 83014 # number of quiesce instructions executed +system.cpu0.icache.replacements 855749 # number of replacements +system.cpu0.icache.tagsinuse 510.984146 # Cycle average of tags in use +system.cpu0.icache.total_refs 60643040 # Total number of references to valid blocks. +system.cpu0.icache.sampled_refs 856261 # Sample count of references to valid blocks. +system.cpu0.icache.avg_refs 70.823078 # Average number of references to valid blocks. +system.cpu0.icache.warmup_cycle 18731806000 # Cycle when the warmup percentage was hit. +system.cpu0.icache.occ_blocks::cpu0.inst 165.100321 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu1.inst 345.883825 # Average occupied blocks per requestor +system.cpu0.icache.occ_percent::cpu0.inst 0.322462 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu1.inst 0.675554 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::total 0.998016 # Average percentage of cache occupancy +system.cpu0.icache.ReadReq_hits::cpu0.inst 29681003 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu1.inst 30962037 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::total 60643040 # number of ReadReq hits +system.cpu0.icache.demand_hits::cpu0.inst 29681003 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu1.inst 30962037 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::total 60643040 # number of demand (read+write) hits +system.cpu0.icache.overall_hits::cpu0.inst 29681003 # number of overall hits +system.cpu0.icache.overall_hits::cpu1.inst 30962037 # number of overall hits +system.cpu0.icache.overall_hits::total 60643040 # number of overall hits +system.cpu0.icache.ReadReq_misses::cpu0.inst 396311 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu1.inst 459950 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::total 856261 # number of ReadReq misses +system.cpu0.icache.demand_misses::cpu0.inst 396311 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu1.inst 459950 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::total 856261 # number of demand (read+write) misses +system.cpu0.icache.overall_misses::cpu0.inst 396311 # number of overall misses +system.cpu0.icache.overall_misses::cpu1.inst 459950 # number of overall misses +system.cpu0.icache.overall_misses::total 856261 # number of overall misses +system.cpu0.icache.ReadReq_miss_latency::cpu0.inst 5359552000 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::cpu1.inst 6210691500 # number of ReadReq miss cycles +system.cpu0.icache.ReadReq_miss_latency::total 11570243500 # number of ReadReq miss cycles +system.cpu0.icache.demand_miss_latency::cpu0.inst 5359552000 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::cpu1.inst 6210691500 # number of demand (read+write) miss cycles +system.cpu0.icache.demand_miss_latency::total 11570243500 # number of demand (read+write) miss cycles +system.cpu0.icache.overall_miss_latency::cpu0.inst 5359552000 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::cpu1.inst 6210691500 # number of overall miss cycles +system.cpu0.icache.overall_miss_latency::total 11570243500 # number of overall miss cycles +system.cpu0.icache.ReadReq_accesses::cpu0.inst 30077314 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu1.inst 31421987 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::total 61499301 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.demand_accesses::cpu0.inst 30077314 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu1.inst 31421987 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::total 61499301 # number of demand (read+write) accesses +system.cpu0.icache.overall_accesses::cpu0.inst 30077314 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu1.inst 31421987 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::total 61499301 # number of overall (read+write) accesses +system.cpu0.icache.ReadReq_miss_rate::cpu0.inst 0.013176 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu1.inst 0.014638 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::total 0.013923 # miss rate for ReadReq accesses +system.cpu0.icache.demand_miss_rate::cpu0.inst 0.013176 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu1.inst 0.014638 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::total 0.013923 # miss rate for demand accesses +system.cpu0.icache.overall_miss_rate::cpu0.inst 0.013176 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu1.inst 0.014638 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::total 0.013923 # miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_miss_latency::cpu0.inst 13523.601414 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::cpu1.inst 13502.970975 # average ReadReq miss latency +system.cpu0.icache.ReadReq_avg_miss_latency::total 13512.519547 # average ReadReq miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu0.inst 13523.601414 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::cpu1.inst 13502.970975 # average overall miss latency +system.cpu0.icache.demand_avg_miss_latency::total 13512.519547 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu0.inst 13523.601414 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::cpu1.inst 13502.970975 # average overall miss latency +system.cpu0.icache.overall_avg_miss_latency::total 13512.519547 # average overall miss latency +system.cpu0.icache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.cpu0.icache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.cpu0.icache.blocked::no_mshrs 0 # number of cycles access was blocked +system.cpu0.icache.blocked::no_targets 0 # number of cycles access was blocked +system.cpu0.icache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.cpu0.icache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.cpu0.icache.fast_writes 0 # number of fast writes performed +system.cpu0.icache.cache_copies 0 # number of cache copies performed +system.cpu0.icache.ReadReq_mshr_misses::cpu0.inst 396311 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::cpu1.inst 459950 # number of ReadReq MSHR misses +system.cpu0.icache.ReadReq_mshr_misses::total 856261 # number of ReadReq MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu0.inst 396311 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::cpu1.inst 459950 # number of demand (read+write) MSHR misses +system.cpu0.icache.demand_mshr_misses::total 856261 # number of demand (read+write) MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu0.inst 396311 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::cpu1.inst 459950 # number of overall MSHR misses +system.cpu0.icache.overall_mshr_misses::total 856261 # number of overall MSHR misses +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu0.inst 4566930000 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::cpu1.inst 5290791500 # number of ReadReq MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_miss_latency::total 9857721500 # number of ReadReq MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu0.inst 4566930000 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::cpu1.inst 5290791500 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.demand_mshr_miss_latency::total 9857721500 # number of demand (read+write) MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu0.inst 4566930000 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::cpu1.inst 5290791500 # number of overall MSHR miss cycles +system.cpu0.icache.overall_mshr_miss_latency::total 9857721500 # number of overall MSHR miss cycles +system.cpu0.icache.ReadReq_mshr_uncacheable_latency::cpu0.inst 288141500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.icache.ReadReq_mshr_uncacheable_latency::total 288141500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.icache.overall_mshr_uncacheable_latency::cpu0.inst 288141500 # number of overall MSHR uncacheable cycles +system.cpu0.icache.overall_mshr_uncacheable_latency::total 288141500 # number of overall MSHR uncacheable cycles +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu0.inst 0.013176 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::cpu1.inst 0.014638 # mshr miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_mshr_miss_rate::total 0.013923 # mshr miss rate for ReadReq accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu0.inst 0.013176 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::cpu1.inst 0.014638 # mshr miss rate for demand accesses +system.cpu0.icache.demand_mshr_miss_rate::total 0.013923 # mshr miss rate for demand accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu0.inst 0.013176 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::cpu1.inst 0.014638 # mshr miss rate for overall accesses +system.cpu0.icache.overall_mshr_miss_rate::total 0.013923 # mshr miss rate for overall accesses +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu0.inst 11523.601414 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::cpu1.inst 11502.970975 # average ReadReq mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_miss_latency::total 11512.519547 # average ReadReq mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu0.inst 11523.601414 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::cpu1.inst 11502.970975 # average overall mshr miss latency +system.cpu0.icache.demand_avg_mshr_miss_latency::total 11512.519547 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu0.inst 11523.601414 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::cpu1.inst 11502.970975 # average overall mshr miss latency +system.cpu0.icache.overall_avg_mshr_miss_latency::total 11512.519547 # average overall mshr miss latency +system.cpu0.icache.ReadReq_avg_mshr_uncacheable_latency::cpu0.inst inf # average ReadReq mshr uncacheable latency +system.cpu0.icache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.cpu0.icache.overall_avg_mshr_uncacheable_latency::cpu0.inst inf # average overall mshr uncacheable latency +system.cpu0.icache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.cpu0.icache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu0.dcache.replacements 627576 # number of replacements +system.cpu0.dcache.tagsinuse 511.914984 # Cycle average of tags in use +system.cpu0.dcache.total_refs 23658480 # Total number of references to valid blocks. +system.cpu0.dcache.sampled_refs 628088 # Sample count of references to valid blocks. +system.cpu0.dcache.avg_refs 37.667461 # Average number of references to valid blocks. +system.cpu0.dcache.warmup_cycle 460735000 # Cycle when the warmup percentage was hit. +system.cpu0.dcache.occ_blocks::cpu0.data 142.165809 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu1.data 369.749176 # Average occupied blocks per requestor +system.cpu0.dcache.occ_percent::cpu0.data 0.277668 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu1.data 0.722166 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::total 0.999834 # Average percentage of cache occupancy +system.cpu0.dcache.ReadReq_hits::cpu0.data 6448677 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu1.data 6748535 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::total 13197212 # number of ReadReq hits +system.cpu0.dcache.WriteReq_hits::cpu0.data 4778089 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu1.data 5196213 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::total 9974302 # number of WriteReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu0.data 105697 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu1.data 130631 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::total 236328 # number of LoadLockedReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu0.data 111573 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu1.data 136161 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::total 247734 # number of StoreCondReq hits +system.cpu0.dcache.demand_hits::cpu0.data 11226766 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu1.data 11944748 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::total 23171514 # number of demand (read+write) hits +system.cpu0.dcache.overall_hits::cpu0.data 11226766 # number of overall hits +system.cpu0.dcache.overall_hits::cpu1.data 11944748 # number of overall hits +system.cpu0.dcache.overall_hits::total 23171514 # number of overall hits +system.cpu0.dcache.ReadReq_misses::cpu0.data 185759 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu1.data 183249 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::total 369008 # number of ReadReq misses +system.cpu0.dcache.WriteReq_misses::cpu0.data 122710 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu1.data 127868 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::total 250578 # number of WriteReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu0.data 5877 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu1.data 5530 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::total 11407 # number of LoadLockedReq misses +system.cpu0.dcache.demand_misses::cpu0.data 308469 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu1.data 311117 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::total 619586 # number of demand (read+write) misses +system.cpu0.dcache.overall_misses::cpu0.data 308469 # number of overall misses +system.cpu0.dcache.overall_misses::cpu1.data 311117 # number of overall misses +system.cpu0.dcache.overall_misses::total 619586 # number of overall misses +system.cpu0.dcache.ReadReq_miss_latency::cpu0.data 2627565000 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::cpu1.data 2598558000 # number of ReadReq miss cycles +system.cpu0.dcache.ReadReq_miss_latency::total 5226123000 # number of ReadReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu0.data 3886745500 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::cpu1.data 4117005000 # number of WriteReq miss cycles +system.cpu0.dcache.WriteReq_miss_latency::total 8003750500 # number of WriteReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu0.data 81831500 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::cpu1.data 73520000 # number of LoadLockedReq miss cycles +system.cpu0.dcache.LoadLockedReq_miss_latency::total 155351500 # number of LoadLockedReq miss cycles +system.cpu0.dcache.demand_miss_latency::cpu0.data 6514310500 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::cpu1.data 6715563000 # number of demand (read+write) miss cycles +system.cpu0.dcache.demand_miss_latency::total 13229873500 # number of demand (read+write) miss cycles +system.cpu0.dcache.overall_miss_latency::cpu0.data 6514310500 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::cpu1.data 6715563000 # number of overall miss cycles +system.cpu0.dcache.overall_miss_latency::total 13229873500 # number of overall miss cycles +system.cpu0.dcache.ReadReq_accesses::cpu0.data 6634436 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu1.data 6931784 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::total 13566220 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu0.data 4900799 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu1.data 5324081 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::total 10224880 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu0.data 111574 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu1.data 136161 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::total 247735 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu0.data 111573 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu1.data 136161 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::total 247734 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.demand_accesses::cpu0.data 11535235 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu1.data 12255865 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::total 23791100 # number of demand (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu0.data 11535235 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu1.data 12255865 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::total 23791100 # number of overall (read+write) accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu0.data 0.027999 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu1.data 0.026436 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::total 0.027201 # miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu0.data 0.025039 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu1.data 0.024017 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::total 0.024507 # miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu0.data 0.052674 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu1.data 0.040614 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::total 0.046045 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.demand_miss_rate::cpu0.data 0.026741 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu1.data 0.025385 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::total 0.026043 # miss rate for demand accesses +system.cpu0.dcache.overall_miss_rate::cpu0.data 0.026741 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu1.data 0.025385 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::total 0.026043 # miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu0.data 14145.021237 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::cpu1.data 14180.475746 # average ReadReq miss latency +system.cpu0.dcache.ReadReq_avg_miss_latency::total 14162.627911 # average ReadReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu0.data 31674.236004 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::cpu1.data 32197.305033 # average WriteReq miss latency +system.cpu0.dcache.WriteReq_avg_miss_latency::total 31941.154052 # average WriteReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu0.data 13924.025864 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::cpu1.data 13294.755877 # average LoadLockedReq miss latency +system.cpu0.dcache.LoadLockedReq_avg_miss_latency::total 13618.962041 # average LoadLockedReq miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu0.data 21118.201505 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::cpu1.data 21585.329635 # average overall miss latency +system.cpu0.dcache.demand_avg_miss_latency::total 21352.763781 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu0.data 21118.201505 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::cpu1.data 21585.329635 # average overall miss latency +system.cpu0.dcache.overall_avg_miss_latency::total 21352.763781 # average overall miss latency +system.cpu0.dcache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.cpu0.dcache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_mshrs 0 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_targets 0 # number of cycles access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.cpu0.dcache.fast_writes 0 # number of fast writes performed +system.cpu0.dcache.cache_copies 0 # number of cache copies performed +system.cpu0.dcache.writebacks::writebacks 596393 # number of writebacks +system.cpu0.dcache.writebacks::total 596393 # number of writebacks +system.cpu0.dcache.ReadReq_mshr_misses::cpu0.data 185759 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::cpu1.data 183249 # number of ReadReq MSHR misses +system.cpu0.dcache.ReadReq_mshr_misses::total 369008 # number of ReadReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu0.data 122710 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::cpu1.data 127868 # number of WriteReq MSHR misses +system.cpu0.dcache.WriteReq_mshr_misses::total 250578 # number of WriteReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu0.data 5877 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::cpu1.data 5530 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.LoadLockedReq_mshr_misses::total 11407 # number of LoadLockedReq MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu0.data 308469 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::cpu1.data 311117 # number of demand (read+write) MSHR misses +system.cpu0.dcache.demand_mshr_misses::total 619586 # number of demand (read+write) MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu0.data 308469 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::cpu1.data 311117 # number of overall MSHR misses +system.cpu0.dcache.overall_mshr_misses::total 619586 # number of overall MSHR misses +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu0.data 2256047000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::cpu1.data 2232060000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_miss_latency::total 4488107000 # number of ReadReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu0.data 3641325500 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::cpu1.data 3861269000 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.WriteReq_mshr_miss_latency::total 7502594500 # number of WriteReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu0.data 70077500 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::cpu1.data 62460000 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.LoadLockedReq_mshr_miss_latency::total 132537500 # number of LoadLockedReq MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu0.data 5897372500 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::cpu1.data 6093329000 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.demand_mshr_miss_latency::total 11990701500 # number of demand (read+write) MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu0.data 5897372500 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::cpu1.data 6093329000 # number of overall MSHR miss cycles +system.cpu0.dcache.overall_mshr_miss_latency::total 11990701500 # number of overall MSHR miss cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu0.data 92330241000 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::cpu1.data 89759244500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_uncacheable_latency::total 182089485500 # number of ReadReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu0.data 9446181000 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::cpu1.data 9255751500 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.WriteReq_mshr_uncacheable_latency::total 18701932500 # number of WriteReq MSHR uncacheable cycles +system.cpu0.dcache.LoadLockedReq_mshr_uncacheable_latency::cpu1.data 117500 # number of LoadLockedReq MSHR uncacheable cycles +system.cpu0.dcache.LoadLockedReq_mshr_uncacheable_latency::total 117500 # number of LoadLockedReq MSHR uncacheable cycles +system.cpu0.dcache.StoreCondReq_mshr_uncacheable_latency::cpu1.data 69000 # number of StoreCondReq MSHR uncacheable cycles +system.cpu0.dcache.StoreCondReq_mshr_uncacheable_latency::total 69000 # number of StoreCondReq MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu0.data 101776422000 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::cpu1.data 99014996000 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.overall_mshr_uncacheable_latency::total 200791418000 # number of overall MSHR uncacheable cycles +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu0.data 0.027999 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::cpu1.data 0.026436 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_mshr_miss_rate::total 0.027201 # mshr miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu0.data 0.025039 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::cpu1.data 0.024017 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_mshr_miss_rate::total 0.024507 # mshr miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu0.data 0.052674 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::cpu1.data 0.040614 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_mshr_miss_rate::total 0.046045 # mshr miss rate for LoadLockedReq accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu0.data 0.026741 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::cpu1.data 0.025385 # mshr miss rate for demand accesses +system.cpu0.dcache.demand_mshr_miss_rate::total 0.026043 # mshr miss rate for demand accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu0.data 0.026741 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::cpu1.data 0.025385 # mshr miss rate for overall accesses +system.cpu0.dcache.overall_mshr_miss_rate::total 0.026043 # mshr miss rate for overall accesses +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu0.data 12145.021237 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::cpu1.data 12180.475746 # average ReadReq mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_miss_latency::total 12162.627911 # average ReadReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu0.data 29674.236004 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::cpu1.data 30197.305033 # average WriteReq mshr miss latency +system.cpu0.dcache.WriteReq_avg_mshr_miss_latency::total 29941.154052 # average WriteReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu0.data 11924.025864 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::cpu1.data 11294.755877 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_miss_latency::total 11618.962041 # average LoadLockedReq mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu0.data 19118.201505 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::cpu1.data 19585.329635 # average overall mshr miss latency +system.cpu0.dcache.demand_avg_mshr_miss_latency::total 19352.763781 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu0.data 19118.201505 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::cpu1.data 19585.329635 # average overall mshr miss latency +system.cpu0.dcache.overall_avg_mshr_miss_latency::total 19352.763781 # average overall mshr miss latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu0.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::cpu1.data inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu0.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::cpu1.data inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.WriteReq_avg_mshr_uncacheable_latency::total inf # average WriteReq mshr uncacheable latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_uncacheable_latency::cpu1.data inf # average LoadLockedReq mshr uncacheable latency +system.cpu0.dcache.LoadLockedReq_avg_mshr_uncacheable_latency::total inf # average LoadLockedReq mshr uncacheable latency +system.cpu0.dcache.StoreCondReq_avg_mshr_uncacheable_latency::cpu1.data inf # average StoreCondReq mshr uncacheable latency +system.cpu0.dcache.StoreCondReq_avg_mshr_uncacheable_latency::total inf # average StoreCondReq mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu0.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::cpu1.data inf # average overall mshr uncacheable latency +system.cpu0.dcache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.cpu0.dcache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu1.dtb.inst_hits 0 # ITB inst hits +system.cpu1.dtb.inst_misses 0 # ITB inst misses +system.cpu1.dtb.read_hits 7651718 # DTB read hits +system.cpu1.dtb.read_misses 6996 # DTB read misses +system.cpu1.dtb.write_hits 5838563 # DTB write hits +system.cpu1.dtb.write_misses 1808 # DTB write misses +system.cpu1.dtb.flush_tlb 1276 # Number of times complete TLB was flushed +system.cpu1.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.dtb.flush_tlb_mva_asid 700 # Number of times TLB was flushed by MVA & ASID +system.cpu1.dtb.flush_tlb_asid 34 # Number of times TLB was flushed by ASID +system.cpu1.dtb.flush_entries 6464 # Number of entries that have been flushed from TLB +system.cpu1.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.dtb.prefetch_faults 130 # Number of TLB faults due to prefetch +system.cpu1.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.dtb.perms_faults 216 # Number of TLB faults due to permissions restrictions +system.cpu1.dtb.read_accesses 7658714 # DTB read accesses +system.cpu1.dtb.write_accesses 5840371 # DTB write accesses +system.cpu1.dtb.inst_accesses 0 # ITB inst accesses +system.cpu1.dtb.hits 13490281 # DTB hits +system.cpu1.dtb.misses 8804 # DTB misses +system.cpu1.dtb.accesses 13499085 # DTB accesses +system.cpu1.itb.inst_hits 31421987 # ITB inst hits +system.cpu1.itb.inst_misses 3616 # ITB inst misses +system.cpu1.itb.read_hits 0 # DTB read hits +system.cpu1.itb.read_misses 0 # DTB read misses +system.cpu1.itb.write_hits 0 # DTB write hits +system.cpu1.itb.write_misses 0 # DTB write misses +system.cpu1.itb.flush_tlb 1276 # Number of times complete TLB was flushed +system.cpu1.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.itb.flush_tlb_mva_asid 700 # Number of times TLB was flushed by MVA & ASID +system.cpu1.itb.flush_tlb_asid 34 # Number of times TLB was flushed by ASID +system.cpu1.itb.flush_entries 2808 # Number of entries that have been flushed from TLB +system.cpu1.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu1.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions +system.cpu1.itb.read_accesses 0 # DTB read accesses +system.cpu1.itb.write_accesses 0 # DTB write accesses +system.cpu1.itb.inst_accesses 31425603 # ITB inst accesses +system.cpu1.itb.hits 31421987 # DTB hits +system.cpu1.itb.misses 3616 # DTB misses +system.cpu1.itb.accesses 31425603 # DTB accesses +system.cpu1.numCycles 2550975631 # number of cpu cycles simulated +system.cpu1.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu1.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu1.committedInsts 30761879 # Number of instructions committed +system.cpu1.committedOps 39296860 # Number of ops (including micro ops) committed +system.cpu1.num_int_alu_accesses 35324832 # Number of integer alu accesses +system.cpu1.num_fp_alu_accesses 5961 # Number of float alu accesses +system.cpu1.num_func_calls 1142639 # number of times a function call or return occured +system.cpu1.num_conditional_control_insts 4076383 # number of instructions that are conditional controls +system.cpu1.num_int_insts 35324832 # number of integer instructions +system.cpu1.num_fp_insts 5961 # number of float instructions +system.cpu1.num_int_register_reads 202353181 # number of times the integer registers were read +system.cpu1.num_int_register_writes 37998347 # number of times the integer registers were written +system.cpu1.num_fp_register_reads 4279 # number of times the floating registers were read +system.cpu1.num_fp_register_writes 1684 # number of times the floating registers were written +system.cpu1.num_mem_refs 14079956 # number of memory refs +system.cpu1.num_load_insts 7986446 # Number of load instructions +system.cpu1.num_store_insts 6093510 # Number of store instructions +system.cpu1.num_idle_cycles 3341647478.137703 # Number of idle cycles +system.cpu1.num_busy_cycles -790671847.137703 # Number of busy cycles +system.cpu1.not_idle_fraction -0.309949 # Percentage of non-idle cycles +system.cpu1.idle_fraction 1.309949 # Percentage of idle cycles +system.cpu1.kern.inst.arm 0 # number of arm instructions executed +system.cpu1.kern.inst.quiesce 0 # number of quiesce instructions executed +system.iocache.replacements 0 # number of replacements +system.iocache.tagsinuse 0 # Cycle average of tags in use +system.iocache.total_refs 0 # Total number of references to valid blocks. +system.iocache.sampled_refs 0 # Sample count of references to valid blocks. +system.iocache.avg_refs nan # Average number of references to valid blocks. +system.iocache.warmup_cycle 0 # Cycle when the warmup percentage was hit. +system.iocache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.iocache.blocked::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked::no_targets 0 # number of cycles access was blocked +system.iocache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.iocache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.iocache.fast_writes 0 # number of fast writes performed +system.iocache.cache_copies 0 # number of cache copies performed +system.iocache.ReadReq_mshr_uncacheable_latency::realview.clcd 1128670778319 # number of ReadReq MSHR uncacheable cycles +system.iocache.ReadReq_mshr_uncacheable_latency::total 1128670778319 # number of ReadReq MSHR uncacheable cycles +system.iocache.overall_mshr_uncacheable_latency::realview.clcd 1128670778319 # number of overall MSHR uncacheable cycles +system.iocache.overall_mshr_uncacheable_latency::total 1128670778319 # number of overall MSHR uncacheable cycles +system.iocache.ReadReq_avg_mshr_uncacheable_latency::realview.clcd inf # average ReadReq mshr uncacheable latency +system.iocache.ReadReq_avg_mshr_uncacheable_latency::total inf # average ReadReq mshr uncacheable latency +system.iocache.overall_avg_mshr_uncacheable_latency::realview.clcd inf # average overall mshr uncacheable latency +system.iocache.overall_avg_mshr_uncacheable_latency::total inf # average overall mshr uncacheable latency +system.iocache.no_allocate_misses 0 # Number of misses that were no-allocate + +---------- End Simulation Statistics ---------- diff --git a/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/system.terminal b/tests/long/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-timing/system.terminal new file mode 100644 index 0000000000000000000000000000000000000000..8dd192b7e50297c40e07d6714d47787af7597611 GIT binary patch literal 5878 zcmbVQYj4}g746ps$bYy%KSb_IGKVjbL|s(2lU;SAL~G0GqJ|MrHukvAA`Sm?_ zD9O~y$}XzJvMJ4+x$k@K+!9{K(9o|t`lzzznI2_XsXQZd=ngG!=nYmfb*NW`Dpvpa zCS`F#y;T(L*4aa6Xj1PwZ^}rPYx?nrAAnR#G7TYyhBdIo37ybi1YJ*OGzIdwS&?wa z6oK#p%cJ*~bG`WOo42?75?#!00vcaUA4fDR^GH@zUec}Q7|RGU-%%+al@`{Zo?dp+ zr>Hy=M&wx0Xn6$i%VajEEYHG3g_X)y6o++4Q5fCJJ{^3ivZ^kdsAik!HHWBEY*m@m zq7JTPn0!(4iDu`&9xk1%vb^Loo2-;kzRFZ3W2(ay8PBaB4C8RuBG2n6&#F9;bSuL$ zS>p-%%Pd?ZGCtfem1z!N6nUbebwKYgE+|%&Ufie4ox1c?!c$?A%|`=E(I97ZY7h$Mh{{E0~T;dNnny+!8)ZWtxV?_qQ3FO{J`4`S_Yv-9s$X z5oWuiPah{AKGPzsqx)cVc*yMil@6r$=|aXaBpS8*PNSlse?*4kxG+6ct~oNP^n`Cx zENs*8s5zo-ft>?ww&3_S(hJVKzuJcH9!k~4xP>nbI$U$!sH7&L?V6~nu1IC{Zy1^K zGL~hZ(tM#3Rj+AP=1swIm1jeuIXkRXl061X9b*41%S z4!E?u4^dpE7%XO(Z!q~4ptzSR`(MM^pJzA`5S)Ck$T=KSco0zYn3D@%M z9iH7M*KsWODBgraexURGRX80TTj{KRn+`|O+B6KPHOSfKw@#-+RbCc5w&6XT3RC~4 z@G(>go2XBY>)H>fdToOA$@rP>)#@HLKZN_D%DO=mJhXns8mZZn;6lHH z&p--Bw-6)OI1Z8IPcT_4MJvNbil_?##~z1B^SDW5rKMPC zV{Rd|KzPvR6z*{dqM^!E-711ze75!oL^6GTUA(a-1Op&=Ech%uxF#Z{< z28)opM=WbZB{$!ENfpW(`W>O1qZC%Vp7sjFr>n1%t6#1Ic<2znLaUFzMreBvTpwwn zP+G&9Onds%w>~FWo;3PUTVz!qZITNeDjYIMj6C0Q)9MiQqAi#KDrW*VL~)a*Ybfxj zB1xX{Z0&b;;fXuC00~)?umjT&iR?rz%?r@22UQd@KB0oMy{5-7Y2-u21Lr zDxXef*VOBl<^7~IUHgs-6@N{`=K$!-uu1Ao2d5Nql{P6Jjs4nevslx-$?ETv!QXZi zPp~e`*57p2i7?pOUp1-3Bq8nrCXlsK}cBw4>WLkKBn16@L#$aU(G2l6+)-0l;zt{ z3Zeu}Sk^{B+a`-3oK7d7k!W0Rb%ys;`CmFC+dkot4>!P|zE&5}HiUb(?b&p@!P`;9 zK6N?dmJ7apvm@O9=l&PQ?wKxBTBscHUrP9cDs(OS8$KBrf9LE%`0tMMeA|J+F0Ln3 zHH&HuE2sMo*)8>j2e%4a*P z$`WSVt`{TAMEw1pufd*PcGwoAnan_M8t8bODG0-S;T=Ywm<8^L!V8@1A=u^@GeX{= z$*T&L=~d>T_a9{*FMuA)$AAk3TK5{k`lCob$25=v`e{egDh{!wS~Z*#y{^oyetahX zg-Wy&$ul^EStQhe9By%m|HUZO+f?d~2~9EL z6D~epTyjy`44C&}89#+3c;T;KejIZ%EYLt+4s%Cf{@Ar`OVwUlv^{EBhN;|^=}oJG zm7Z;M&8>dE;TR@TyNm-29L#Apnb%o@(h9w}cO742`6K@hidV`2p(&8gUmSS8Rr0A`KJgWC@TVq2ivSDlLDJGKqo)0{_Hlxvz@pPKC>mv8RuJVAk;@R$pB zg2o!j&S?%6Z^P)X$>GOHc%3XrZZXxfR5* z1!>;J3oME%r78+_SnTCmk_tH9uf`iey0u>v$I1^-Y4(2wYkd;3P+eVq!!Munrh zYi$>qz(E9{_8+9eT}nL|M|?vBI!i3I{@sp-BG6Zw%`TWif=cvwrktLiI%xS*#be3NC_)G*cZm5fzIx$nE%pv~ z_I!y8tIjqDadWtB%2zViGOKXWf);3n{N9Og9`-E+)8WqcK;5vw26wkX=+$xC#)9pA zQlH{nR@u9H7h9LJ&$x1+4>#kEh^B2KQ*ly=TM#|s@1!>!A8oBG!?>>bf-P=cw~`sS zQbg4Xw@d2+mrNa83?rx|-Oa5Rb`Y92Km$<8&55p$aR_mtvI5gB+)r2G6U+okj{$hS z$WbZ@g_*A-ke}7*vRH+|L#m8Z%+e}1PW8_AeJhJO#IR&KT(4W$I&Y%;2UY7DAb$)K zWWk(2tH5|r@n1VYv77$7w{I>F7( zw&Hk!*p?^_;hLzc&}_qNQLGqeW1Myclll)3lB=bjDBJr0TuoT!&)|{zGcb@68v{CT zs`Yt}yI?UC&d{PB?sAQR;S7us86q%80sc6@p7Xq+H!&$bgT@^!4gA`u)Kib^uiSUC!kMgjj*WJoI@_wxs9ufw{Pb64gE9B d2=pJ7iT|5)Gru6=kKi&G5GE*U3=iL5_&?fDQD*=E literal 0 HcmV?d00001 diff --git a/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/config.ini b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/config.ini new file mode 100644 index 000000000..a1eb19238 --- /dev/null +++ b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/config.ini @@ -0,0 +1,803 @@ +[root] +type=Root +children=system +full_system=true +time_sync_enable=false +time_sync_period=100000000000 +time_sync_spin_threshold=100000000 + +[system] +type=LinuxArmSystem +children=bridge cf0 cpu0 cpu1 intrctrl iobus iocache l2c membus physmem realview terminal toL2Bus vncserver +atags_addr=256 +boot_loader=/arm/scratch/sysexplr/dist/binaries/boot.arm +boot_osflags=earlyprintk console=ttyAMA0 lpj=19988480 norandmaps rw loglevel=8 mem=128MB root=/dev/sda1 +clock=1000 +dtb_filename= +early_kernel_symbols=false +enable_context_switch_stats_dump=false +flags_addr=268435504 +gic_cpu_addr=520093952 +init_param=0 +kernel=/arm/scratch/sysexplr/dist/binaries/vmlinux.arm.smp.fb.2.6.38.8 +load_addr_mask=268435455 +machine_type=RealView_PBX +mem_mode=atomic +mem_ranges=0:134217727 +memories=system.physmem system.realview.nvmem +multi_proc=true +num_work_ids=16 +panic_on_oops=true +panic_on_panic=true +readfile=tests/halt.sh +symbolfile= +work_begin_ckpt_count=0 +work_begin_cpu_id_exit=-1 +work_begin_exit_count=0 +work_cpus_ckpt_count=0 +work_end_ckpt_count=0 +work_end_exit_count=0 +work_item_id=-1 +system_port=system.membus.slave[0] + +[system.bridge] +type=Bridge +clock=1000 +delay=50000 +ranges=268435456:520093695 1073741824:1610612735 +req_size=16 +resp_size=16 +master=system.iobus.slave[0] +slave=system.membus.master[0] + +[system.cf0] +type=IdeDisk +children=image +delay=1000000 +driveID=master +image=system.cf0.image + +[system.cf0.image] +type=CowDiskImage +children=child +child=system.cf0.image.child +image_file= +read_only=false +table_size=65536 + +[system.cf0.image.child] +type=RawDiskImage +image_file=/arm/scratch/sysexplr/dist/disks/linux-arm-ael.img +read_only=true + +[system.cpu0] +type=AtomicSimpleCPU +children=dcache dtb icache interrupts isa itb tracer +checker=Null +clock=500 +cpu_id=0 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu0.dtb +fastmem=false +function_trace=false +function_trace_start=0 +interrupts=system.cpu0.interrupts +isa=system.cpu0.isa +itb=system.cpu0.itb +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +numThreads=1 +profile=0 +progress_interval=0 +simulate_data_stalls=false +simulate_inst_stalls=false +switched_out=false +system=system +tracer=system.cpu0.tracer +width=1 +workload= +dcache_port=system.cpu0.dcache.cpu_side +icache_port=system.cpu0.icache.cpu_side + +[system.cpu0.dcache] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=4 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=2 +is_top_level=true +max_miss_count=0 +mshrs=4 +prefetch_on_access=false +prefetcher=Null +response_latency=2 +size=32768 +system=system +tgts_per_mshr=20 +two_queue=false +write_buffers=8 +cpu_side=system.cpu0.dcache_port +mem_side=system.toL2Bus.slave[1] + +[system.cpu0.dtb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu0.dtb.walker + +[system.cpu0.dtb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system +port=system.toL2Bus.slave[3] + +[system.cpu0.icache] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=1 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=2 +is_top_level=true +max_miss_count=0 +mshrs=4 +prefetch_on_access=false +prefetcher=Null +response_latency=2 +size=32768 +system=system +tgts_per_mshr=20 +two_queue=false +write_buffers=8 +cpu_side=system.cpu0.icache_port +mem_side=system.toL2Bus.slave[0] + +[system.cpu0.interrupts] +type=ArmInterrupts + +[system.cpu0.isa] +type=ArmISA +fpsid=1090793632 +id_isar0=34607377 +id_isar1=34677009 +id_isar2=555950401 +id_isar3=17899825 +id_isar4=268501314 +id_isar5=0 +id_mmfr0=3 +id_mmfr1=0 +id_mmfr2=19070976 +id_mmfr3=4027589137 +id_pfr0=49 +id_pfr1=1 +midr=890224640 + +[system.cpu0.itb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu0.itb.walker + +[system.cpu0.itb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system +port=system.toL2Bus.slave[2] + +[system.cpu0.tracer] +type=ExeTracer + +[system.cpu1] +type=AtomicSimpleCPU +children=dtb interrupts isa itb tracer +checker=Null +clock=500 +cpu_id=0 +do_checkpoint_insts=true +do_quiesce=true +do_statistics_insts=true +dtb=system.cpu1.dtb +fastmem=false +function_trace=false +function_trace_start=0 +interrupts=system.cpu1.interrupts +isa=system.cpu1.isa +itb=system.cpu1.itb +max_insts_all_threads=0 +max_insts_any_thread=0 +max_loads_all_threads=0 +max_loads_any_thread=0 +numThreads=1 +profile=0 +progress_interval=0 +simulate_data_stalls=false +simulate_inst_stalls=false +switched_out=true +system=system +tracer=system.cpu1.tracer +width=1 +workload= + +[system.cpu1.dtb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu1.dtb.walker + +[system.cpu1.dtb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system + +[system.cpu1.interrupts] +type=ArmInterrupts + +[system.cpu1.isa] +type=ArmISA +fpsid=1090793632 +id_isar0=34607377 +id_isar1=34677009 +id_isar2=555950401 +id_isar3=17899825 +id_isar4=268501314 +id_isar5=0 +id_mmfr0=3 +id_mmfr1=0 +id_mmfr2=19070976 +id_mmfr3=4027589137 +id_pfr0=49 +id_pfr1=1 +midr=890224640 + +[system.cpu1.itb] +type=ArmTLB +children=walker +size=64 +walker=system.cpu1.itb.walker + +[system.cpu1.itb.walker] +type=ArmTableWalker +clock=500 +num_squash_per_cycle=2 +sys=system + +[system.cpu1.tracer] +type=ExeTracer + +[system.intrctrl] +type=IntrControl +sys=system + +[system.iobus] +type=NoncoherentBus +block_size=64 +clock=1000 +header_cycles=1 +use_default_range=false +width=8 +master=system.realview.uart.pio system.realview.realview_io.pio system.realview.timer0.pio system.realview.timer1.pio system.realview.clcd.pio system.realview.kmi0.pio system.realview.kmi1.pio system.realview.cf_ctrl.pio system.realview.cf_ctrl.config system.realview.dmac_fake.pio system.realview.uart1_fake.pio system.realview.uart2_fake.pio system.realview.uart3_fake.pio system.realview.smc_fake.pio system.realview.sp810_fake.pio system.realview.watchdog_fake.pio system.realview.gpio0_fake.pio system.realview.gpio1_fake.pio system.realview.gpio2_fake.pio system.realview.ssp_fake.pio system.realview.sci_fake.pio system.realview.aaci_fake.pio system.realview.mmc_fake.pio system.realview.rtc.pio system.realview.flash_fake.pio system.iocache.cpu_side +slave=system.bridge.master system.realview.clcd.dma system.realview.cf_ctrl.dma + +[system.iocache] +type=BaseCache +addr_ranges=0:134217727 +assoc=8 +block_size=64 +clock=1000 +forward_snoops=false +hit_latency=50 +is_top_level=true +max_miss_count=0 +mshrs=20 +prefetch_on_access=false +prefetcher=Null +response_latency=50 +size=1024 +system=system +tgts_per_mshr=12 +two_queue=false +write_buffers=8 +cpu_side=system.iobus.master[25] +mem_side=system.membus.slave[2] + +[system.l2c] +type=BaseCache +addr_ranges=0:18446744073709551615 +assoc=8 +block_size=64 +clock=500 +forward_snoops=true +hit_latency=20 +is_top_level=false +max_miss_count=0 +mshrs=20 +prefetch_on_access=false +prefetcher=Null +response_latency=20 +size=4194304 +system=system +tgts_per_mshr=12 +two_queue=false +write_buffers=8 +cpu_side=system.toL2Bus.master[0] +mem_side=system.membus.slave[1] + +[system.membus] +type=CoherentBus +children=badaddr_responder +block_size=64 +clock=1000 +header_cycles=1 +use_default_range=false +width=8 +default=system.membus.badaddr_responder.pio +master=system.bridge.slave system.realview.nvmem.port system.physmem.port system.realview.gic.pio system.realview.l2x0_fake.pio system.realview.a9scu.pio system.realview.local_cpu_timer.pio +slave=system.system_port system.l2c.mem_side system.iocache.mem_side + +[system.membus.badaddr_responder] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=0 +pio_latency=100000 +pio_size=8 +ret_bad_addr=true +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access=warn +pio=system.membus.default + +[system.physmem] +type=SimpleDRAM +addr_mapping=openmap +banks_per_rank=8 +clock=1000 +conf_table_reported=true +in_addr_map=true +lines_per_rowbuffer=64 +mem_sched_policy=fcfs +null=false +page_policy=open +range=0:134217727 +ranks_per_channel=2 +read_buffer_size=32 +tBURST=4000 +tCL=14000 +tRCD=14000 +tREFI=7800000 +tRFC=300000 +tRP=14000 +tWTR=1000 +write_buffer_size=32 +write_thresh_perc=70 +zero=false +port=system.membus.master[2] + +[system.realview] +type=RealView +children=a9scu aaci_fake cf_ctrl clcd dmac_fake flash_fake gic gpio0_fake gpio1_fake gpio2_fake kmi0 kmi1 l2x0_fake local_cpu_timer mmc_fake nvmem realview_io rtc sci_fake smc_fake sp810_fake ssp_fake timer0 timer1 uart uart1_fake uart2_fake uart3_fake watchdog_fake +intrctrl=system.intrctrl +max_mem_size=268435456 +mem_start_addr=0 +pci_cfg_base=0 +system=system + +[system.realview.a9scu] +type=A9SCU +clock=1000 +pio_addr=520093696 +pio_latency=100000 +system=system +pio=system.membus.master[5] + +[system.realview.aaci_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268451840 +pio_latency=100000 +system=system +pio=system.iobus.master[21] + +[system.realview.cf_ctrl] +type=IdeController +BAR0=402653184 +BAR0LegacyIO=true +BAR0Size=16 +BAR1=402653440 +BAR1LegacyIO=true +BAR1Size=1 +BAR2=1 +BAR2LegacyIO=false +BAR2Size=8 +BAR3=1 +BAR3LegacyIO=false +BAR3Size=4 +BAR4=1 +BAR4LegacyIO=false +BAR4Size=16 +BAR5=1 +BAR5LegacyIO=false +BAR5Size=0 +BIST=0 +CacheLineSize=0 +CardbusCIS=0 +ClassCode=1 +Command=1 +DeviceID=28945 +ExpansionROM=0 +HeaderType=0 +InterruptLine=31 +InterruptPin=1 +LatencyTimer=0 +MaximumLatency=0 +MinimumGrant=0 +ProgIF=133 +Revision=0 +Status=640 +SubClassCode=1 +SubsystemID=0 +SubsystemVendorID=0 +VendorID=32902 +clock=1000 +config_latency=20000 +ctrl_offset=2 +disks=system.cf0 +io_shift=1 +pci_bus=2 +pci_dev=7 +pci_func=0 +pio_latency=30000 +platform=system.realview +system=system +config=system.iobus.master[8] +dma=system.iobus.slave[2] +pio=system.iobus.master[7] + +[system.realview.clcd] +type=Pl111 +amba_id=1315089 +clock=1000 +gic=system.realview.gic +int_num=55 +pio_addr=268566528 +pio_latency=10000 +pixel_clock=41667 +system=system +vnc=system.vncserver +dma=system.iobus.slave[1] +pio=system.iobus.master[4] + +[system.realview.dmac_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268632064 +pio_latency=100000 +system=system +pio=system.iobus.master[9] + +[system.realview.flash_fake] +type=IsaFake +clock=1000 +fake_mem=true +pio_addr=1073741824 +pio_latency=100000 +pio_size=536870912 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.iobus.master[24] + +[system.realview.gic] +type=Gic +clock=1000 +cpu_addr=520093952 +cpu_pio_delay=10000 +dist_addr=520097792 +dist_pio_delay=10000 +int_latency=10000 +it_lines=128 +platform=system.realview +system=system +pio=system.membus.master[3] + +[system.realview.gpio0_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268513280 +pio_latency=100000 +system=system +pio=system.iobus.master[16] + +[system.realview.gpio1_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268517376 +pio_latency=100000 +system=system +pio=system.iobus.master[17] + +[system.realview.gpio2_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268521472 +pio_latency=100000 +system=system +pio=system.iobus.master[18] + +[system.realview.kmi0] +type=Pl050 +amba_id=1314896 +clock=1000 +gic=system.realview.gic +int_delay=1000000 +int_num=52 +is_mouse=false +pio_addr=268460032 +pio_latency=100000 +system=system +vnc=system.vncserver +pio=system.iobus.master[5] + +[system.realview.kmi1] +type=Pl050 +amba_id=1314896 +clock=1000 +gic=system.realview.gic +int_delay=1000000 +int_num=53 +is_mouse=true +pio_addr=268464128 +pio_latency=100000 +system=system +vnc=system.vncserver +pio=system.iobus.master[6] + +[system.realview.l2x0_fake] +type=IsaFake +clock=1000 +fake_mem=false +pio_addr=520101888 +pio_latency=100000 +pio_size=4095 +ret_bad_addr=false +ret_data16=65535 +ret_data32=4294967295 +ret_data64=18446744073709551615 +ret_data8=255 +system=system +update_data=false +warn_access= +pio=system.membus.master[4] + +[system.realview.local_cpu_timer] +type=CpuLocalTimer +clock=1000 +gic=system.realview.gic +int_num_timer=29 +int_num_watchdog=30 +pio_addr=520095232 +pio_latency=100000 +system=system +pio=system.membus.master[6] + +[system.realview.mmc_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268455936 +pio_latency=100000 +system=system +pio=system.iobus.master[22] + +[system.realview.nvmem] +type=SimpleMemory +bandwidth=73.000000 +clock=1000 +conf_table_reported=false +in_addr_map=true +latency=30000 +latency_var=0 +null=false +range=2147483648:2214592511 +zero=true +port=system.membus.master[1] + +[system.realview.realview_io] +type=RealViewCtrl +clock=1000 +idreg=0 +pio_addr=268435456 +pio_latency=100000 +proc_id0=201326592 +proc_id1=201327138 +system=system +pio=system.iobus.master[1] + +[system.realview.rtc] +type=PL031 +amba_id=3412017 +clock=1000 +gic=system.realview.gic +int_delay=100000 +int_num=42 +pio_addr=268529664 +pio_latency=100000 +system=system +time=Thu Jan 1 00:00:00 2009 +pio=system.iobus.master[23] + +[system.realview.sci_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268492800 +pio_latency=100000 +system=system +pio=system.iobus.master[20] + +[system.realview.smc_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=269357056 +pio_latency=100000 +system=system +pio=system.iobus.master[13] + +[system.realview.sp810_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=true +pio_addr=268439552 +pio_latency=100000 +system=system +pio=system.iobus.master[14] + +[system.realview.ssp_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268488704 +pio_latency=100000 +system=system +pio=system.iobus.master[19] + +[system.realview.timer0] +type=Sp804 +amba_id=1316868 +clock=1000 +clock0=1000000 +clock1=1000000 +gic=system.realview.gic +int_num0=36 +int_num1=36 +pio_addr=268505088 +pio_latency=100000 +system=system +pio=system.iobus.master[2] + +[system.realview.timer1] +type=Sp804 +amba_id=1316868 +clock=1000 +clock0=1000000 +clock1=1000000 +gic=system.realview.gic +int_num0=37 +int_num1=37 +pio_addr=268509184 +pio_latency=100000 +system=system +pio=system.iobus.master[3] + +[system.realview.uart] +type=Pl011 +clock=1000 +end_on_eot=false +gic=system.realview.gic +int_delay=100000 +int_num=44 +pio_addr=268472320 +pio_latency=100000 +platform=system.realview +system=system +terminal=system.terminal +pio=system.iobus.master[0] + +[system.realview.uart1_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268476416 +pio_latency=100000 +system=system +pio=system.iobus.master[10] + +[system.realview.uart2_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268480512 +pio_latency=100000 +system=system +pio=system.iobus.master[11] + +[system.realview.uart3_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268484608 +pio_latency=100000 +system=system +pio=system.iobus.master[12] + +[system.realview.watchdog_fake] +type=AmbaFake +amba_id=0 +clock=1000 +ignore_access=false +pio_addr=268500992 +pio_latency=100000 +system=system +pio=system.iobus.master[15] + +[system.terminal] +type=Terminal +intr_control=system.intrctrl +number=0 +output=true +port=3456 + +[system.toL2Bus] +type=CoherentBus +block_size=64 +clock=500 +header_cycles=1 +use_default_range=false +width=8 +master=system.l2c.cpu_side +slave=system.cpu0.icache.mem_side system.cpu0.dcache.mem_side system.cpu0.itb.walker.port system.cpu0.dtb.walker.port + +[system.vncserver] +type=VncServer +frame_capture=false +number=0 +port=5900 + diff --git a/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simerr b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simerr new file mode 100755 index 000000000..083c63715 --- /dev/null +++ b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simerr @@ -0,0 +1,22 @@ +warn: Sockets disabled, not accepting vnc client connections +warn: Sockets disabled, not accepting terminal connections +warn: Sockets disabled, not accepting gdb connections +warn: The clidr register always reports 0 caches. +warn: clidr LoUIS field of 0b001 to match current ARM implementations. +warn: The csselr register isn't implemented. +warn: The ccsidr register isn't implemented and always reads as 0. +warn: instruction 'mcr bpiallis' unimplemented +warn: instruction 'mcr icialluis' unimplemented +warn: instruction 'mcr dccimvac' unimplemented +warn: instruction 'mcr dccmvau' unimplemented +warn: instruction 'mcr icimvau' unimplemented +hack: be nice to actually delete the event here +warn: LCD dual screen mode not supported +warn: instruction 'mcr icialluis' unimplemented +warn: instruction 'mcr bpiallis' unimplemented +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR +warn: User mode does not have SPSR diff --git a/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simout b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simout new file mode 100755 index 000000000..19928f0ac --- /dev/null +++ b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/simout @@ -0,0 +1,9344 @@ +gem5 Simulator System. http://gem5.org +gem5 is copyrighted software; use the --copyright option for details. + +gem5 compiled Dec 11 2012 16:28:23 +gem5 started Dec 11 2012 16:28:36 +gem5 executing on e103721-lin +command line: build/ARM/gem5.opt -d build/ARM/tests/opt/quick/fs/10.linux-boot/arm/linux/realview-switcheroo-atomic -re tests/run.py build/ARM/tests/opt/quick/fs/10.linux-boot/arm/linux/realview-switcheroo-atomic +Global frequency set at 1000000000000 ticks per second +info: kernel located at: /arm/scratch/sysexplr/dist/binaries/vmlinux.arm.smp.fb.2.6.38.8 +info: Using bootloader at address 0x80000000 +info: Entering event queue @ 0. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1000000000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2000000000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 3000000000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 4000000000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 5000000000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 6000000000. Starting simulation... +switching cpus +info: Entering event queue @ 6000001000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 7000001000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 8000001000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 9000001000. Starting simulation... +switching cpus +info: Entering event queue @ 9000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 10000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 11000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 12000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 13000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 14000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 15000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 16000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 17000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 18000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 19000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 20000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 21000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 22000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 23000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 24000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 25000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 26000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 27000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 28000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 29000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 30000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 31000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 32000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 33000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 34000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 35000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 36000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 37000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 38000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 39000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 40000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 41000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 42000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 43000002500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 44000002500. Starting simulation... +switching cpus +info: Entering event queue @ 44000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 45000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 46000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 47000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 48000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 49000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 50000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 51000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 52000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 53000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 54000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 55000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 56000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 57000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 58000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 59000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 60000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 61000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 62000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 63000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 64000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 65000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 66000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 67000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 68000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 69000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 70000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 71000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 72000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 73000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 74000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 75000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 76000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 77000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 78000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 79000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 80000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 81000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 82000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 83000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 84000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 85000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 86000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 87000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 88000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 89000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 90000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 91000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 92000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 93000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 94000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 95000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 96000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 97000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 98000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 99000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 100000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 101000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 102000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 103000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 104000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 105000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 106000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 107000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 108000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 109000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 110000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 111000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 112000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 113000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 114000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 115000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 116000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 117000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 118000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 119000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 120000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 121000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 122000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 123000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 124000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 125000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 126000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 127000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 128000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 129000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 130000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 131000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 132000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 133000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 134000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 135000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 136000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 137000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 138000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 139000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 140000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 141000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 142000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 143000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 144000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 145000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 146000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 147000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 148000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 149000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 150000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 151000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 152000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 153000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 154000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 155000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 156000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 157000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 158000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 159000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 160000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 161000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 162000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 163000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 164000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 165000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 166000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 167000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 168000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 169000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 170000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 171000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 172000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 173000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 174000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 175000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 176000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 177000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 178000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 179000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 180000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 181000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 182000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 183000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 184000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 185000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 186000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 187000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 188000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 189000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 190000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 191000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 192000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 193000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 194000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 195000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 196000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 197000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 198000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 199000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 200000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 201000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 202000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 203000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 204000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 205000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 206000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 207000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 208000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 209000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 210000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 211000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 212000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 213000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 214000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 215000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 216000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 217000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 218000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 219000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 220000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 221000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 222000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 223000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 224000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 225000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 226000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 227000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 228000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 229000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 230000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 231000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 232000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 233000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 234000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 235000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 236000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 237000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 238000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 239000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 240000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 241000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 242000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 243000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 244000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 245000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 246000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 247000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 248000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 249000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 250000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 251000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 252000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 253000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 254000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 255000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 256000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 257000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 258000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 259000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 260000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 261000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 262000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 263000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 264000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 265000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 266000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 267000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 268000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 269000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 270000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 271000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 272000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 273000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 274000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 275000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 276000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 277000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 278000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 279000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 280000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 281000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 282000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 283000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 284000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 285000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 286000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 287000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 288000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 289000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 290000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 291000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 292000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 293000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 294000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 295000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 296000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 297000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 298000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 299000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 300000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 301000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 302000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 303000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 304000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 305000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 306000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 307000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 308000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 309000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 310000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 311000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 312000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 313000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 314000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 315000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 316000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 317000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 318000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 319000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 320000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 321000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 322000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 323000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 324000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 325000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 326000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 327000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 328000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 329000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 330000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 331000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 332000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 333000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 334000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 335000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 336000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 337000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 338000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 339000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 340000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 341000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 342000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 343000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 344000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 345000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 346000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 347000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 348000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 349000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 350000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 351000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 352000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 353000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 354000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 355000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 356000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 357000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 358000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 359000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 360000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 361000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 362000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 363000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 364000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 365000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 366000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 367000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 368000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 369000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 370000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 371000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 372000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 373000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 374000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 375000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 376000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 377000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 378000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 379000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 380000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 381000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 382000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 383000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 384000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 385000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 386000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 387000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 388000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 389000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 390000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 391000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 392000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 393000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 394000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 395000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 396000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 397000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 398000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 399000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 400000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 401000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 402000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 403000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 404000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 405000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 406000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 407000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 408000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 409000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 410000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 411000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 412000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 413000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 414000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 415000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 416000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 417000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 418000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 419000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 420000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 421000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 422000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 423000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 424000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 425000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 426000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 427000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 428000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 429000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 430000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 431000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 432000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 433000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 434000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 435000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 436000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 437000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 438000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 439000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 440000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 441000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 442000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 443000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 444000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 445000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 446000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 447000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 448000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 449000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 450000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 451000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 452000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 453000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 454000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 455000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 456000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 457000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 458000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 459000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 460000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 461000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 462000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 463000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 464000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 465000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 466000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 467000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 468000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 469000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 470000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 471000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 472000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 473000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 474000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 475000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 476000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 477000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 478000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 479000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 480000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 481000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 482000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 483000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 484000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 485000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 486000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 487000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 488000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 489000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 490000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 491000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 492000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 493000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 494000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 495000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 496000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 497000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 498000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 499000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 500000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 501000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 502000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 503000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 504000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 505000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 506000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 507000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 508000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 509000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 510000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 511000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 512000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 513000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 514000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 515000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 516000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 517000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 518000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 519000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 520000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 521000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 522000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 523000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 524000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 525000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 526000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 527000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 528000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 529000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 530000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 531000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 532000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 533000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 534000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 535000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 536000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 537000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 538000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 539000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 540000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 541000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 542000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 543000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 544000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 545000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 546000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 547000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 548000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 549000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 550000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 551000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 552000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 553000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 554000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 555000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 556000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 557000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 558000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 559000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 560000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 561000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 562000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 563000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 564000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 565000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 566000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 567000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 568000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 569000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 570000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 571000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 572000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 573000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 574000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 575000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 576000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 577000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 578000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 579000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 580000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 581000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 582000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 583000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 584000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 585000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 586000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 587000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 588000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 589000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 590000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 591000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 592000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 593000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 594000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 595000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 596000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 597000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 598000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 599000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 600000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 601000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 602000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 603000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 604000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 605000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 606000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 607000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 608000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 609000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 610000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 611000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 612000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 613000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 614000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 615000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 616000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 617000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 618000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 619000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 620000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 621000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 622000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 623000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 624000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 625000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 626000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 627000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 628000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 629000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 630000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 631000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 632000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 633000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 634000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 635000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 636000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 637000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 638000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 639000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 640000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 641000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 642000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 643000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 644000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 645000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 646000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 647000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 648000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 649000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 650000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 651000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 652000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 653000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 654000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 655000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 656000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 657000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 658000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 659000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 660000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 661000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 662000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 663000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 664000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 665000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 666000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 667000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 668000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 669000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 670000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 671000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 672000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 673000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 674000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 675000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 676000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 677000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 678000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 679000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 680000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 681000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 682000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 683000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 684000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 685000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 686000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 687000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 688000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 689000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 690000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 691000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 692000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 693000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 694000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 695000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 696000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 697000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 698000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 699000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 700000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 701000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 702000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 703000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 704000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 705000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 706000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 707000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 708000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 709000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 710000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 711000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 712000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 713000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 714000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 715000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 716000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 717000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 718000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 719000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 720000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 721000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 722000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 723000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 724000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 725000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 726000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 727000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 728000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 729000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 730000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 731000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 732000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 733000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 734000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 735000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 736000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 737000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 738000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 739000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 740000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 741000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 742000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 743000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 744000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 745000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 746000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 747000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 748000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 749000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 750000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 751000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 752000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 753000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 754000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 755000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 756000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 757000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 758000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 759000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 760000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 761000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 762000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 763000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 764000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 765000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 766000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 767000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 768000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 769000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 770000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 771000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 772000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 773000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 774000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 775000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 776000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 777000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 778000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 779000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 780000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 781000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 782000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 783000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 784000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 785000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 786000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 787000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 788000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 789000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 790000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 791000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 792000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 793000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 794000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 795000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 796000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 797000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 798000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 799000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 800000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 801000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 802000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 803000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 804000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 805000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 806000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 807000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 808000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 809000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 810000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 811000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 812000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 813000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 814000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 815000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 816000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 817000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 818000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 819000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 820000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 821000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 822000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 823000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 824000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 825000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 826000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 827000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 828000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 829000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 830000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 831000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 832000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 833000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 834000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 835000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 836000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 837000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 838000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 839000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 840000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 841000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 842000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 843000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 844000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 845000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 846000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 847000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 848000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 849000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 850000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 851000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 852000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 853000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 854000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 855000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 856000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 857000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 858000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 859000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 860000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 861000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 862000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 863000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 864000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 865000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 866000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 867000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 868000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 869000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 870000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 871000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 872000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 873000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 874000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 875000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 876000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 877000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 878000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 879000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 880000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 881000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 882000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 883000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 884000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 885000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 886000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 887000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 888000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 889000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 890000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 891000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 892000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 893000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 894000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 895000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 896000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 897000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 898000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 899000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 900000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 901000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 902000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 903000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 904000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 905000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 906000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 907000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 908000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 909000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 910000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 911000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 912000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 913000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 914000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 915000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 916000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 917000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 918000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 919000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 920000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 921000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 922000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 923000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 924000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 925000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 926000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 927000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 928000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 929000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 930000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 931000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 932000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 933000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 934000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 935000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 936000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 937000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 938000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 939000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 940000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 941000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 942000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 943000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 944000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 945000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 946000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 947000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 948000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 949000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 950000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 951000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 952000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 953000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 954000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 955000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 956000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 957000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 958000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 959000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 960000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 961000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 962000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 963000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 964000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 965000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 966000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 967000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 968000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 969000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 970000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 971000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 972000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 973000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 974000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 975000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 976000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 977000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 978000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 979000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 980000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 981000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 982000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 983000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 984000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 985000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 986000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 987000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 988000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 989000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 990000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 991000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 992000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 993000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 994000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 995000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 996000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 997000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 998000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 999000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1000000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1001000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1002000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1003000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1004000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1005000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1006000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1007000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1008000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1009000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1010000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1011000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1012000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1013000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1014000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1015000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1016000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1017000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1018000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1019000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1020000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1021000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1022000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1023000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1024000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1025000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1026000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1027000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1028000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1029000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1030000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1031000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1032000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1033000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1034000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1035000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1036000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1037000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1038000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1039000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1040000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1041000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1042000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1043000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1044000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1045000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1046000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1047000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1048000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1049000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1050000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1051000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1052000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1053000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1054000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1055000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1056000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1057000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1058000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1059000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1060000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1061000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1062000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1063000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1064000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1065000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1066000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1067000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1068000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1069000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1070000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1071000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1072000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1073000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1074000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1075000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1076000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1077000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1078000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1079000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1080000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1081000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1082000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1083000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1084000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1085000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1086000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1087000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1088000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1089000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1090000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1091000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1092000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1093000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1094000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1095000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1096000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1097000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1098000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1099000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1100000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1101000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1102000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1103000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1104000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1105000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1106000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1107000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1108000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1109000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1110000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1111000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1112000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1113000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1114000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1115000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1116000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1117000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1118000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1119000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1120000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1121000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1122000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1123000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1124000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1125000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1126000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1127000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1128000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1129000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1130000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1131000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1132000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1133000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1134000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1135000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1136000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1137000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1138000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1139000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1140000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1141000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1142000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1143000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1144000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1145000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1146000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1147000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1148000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1149000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1150000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1151000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1152000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1153000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1154000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1155000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1156000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1157000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1158000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1159000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1160000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1161000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1162000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1163000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1164000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1165000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1166000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1167000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1168000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1169000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1170000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1171000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1172000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1173000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1174000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1175000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1176000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1177000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1178000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1179000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1180000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1181000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1182000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1183000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1184000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1185000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1186000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1187000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1188000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1189000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1190000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1191000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1192000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1193000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1194000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1195000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1196000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1197000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1198000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1199000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1200000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1201000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1202000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1203000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1204000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1205000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1206000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1207000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1208000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1209000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1210000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1211000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1212000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1213000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1214000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1215000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1216000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1217000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1218000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1219000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1220000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1221000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1222000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1223000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1224000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1225000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1226000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1227000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1228000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1229000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1230000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1231000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1232000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1233000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1234000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1235000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1236000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1237000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1238000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1239000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1240000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1241000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1242000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1243000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1244000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1245000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1246000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1247000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1248000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1249000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1250000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1251000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1252000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1253000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1254000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1255000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1256000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1257000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1258000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1259000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1260000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1261000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1262000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1263000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1264000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1265000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1266000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1267000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1268000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1269000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1270000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1271000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1272000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1273000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1274000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1275000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1276000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1277000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1278000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1279000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1280000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1281000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1282000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1283000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1284000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1285000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1286000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1287000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1288000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1289000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1290000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1291000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1292000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1293000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1294000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1295000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1296000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1297000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1298000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1299000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1300000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1301000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1302000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1303000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1304000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1305000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1306000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1307000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1308000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1309000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1310000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1311000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1312000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1313000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1314000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1315000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1316000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1317000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1318000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1319000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1320000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1321000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1322000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1323000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1324000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1325000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1326000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1327000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1328000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1329000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1330000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1331000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1332000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1333000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1334000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1335000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1336000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1337000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1338000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1339000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1340000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1341000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1342000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1343000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1344000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1345000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1346000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1347000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1348000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1349000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1350000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1351000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1352000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1353000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1354000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1355000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1356000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1357000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1358000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1359000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1360000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1361000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1362000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1363000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1364000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1365000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1366000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1367000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1368000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1369000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1370000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1371000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1372000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1373000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1374000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1375000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1376000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1377000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1378000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1379000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1380000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1381000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1382000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1383000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1384000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1385000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1386000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1387000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1388000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1389000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1390000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1391000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1392000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1393000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1394000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1395000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1396000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1397000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1398000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1399000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1400000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1401000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1402000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1403000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1404000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1405000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1406000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1407000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1408000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1409000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1410000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1411000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1412000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1413000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1414000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1415000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1416000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1417000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1418000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1419000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1420000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1421000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1422000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1423000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1424000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1425000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1426000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1427000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1428000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1429000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1430000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1431000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1432000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1433000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1434000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1435000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1436000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1437000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1438000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1439000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1440000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1441000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1442000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1443000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1444000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1445000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1446000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1447000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1448000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1449000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1450000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1451000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1452000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1453000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1454000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1455000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1456000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1457000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1458000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1459000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1460000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1461000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1462000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1463000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1464000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1465000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1466000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1467000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1468000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1469000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1470000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1471000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1472000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1473000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1474000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1475000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1476000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1477000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1478000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1479000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1480000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1481000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1482000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1483000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1484000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1485000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1486000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1487000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1488000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1489000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1490000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1491000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1492000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1493000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1494000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1495000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1496000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1497000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1498000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1499000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1500000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1501000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1502000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1503000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1504000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1505000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1506000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1507000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1508000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1509000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1510000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1511000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1512000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1513000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1514000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1515000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1516000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1517000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1518000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1519000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1520000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1521000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1522000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1523000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1524000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1525000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1526000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1527000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1528000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1529000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1530000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1531000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1532000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1533000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1534000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1535000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1536000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1537000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1538000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1539000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1540000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1541000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1542000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1543000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1544000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1545000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1546000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1547000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1548000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1549000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1550000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1551000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1552000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1553000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1554000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1555000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1556000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1557000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1558000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1559000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1560000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1561000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1562000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1563000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1564000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1565000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1566000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1567000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1568000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1569000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1570000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1571000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1572000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1573000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1574000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1575000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1576000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1577000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1578000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1579000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1580000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1581000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1582000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1583000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1584000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1585000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1586000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1587000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1588000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1589000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1590000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1591000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1592000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1593000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1594000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1595000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1596000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1597000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1598000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1599000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1600000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1601000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1602000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1603000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1604000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1605000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1606000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1607000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1608000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1609000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1610000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1611000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1612000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1613000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1614000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1615000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1616000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1617000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1618000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1619000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1620000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1621000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1622000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1623000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1624000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1625000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1626000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1627000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1628000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1629000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1630000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1631000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1632000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1633000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1634000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1635000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1636000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1637000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1638000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1639000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1640000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1641000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1642000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1643000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1644000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1645000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1646000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1647000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1648000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1649000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1650000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1651000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1652000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1653000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1654000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1655000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1656000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1657000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1658000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1659000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1660000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1661000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1662000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1663000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1664000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1665000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1666000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1667000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1668000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1669000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1670000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1671000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1672000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1673000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1674000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1675000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1676000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1677000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1678000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1679000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1680000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1681000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1682000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1683000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1684000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1685000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1686000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1687000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1688000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1689000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1690000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1691000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1692000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1693000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1694000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1695000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1696000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1697000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1698000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1699000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1700000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1701000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1702000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1703000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1704000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1705000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1706000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1707000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1708000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1709000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1710000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1711000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1712000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1713000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1714000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1715000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1716000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1717000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1718000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1719000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1720000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1721000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1722000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1723000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1724000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1725000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1726000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1727000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1728000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1729000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1730000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1731000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1732000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1733000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1734000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1735000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1736000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1737000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1738000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1739000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1740000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1741000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1742000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1743000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1744000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1745000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1746000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1747000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1748000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1749000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1750000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1751000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1752000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1753000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1754000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1755000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1756000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1757000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1758000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1759000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1760000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1761000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1762000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1763000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1764000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1765000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1766000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1767000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1768000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1769000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1770000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1771000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1772000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1773000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1774000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1775000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1776000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1777000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1778000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1779000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1780000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1781000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1782000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1783000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1784000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1785000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1786000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1787000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1788000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1789000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1790000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1791000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1792000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1793000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1794000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1795000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1796000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1797000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1798000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1799000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1800000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1801000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1802000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1803000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1804000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1805000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1806000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1807000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1808000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1809000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1810000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1811000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1812000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1813000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1814000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1815000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1816000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1817000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1818000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1819000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1820000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1821000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1822000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1823000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1824000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1825000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1826000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1827000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1828000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1829000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1830000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1831000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1832000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1833000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1834000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1835000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1836000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1837000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1838000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1839000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1840000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1841000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1842000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1843000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1844000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1845000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1846000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1847000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1848000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1849000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1850000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1851000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1852000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1853000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1854000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1855000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1856000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1857000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1858000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1859000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1860000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1861000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1862000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1863000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1864000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1865000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1866000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1867000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1868000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1869000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1870000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1871000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1872000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1873000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1874000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1875000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1876000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1877000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1878000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1879000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1880000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1881000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1882000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1883000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1884000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1885000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1886000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1887000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1888000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1889000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1890000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1891000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1892000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1893000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1894000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1895000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1896000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1897000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1898000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1899000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1900000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1901000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1902000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1903000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1904000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1905000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1906000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1907000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1908000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1909000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1910000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1911000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1912000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1913000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1914000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1915000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1916000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1917000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1918000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1919000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1920000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1921000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1922000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1923000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1924000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1925000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1926000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1927000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1928000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1929000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1930000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1931000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1932000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1933000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1934000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1935000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1936000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1937000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1938000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1939000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1940000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1941000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1942000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1943000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1944000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1945000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1946000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1947000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1948000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1949000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1950000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1951000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1952000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1953000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1954000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1955000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1956000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1957000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1958000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1959000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1960000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1961000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1962000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1963000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1964000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1965000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1966000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1967000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1968000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1969000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1970000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1971000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1972000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1973000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1974000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1975000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1976000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1977000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1978000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1979000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1980000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1981000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1982000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1983000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1984000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1985000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1986000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1987000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1988000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1989000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1990000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1991000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1992000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1993000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1994000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1995000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1996000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1997000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1998000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 1999000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2000000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2001000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2002000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2003000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2004000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2005000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2006000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2007000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2008000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2009000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2010000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2011000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2012000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2013000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2014000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2015000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2016000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2017000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2018000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2019000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2020000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2021000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2022000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2023000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2024000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2025000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2026000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2027000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2028000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2029000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2030000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2031000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2032000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2033000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2034000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2035000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2036000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2037000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2038000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2039000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2040000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2041000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2042000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2043000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2044000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2045000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2046000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2047000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2048000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2049000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2050000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2051000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2052000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2053000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2054000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2055000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2056000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2057000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2058000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2059000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2060000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2061000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2062000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2063000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2064000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2065000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2066000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2067000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2068000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2069000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2070000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2071000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2072000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2073000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2074000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2075000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2076000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2077000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2078000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2079000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2080000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2081000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2082000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2083000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2084000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2085000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2086000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2087000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2088000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2089000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2090000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2091000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2092000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2093000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2094000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2095000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2096000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2097000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2098000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2099000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2100000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2101000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2102000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2103000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2104000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2105000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2106000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2107000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2108000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2109000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2110000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2111000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2112000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2113000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2114000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2115000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2116000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2117000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2118000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2119000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2120000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2121000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2122000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2123000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2124000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2125000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2126000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2127000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2128000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2129000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2130000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2131000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2132000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2133000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2134000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2135000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2136000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2137000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2138000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2139000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2140000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2141000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2142000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2143000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2144000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2145000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2146000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2147000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2148000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2149000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2150000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2151000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2152000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2153000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2154000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2155000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2156000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2157000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2158000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2159000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2160000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2161000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2162000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2163000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2164000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2165000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2166000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2167000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2168000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2169000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2170000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2171000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2172000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2173000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2174000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2175000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2176000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2177000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2178000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2179000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2180000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2181000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2182000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2183000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2184000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2185000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2186000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2187000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2188000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2189000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2190000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2191000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2192000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2193000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2194000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2195000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2196000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2197000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2198000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2199000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2200000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2201000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2202000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2203000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2204000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2205000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2206000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2207000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2208000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2209000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2210000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2211000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2212000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2213000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2214000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2215000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2216000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2217000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2218000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2219000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2220000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2221000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2222000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2223000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2224000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2225000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2226000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2227000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2228000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2229000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2230000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2231000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2232000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2233000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2234000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2235000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2236000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2237000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2238000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2239000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2240000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2241000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2242000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2243000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2244000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2245000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2246000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2247000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2248000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2249000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2250000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2251000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2252000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2253000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2254000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2255000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2256000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2257000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2258000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2259000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2260000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2261000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2262000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2263000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2264000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2265000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2266000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2267000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2268000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2269000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2270000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2271000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2272000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2273000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2274000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2275000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2276000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2277000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2278000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2279000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2280000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2281000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2282000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2283000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2284000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2285000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2286000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2287000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2288000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2289000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2290000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2291000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2292000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2293000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2294000004000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2295000004000. Starting simulation... +switching cpus +info: Entering event queue @ 2295000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2296000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2297000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2298000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2299000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2300000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2301000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2302000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2303000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2304000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2305000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2306000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2307000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2308000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2309000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2310000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2311000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2312000006000. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +info: Entering event queue @ 2313000006000. Starting simulation... +switching cpus +info: Entering event queue @ 2313000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2314000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2315000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2316000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2317000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2318000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2319000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2320000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2321000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2322000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2323000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2324000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2325000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2326000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2327000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2328000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2329000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2330000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2331000010500. Starting simulation... +Switching CPUs... +Next CPU: AtomicSimpleCPU +switching cpus +info: Entering event queue @ 2332000010500. Starting simulation... diff --git a/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/stats.txt b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/stats.txt new file mode 100644 index 000000000..d4e639ad7 --- /dev/null +++ b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/stats.txt @@ -0,0 +1,689 @@ + +---------- Begin Simulation Statistics ---------- +sim_seconds 2.332810 # Number of seconds simulated +sim_ticks 2332810256000 # Number of ticks simulated +final_tick 2332810256000 # Number of ticks from beginning of simulation (restored from checkpoints and never reset) +sim_freq 1000000000000 # Frequency of simulated ticks +host_inst_rate 669803 # Simulator instruction rate (inst/s) +host_op_rate 861325 # Simulator op (including micro ops) rate (op/s) +host_tick_rate 25865872844 # Simulator tick rate (ticks/s) +host_mem_usage 384756 # Number of bytes of host memory used +host_seconds 90.19 # Real time elapsed on the host +sim_insts 60408639 # Number of instructions simulated +sim_ops 77681819 # Number of ops (including micro ops) simulated +system.physmem.bytes_read::realview.clcd 111673344 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.dtb.walker 128 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.itb.walker 192 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.inst 492704 # Number of bytes read from this memory +system.physmem.bytes_read::cpu0.data 6494800 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.inst 212416 # Number of bytes read from this memory +system.physmem.bytes_read::cpu1.data 2577132 # Number of bytes read from this memory +system.physmem.bytes_read::total 121450716 # Number of bytes read from this memory +system.physmem.bytes_inst_read::cpu0.inst 492704 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::cpu1.inst 212416 # Number of instructions bytes read from this memory +system.physmem.bytes_inst_read::total 705120 # Number of instructions bytes read from this memory +system.physmem.bytes_written::writebacks 3703040 # Number of bytes written to this memory +system.physmem.bytes_written::cpu0.data 1405784 # Number of bytes written to this memory +system.physmem.bytes_written::cpu1.data 1610060 # Number of bytes written to this memory +system.physmem.bytes_written::total 6718884 # Number of bytes written to this memory +system.physmem.num_reads::realview.clcd 13959168 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.dtb.walker 2 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.itb.walker 3 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.inst 13901 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu0.data 101515 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.inst 3319 # Number of read requests responded to by this memory +system.physmem.num_reads::cpu1.data 40278 # Number of read requests responded to by this memory +system.physmem.num_reads::total 14118186 # Number of read requests responded to by this memory +system.physmem.num_writes::writebacks 57860 # Number of write requests responded to by this memory +system.physmem.num_writes::cpu0.data 351446 # Number of write requests responded to by this memory +system.physmem.num_writes::cpu1.data 402515 # Number of write requests responded to by this memory +system.physmem.num_writes::total 811821 # Number of write requests responded to by this memory +system.physmem.bw_read::realview.clcd 47870736 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.dtb.walker 55 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.itb.walker 82 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.inst 211206 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu0.data 2784110 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.inst 91056 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::cpu1.data 1104733 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_read::total 52061978 # Total read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu0.inst 211206 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::cpu1.inst 91056 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_inst_read::total 302262 # Instruction read bandwidth from this memory (bytes/s) +system.physmem.bw_write::writebacks 1587373 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::cpu0.data 602614 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::cpu1.data 690180 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_write::total 2880167 # Write bandwidth from this memory (bytes/s) +system.physmem.bw_total::writebacks 1587373 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::realview.clcd 47870736 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.dtb.walker 55 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.itb.walker 82 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.inst 211206 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu0.data 3386724 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.inst 91056 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::cpu1.data 1794913 # Total bandwidth to/from this memory (bytes/s) +system.physmem.bw_total::total 54942145 # Total bandwidth to/from this memory (bytes/s) +system.physmem.readReqs 0 # Total number of read requests seen +system.physmem.writeReqs 0 # Total number of write requests seen +system.physmem.cpureqs 0 # Reqs generatd by CPU via cache - shady +system.physmem.bytesRead 0 # Total number of bytes read from memory +system.physmem.bytesWritten 0 # Total number of bytes written to memory +system.physmem.bytesConsumedRd 0 # bytesRead derated as per pkt->getSize() +system.physmem.bytesConsumedWr 0 # bytesWritten derated as per pkt->getSize() +system.physmem.servicedByWrQ 0 # Number of read reqs serviced by write Q +system.physmem.neitherReadNorWrite 0 # Reqs where no action is needed +system.physmem.perBankRdReqs::0 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::1 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::2 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::3 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::4 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::5 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::6 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::7 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::8 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::9 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::10 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::11 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::12 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::13 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::14 0 # Track reads on a per bank basis +system.physmem.perBankRdReqs::15 0 # Track reads on a per bank basis +system.physmem.perBankWrReqs::0 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::1 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::2 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::3 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::4 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::5 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::6 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::7 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::8 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::9 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::10 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::11 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::12 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::13 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::14 0 # Track writes on a per bank basis +system.physmem.perBankWrReqs::15 0 # Track writes on a per bank basis +system.physmem.numRdRetry 0 # Number of times rd buffer was full causing retry +system.physmem.numWrRetry 0 # Number of times wr buffer was full causing retry +system.physmem.totGap 0 # Total gap between requests +system.physmem.readPktSize::0 0 # Categorize read packet sizes +system.physmem.readPktSize::1 0 # Categorize read packet sizes +system.physmem.readPktSize::2 0 # Categorize read packet sizes +system.physmem.readPktSize::3 0 # Categorize read packet sizes +system.physmem.readPktSize::4 0 # Categorize read packet sizes +system.physmem.readPktSize::5 0 # Categorize read packet sizes +system.physmem.readPktSize::6 0 # Categorize read packet sizes +system.physmem.readPktSize::7 0 # Categorize read packet sizes +system.physmem.readPktSize::8 0 # Categorize read packet sizes +system.physmem.writePktSize::0 0 # categorize write packet sizes +system.physmem.writePktSize::1 0 # categorize write packet sizes +system.physmem.writePktSize::2 0 # categorize write packet sizes +system.physmem.writePktSize::3 0 # categorize write packet sizes +system.physmem.writePktSize::4 0 # categorize write packet sizes +system.physmem.writePktSize::5 0 # categorize write packet sizes +system.physmem.writePktSize::6 0 # categorize write packet sizes +system.physmem.writePktSize::7 0 # categorize write packet sizes +system.physmem.writePktSize::8 0 # categorize write packet sizes +system.physmem.neitherpktsize::0 0 # categorize neither packet sizes +system.physmem.neitherpktsize::1 0 # categorize neither packet sizes +system.physmem.neitherpktsize::2 0 # categorize neither packet sizes +system.physmem.neitherpktsize::3 0 # categorize neither packet sizes +system.physmem.neitherpktsize::4 0 # categorize neither packet sizes +system.physmem.neitherpktsize::5 0 # categorize neither packet sizes +system.physmem.neitherpktsize::6 0 # categorize neither packet sizes +system.physmem.neitherpktsize::7 0 # categorize neither packet sizes +system.physmem.neitherpktsize::8 0 # categorize neither packet sizes +system.physmem.rdQLenPdf::0 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::1 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::2 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::3 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::4 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::5 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::6 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::7 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::8 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::9 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::10 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::11 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::12 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::13 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::14 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::15 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::16 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::17 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::18 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::19 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::20 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::21 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::22 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::23 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::24 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::25 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::26 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::27 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::28 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::29 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::30 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::31 0 # What read queue length does an incoming req see +system.physmem.rdQLenPdf::32 0 # What read queue length does an incoming req see +system.physmem.wrQLenPdf::0 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::1 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::2 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::3 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::4 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::5 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::6 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::7 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::8 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::9 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::10 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::11 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::12 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::13 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::14 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::15 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::16 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::17 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::18 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::19 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::20 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::21 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::22 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::23 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::24 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::25 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::26 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::27 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::28 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::29 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::30 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::31 0 # What write queue length does an incoming req see +system.physmem.wrQLenPdf::32 0 # What write queue length does an incoming req see +system.physmem.totQLat 0 # Total cycles spent in queuing delays +system.physmem.totMemAccLat 0 # Sum of mem lat for all requests +system.physmem.totBusLat 0 # Total cycles spent in databus access +system.physmem.totBankLat 0 # Total cycles spent in bank access +system.physmem.avgQLat nan # Average queueing delay per request +system.physmem.avgBankLat nan # Average bank access latency per request +system.physmem.avgBusLat nan # Average bus latency per request +system.physmem.avgMemAccLat nan # Average memory access latency +system.physmem.avgRdBW 0.00 # Average achieved read bandwidth in MB/s +system.physmem.avgWrBW 0.00 # Average achieved write bandwidth in MB/s +system.physmem.avgConsumedRdBW 0.00 # Average consumed read bandwidth in MB/s +system.physmem.avgConsumedWrBW 0.00 # Average consumed write bandwidth in MB/s +system.physmem.peakBW 16000.00 # Theoretical peak bandwidth in MB/s +system.physmem.busUtil 0.00 # Data bus utilization in percentage +system.physmem.avgRdQLen 0.00 # Average read queue length over time +system.physmem.avgWrQLen 0.00 # Average write queue length over time +system.physmem.readRowHits 0 # Number of row buffer hits during reads +system.physmem.writeRowHits 0 # Number of row buffer hits during writes +system.physmem.readRowHitRate nan # Row buffer hit rate for reads +system.physmem.writeRowHitRate nan # Row buffer hit rate for writes +system.physmem.avgGap nan # Average gap between requests +system.realview.nvmem.bytes_read::cpu0.inst 20 # Number of bytes read from this memory +system.realview.nvmem.bytes_read::total 20 # Number of bytes read from this memory +system.realview.nvmem.bytes_inst_read::cpu0.inst 20 # Number of instructions bytes read from this memory +system.realview.nvmem.bytes_inst_read::total 20 # Number of instructions bytes read from this memory +system.realview.nvmem.num_reads::cpu0.inst 5 # Number of read requests responded to by this memory +system.realview.nvmem.num_reads::total 5 # Number of read requests responded to by this memory +system.realview.nvmem.bw_read::cpu0.inst 9 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_read::total 9 # Total read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::cpu0.inst 9 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_inst_read::total 9 # Instruction read bandwidth from this memory (bytes/s) +system.realview.nvmem.bw_total::cpu0.inst 9 # Total bandwidth to/from this memory (bytes/s) +system.realview.nvmem.bw_total::total 9 # Total bandwidth to/from this memory (bytes/s) +system.l2c.replacements 62242 # number of replacements +system.l2c.tagsinuse 50006.300216 # Cycle average of tags in use +system.l2c.total_refs 1678484 # Total number of references to valid blocks. +system.l2c.sampled_refs 127627 # Sample count of references to valid blocks. +system.l2c.avg_refs 13.151480 # Average number of references to valid blocks. +system.l2c.warmup_cycle 2316901485000 # Cycle when the warmup percentage was hit. +system.l2c.occ_blocks::writebacks 36900.571426 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.dtb.walker 0.993823 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.itb.walker 0.993931 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.inst 4917.298425 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu0.data 3152.525316 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.inst 2097.421528 # Average occupied blocks per requestor +system.l2c.occ_blocks::cpu1.data 2936.495766 # Average occupied blocks per requestor +system.l2c.occ_percent::writebacks 0.563058 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.dtb.walker 0.000015 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.itb.walker 0.000015 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.inst 0.075032 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu0.data 0.048104 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.inst 0.032004 # Average percentage of cache occupancy +system.l2c.occ_percent::cpu1.data 0.044807 # Average percentage of cache occupancy +system.l2c.occ_percent::total 0.763036 # Average percentage of cache occupancy +system.l2c.ReadReq_hits::cpu0.dtb.walker 9005 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.itb.walker 3277 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.inst 473131 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu0.data 196969 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.dtb.walker 4875 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.itb.walker 2050 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.inst 365740 # number of ReadReq hits +system.l2c.ReadReq_hits::cpu1.data 169794 # number of ReadReq hits +system.l2c.ReadReq_hits::total 1224841 # number of ReadReq hits +system.l2c.Writeback_hits::writebacks 592682 # number of Writeback hits +system.l2c.Writeback_hits::total 592682 # number of Writeback hits +system.l2c.UpgradeReq_hits::cpu0.data 12 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::cpu1.data 14 # number of UpgradeReq hits +system.l2c.UpgradeReq_hits::total 26 # number of UpgradeReq hits +system.l2c.ReadExReq_hits::cpu0.data 63335 # number of ReadExReq hits +system.l2c.ReadExReq_hits::cpu1.data 50403 # number of ReadExReq hits +system.l2c.ReadExReq_hits::total 113738 # number of ReadExReq hits +system.l2c.demand_hits::cpu0.dtb.walker 9005 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.itb.walker 3277 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.inst 473131 # number of demand (read+write) hits +system.l2c.demand_hits::cpu0.data 260304 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.dtb.walker 4875 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.itb.walker 2050 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.inst 365740 # number of demand (read+write) hits +system.l2c.demand_hits::cpu1.data 220197 # number of demand (read+write) hits +system.l2c.demand_hits::total 1338579 # number of demand (read+write) hits +system.l2c.overall_hits::cpu0.dtb.walker 9005 # number of overall hits +system.l2c.overall_hits::cpu0.itb.walker 3277 # number of overall hits +system.l2c.overall_hits::cpu0.inst 473131 # number of overall hits +system.l2c.overall_hits::cpu0.data 260304 # number of overall hits +system.l2c.overall_hits::cpu1.dtb.walker 4875 # number of overall hits +system.l2c.overall_hits::cpu1.itb.walker 2050 # number of overall hits +system.l2c.overall_hits::cpu1.inst 365740 # number of overall hits +system.l2c.overall_hits::cpu1.data 220197 # number of overall hits +system.l2c.overall_hits::total 1338579 # number of overall hits +system.l2c.ReadReq_misses::cpu0.dtb.walker 2 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.itb.walker 3 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.inst 7285 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu0.data 5807 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.inst 3319 # number of ReadReq misses +system.l2c.ReadReq_misses::cpu1.data 4065 # number of ReadReq misses +system.l2c.ReadReq_misses::total 20481 # number of ReadReq misses +system.l2c.UpgradeReq_misses::cpu0.data 1520 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::cpu1.data 1399 # number of UpgradeReq misses +system.l2c.UpgradeReq_misses::total 2919 # number of UpgradeReq misses +system.l2c.ReadExReq_misses::cpu0.data 96488 # number of ReadExReq misses +system.l2c.ReadExReq_misses::cpu1.data 36984 # number of ReadExReq misses +system.l2c.ReadExReq_misses::total 133472 # number of ReadExReq misses +system.l2c.demand_misses::cpu0.dtb.walker 2 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.itb.walker 3 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.inst 7285 # number of demand (read+write) misses +system.l2c.demand_misses::cpu0.data 102295 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.inst 3319 # number of demand (read+write) misses +system.l2c.demand_misses::cpu1.data 41049 # number of demand (read+write) misses +system.l2c.demand_misses::total 153953 # number of demand (read+write) misses +system.l2c.overall_misses::cpu0.dtb.walker 2 # number of overall misses +system.l2c.overall_misses::cpu0.itb.walker 3 # number of overall misses +system.l2c.overall_misses::cpu0.inst 7285 # number of overall misses +system.l2c.overall_misses::cpu0.data 102295 # number of overall misses +system.l2c.overall_misses::cpu1.inst 3319 # number of overall misses +system.l2c.overall_misses::cpu1.data 41049 # number of overall misses +system.l2c.overall_misses::total 153953 # number of overall misses +system.l2c.ReadReq_accesses::cpu0.dtb.walker 9007 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.itb.walker 3280 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.inst 480416 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu0.data 202776 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.dtb.walker 4875 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.itb.walker 2050 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.inst 369059 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::cpu1.data 173859 # number of ReadReq accesses(hits+misses) +system.l2c.ReadReq_accesses::total 1245322 # number of ReadReq accesses(hits+misses) +system.l2c.Writeback_accesses::writebacks 592682 # number of Writeback accesses(hits+misses) +system.l2c.Writeback_accesses::total 592682 # number of Writeback accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu0.data 1532 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::cpu1.data 1413 # number of UpgradeReq accesses(hits+misses) +system.l2c.UpgradeReq_accesses::total 2945 # number of UpgradeReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu0.data 159823 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::cpu1.data 87387 # number of ReadExReq accesses(hits+misses) +system.l2c.ReadExReq_accesses::total 247210 # number of ReadExReq accesses(hits+misses) +system.l2c.demand_accesses::cpu0.dtb.walker 9007 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.itb.walker 3280 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.inst 480416 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu0.data 362599 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.dtb.walker 4875 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.itb.walker 2050 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.inst 369059 # number of demand (read+write) accesses +system.l2c.demand_accesses::cpu1.data 261246 # number of demand (read+write) accesses +system.l2c.demand_accesses::total 1492532 # number of demand (read+write) accesses +system.l2c.overall_accesses::cpu0.dtb.walker 9007 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.itb.walker 3280 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.inst 480416 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu0.data 362599 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.dtb.walker 4875 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.itb.walker 2050 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.inst 369059 # number of overall (read+write) accesses +system.l2c.overall_accesses::cpu1.data 261246 # number of overall (read+write) accesses +system.l2c.overall_accesses::total 1492532 # number of overall (read+write) accesses +system.l2c.ReadReq_miss_rate::cpu0.dtb.walker 0.000222 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.itb.walker 0.000915 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.inst 0.015164 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu0.data 0.028638 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.inst 0.008993 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::cpu1.data 0.023381 # miss rate for ReadReq accesses +system.l2c.ReadReq_miss_rate::total 0.016446 # miss rate for ReadReq accesses +system.l2c.UpgradeReq_miss_rate::cpu0.data 0.992167 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::cpu1.data 0.990092 # miss rate for UpgradeReq accesses +system.l2c.UpgradeReq_miss_rate::total 0.991171 # miss rate for UpgradeReq accesses +system.l2c.ReadExReq_miss_rate::cpu0.data 0.603718 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::cpu1.data 0.423221 # miss rate for ReadExReq accesses +system.l2c.ReadExReq_miss_rate::total 0.539913 # miss rate for ReadExReq accesses +system.l2c.demand_miss_rate::cpu0.dtb.walker 0.000222 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.itb.walker 0.000915 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.inst 0.015164 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu0.data 0.282116 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.inst 0.008993 # miss rate for demand accesses +system.l2c.demand_miss_rate::cpu1.data 0.157128 # miss rate for demand accesses +system.l2c.demand_miss_rate::total 0.103149 # miss rate for demand accesses +system.l2c.overall_miss_rate::cpu0.dtb.walker 0.000222 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.itb.walker 0.000915 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.inst 0.015164 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu0.data 0.282116 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.inst 0.008993 # miss rate for overall accesses +system.l2c.overall_miss_rate::cpu1.data 0.157128 # miss rate for overall accesses +system.l2c.overall_miss_rate::total 0.103149 # miss rate for overall accesses +system.l2c.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.l2c.blocked::no_mshrs 0 # number of cycles access was blocked +system.l2c.blocked::no_targets 0 # number of cycles access was blocked +system.l2c.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.l2c.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.l2c.fast_writes 0 # number of fast writes performed +system.l2c.cache_copies 0 # number of cache copies performed +system.l2c.writebacks::writebacks 57860 # number of writebacks +system.l2c.writebacks::total 57860 # number of writebacks +system.l2c.no_allocate_misses 0 # Number of misses that were no-allocate +system.cf0.dma_read_full_pages 0 # Number of full page size DMA reads (not PRD). +system.cf0.dma_read_bytes 0 # Number of bytes transfered via DMA reads (not PRD). +system.cf0.dma_read_txs 0 # Number of DMA read transactions (not PRD). +system.cf0.dma_write_full_pages 0 # Number of full page size DMA writes. +system.cf0.dma_write_bytes 0 # Number of bytes transfered via DMA writes. +system.cf0.dma_write_txs 0 # Number of DMA write transactions. +system.cpu0.dtb.inst_hits 0 # ITB inst hits +system.cpu0.dtb.inst_misses 0 # ITB inst misses +system.cpu0.dtb.read_hits 7929195 # DTB read hits +system.cpu0.dtb.read_misses 6442 # DTB read misses +system.cpu0.dtb.write_hits 6437090 # DTB write hits +system.cpu0.dtb.write_misses 1931 # DTB write misses +system.cpu0.dtb.flush_tlb 1168 # Number of times complete TLB was flushed +system.cpu0.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.dtb.flush_tlb_mva_asid 752 # Number of times TLB was flushed by MVA & ASID +system.cpu0.dtb.flush_tlb_asid 32 # Number of times TLB was flushed by ASID +system.cpu0.dtb.flush_entries 5576 # Number of entries that have been flushed from TLB +system.cpu0.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.dtb.prefetch_faults 136 # Number of TLB faults due to prefetch +system.cpu0.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.dtb.perms_faults 240 # Number of TLB faults due to permissions restrictions +system.cpu0.dtb.read_accesses 7935637 # DTB read accesses +system.cpu0.dtb.write_accesses 6439021 # DTB write accesses +system.cpu0.dtb.inst_accesses 0 # ITB inst accesses +system.cpu0.dtb.hits 14366285 # DTB hits +system.cpu0.dtb.misses 8373 # DTB misses +system.cpu0.dtb.accesses 14374658 # DTB accesses +system.cpu0.itb.inst_hits 32543252 # ITB inst hits +system.cpu0.itb.inst_misses 3703 # ITB inst misses +system.cpu0.itb.read_hits 0 # DTB read hits +system.cpu0.itb.read_misses 0 # DTB read misses +system.cpu0.itb.write_hits 0 # DTB write hits +system.cpu0.itb.write_misses 0 # DTB write misses +system.cpu0.itb.flush_tlb 1168 # Number of times complete TLB was flushed +system.cpu0.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu0.itb.flush_tlb_mva_asid 752 # Number of times TLB was flushed by MVA & ASID +system.cpu0.itb.flush_tlb_asid 32 # Number of times TLB was flushed by ASID +system.cpu0.itb.flush_entries 2636 # Number of entries that have been flushed from TLB +system.cpu0.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu0.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu0.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu0.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions +system.cpu0.itb.read_accesses 0 # DTB read accesses +system.cpu0.itb.write_accesses 0 # DTB write accesses +system.cpu0.itb.inst_accesses 32546955 # ITB inst accesses +system.cpu0.itb.hits 32543252 # DTB hits +system.cpu0.itb.misses 3703 # DTB misses +system.cpu0.itb.accesses 32546955 # DTB accesses +system.cpu0.numCycles 4633589645 # number of cpu cycles simulated +system.cpu0.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu0.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu0.committedInsts 31998088 # Number of instructions committed +system.cpu0.committedOps 41901559 # Number of ops (including micro ops) committed +system.cpu0.num_int_alu_accesses 37065460 # Number of integer alu accesses +system.cpu0.num_fp_alu_accesses 5364 # Number of float alu accesses +system.cpu0.num_func_calls 1207172 # number of times a function call or return occured +system.cpu0.num_conditional_control_insts 4285544 # number of instructions that are conditional controls +system.cpu0.num_int_insts 37065460 # number of integer instructions +system.cpu0.num_fp_insts 5364 # number of float instructions +system.cpu0.num_int_register_reads 188704130 # number of times the integer registers were read +system.cpu0.num_int_register_writes 39536951 # number of times the integer registers were written +system.cpu0.num_fp_register_reads 3938 # number of times the floating registers were read +system.cpu0.num_fp_register_writes 1428 # number of times the floating registers were written +system.cpu0.num_mem_refs 15013039 # number of memory refs +system.cpu0.num_load_insts 8304652 # Number of load instructions +system.cpu0.num_store_insts 6708387 # Number of store instructions +system.cpu0.num_idle_cycles 186586242.606667 # Number of idle cycles +system.cpu0.num_busy_cycles 4447003402.393333 # Number of busy cycles +system.cpu0.not_idle_fraction 0.959732 # Percentage of non-idle cycles +system.cpu0.idle_fraction 0.040268 # Percentage of idle cycles +system.cpu0.kern.inst.arm 0 # number of arm instructions executed +system.cpu0.kern.inst.quiesce 82795 # number of quiesce instructions executed +system.cpu0.icache.replacements 850590 # number of replacements +system.cpu0.icache.tagsinuse 511.678593 # Cycle average of tags in use +system.cpu0.icache.total_refs 60583498 # Total number of references to valid blocks. +system.cpu0.icache.sampled_refs 851102 # Sample count of references to valid blocks. +system.cpu0.icache.avg_refs 71.182418 # Average number of references to valid blocks. +system.cpu0.icache.warmup_cycle 5709380500 # Cycle when the warmup percentage was hit. +system.cpu0.icache.occ_blocks::cpu0.inst 444.509138 # Average occupied blocks per requestor +system.cpu0.icache.occ_blocks::cpu1.inst 67.169455 # Average occupied blocks per requestor +system.cpu0.icache.occ_percent::cpu0.inst 0.868182 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::cpu1.inst 0.131190 # Average percentage of cache occupancy +system.cpu0.icache.occ_percent::total 0.999372 # Average percentage of cache occupancy +system.cpu0.icache.ReadReq_hits::cpu0.inst 32064737 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::cpu1.inst 28518761 # number of ReadReq hits +system.cpu0.icache.ReadReq_hits::total 60583498 # number of ReadReq hits +system.cpu0.icache.demand_hits::cpu0.inst 32064737 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::cpu1.inst 28518761 # number of demand (read+write) hits +system.cpu0.icache.demand_hits::total 60583498 # number of demand (read+write) hits +system.cpu0.icache.overall_hits::cpu0.inst 32064737 # number of overall hits +system.cpu0.icache.overall_hits::cpu1.inst 28518761 # number of overall hits +system.cpu0.icache.overall_hits::total 60583498 # number of overall hits +system.cpu0.icache.ReadReq_misses::cpu0.inst 481294 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::cpu1.inst 369808 # number of ReadReq misses +system.cpu0.icache.ReadReq_misses::total 851102 # number of ReadReq misses +system.cpu0.icache.demand_misses::cpu0.inst 481294 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::cpu1.inst 369808 # number of demand (read+write) misses +system.cpu0.icache.demand_misses::total 851102 # number of demand (read+write) misses +system.cpu0.icache.overall_misses::cpu0.inst 481294 # number of overall misses +system.cpu0.icache.overall_misses::cpu1.inst 369808 # number of overall misses +system.cpu0.icache.overall_misses::total 851102 # number of overall misses +system.cpu0.icache.ReadReq_accesses::cpu0.inst 32546031 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::cpu1.inst 28888569 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.ReadReq_accesses::total 61434600 # number of ReadReq accesses(hits+misses) +system.cpu0.icache.demand_accesses::cpu0.inst 32546031 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::cpu1.inst 28888569 # number of demand (read+write) accesses +system.cpu0.icache.demand_accesses::total 61434600 # number of demand (read+write) accesses +system.cpu0.icache.overall_accesses::cpu0.inst 32546031 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::cpu1.inst 28888569 # number of overall (read+write) accesses +system.cpu0.icache.overall_accesses::total 61434600 # number of overall (read+write) accesses +system.cpu0.icache.ReadReq_miss_rate::cpu0.inst 0.014788 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::cpu1.inst 0.012801 # miss rate for ReadReq accesses +system.cpu0.icache.ReadReq_miss_rate::total 0.013854 # miss rate for ReadReq accesses +system.cpu0.icache.demand_miss_rate::cpu0.inst 0.014788 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::cpu1.inst 0.012801 # miss rate for demand accesses +system.cpu0.icache.demand_miss_rate::total 0.013854 # miss rate for demand accesses +system.cpu0.icache.overall_miss_rate::cpu0.inst 0.014788 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::cpu1.inst 0.012801 # miss rate for overall accesses +system.cpu0.icache.overall_miss_rate::total 0.013854 # miss rate for overall accesses +system.cpu0.icache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.cpu0.icache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.cpu0.icache.blocked::no_mshrs 0 # number of cycles access was blocked +system.cpu0.icache.blocked::no_targets 0 # number of cycles access was blocked +system.cpu0.icache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.cpu0.icache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.cpu0.icache.fast_writes 0 # number of fast writes performed +system.cpu0.icache.cache_copies 0 # number of cache copies performed +system.cpu0.icache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu0.dcache.replacements 623333 # number of replacements +system.cpu0.dcache.tagsinuse 511.997031 # Cycle average of tags in use +system.cpu0.dcache.total_refs 23628287 # Total number of references to valid blocks. +system.cpu0.dcache.sampled_refs 623845 # Sample count of references to valid blocks. +system.cpu0.dcache.avg_refs 37.875253 # Average number of references to valid blocks. +system.cpu0.dcache.warmup_cycle 21763000 # Cycle when the warmup percentage was hit. +system.cpu0.dcache.occ_blocks::cpu0.data 451.298859 # Average occupied blocks per requestor +system.cpu0.dcache.occ_blocks::cpu1.data 60.698172 # Average occupied blocks per requestor +system.cpu0.dcache.occ_percent::cpu0.data 0.881443 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::cpu1.data 0.118551 # Average percentage of cache occupancy +system.cpu0.dcache.occ_percent::total 0.999994 # Average percentage of cache occupancy +system.cpu0.dcache.ReadReq_hits::cpu0.data 6995578 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::cpu1.data 6184445 # number of ReadReq hits +system.cpu0.dcache.ReadReq_hits::total 13180023 # number of ReadReq hits +system.cpu0.dcache.WriteReq_hits::cpu0.data 5776851 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::cpu1.data 4185214 # number of WriteReq hits +system.cpu0.dcache.WriteReq_hits::total 9962065 # number of WriteReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu0.data 139290 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::cpu1.data 96746 # number of LoadLockedReq hits +system.cpu0.dcache.LoadLockedReq_hits::total 236036 # number of LoadLockedReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu0.data 145936 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::cpu1.data 101282 # number of StoreCondReq hits +system.cpu0.dcache.StoreCondReq_hits::total 247218 # number of StoreCondReq hits +system.cpu0.dcache.demand_hits::cpu0.data 12772429 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::cpu1.data 10369659 # number of demand (read+write) hits +system.cpu0.dcache.demand_hits::total 23142088 # number of demand (read+write) hits +system.cpu0.dcache.overall_hits::cpu0.data 12772429 # number of overall hits +system.cpu0.dcache.overall_hits::cpu1.data 10369659 # number of overall hits +system.cpu0.dcache.overall_hits::total 23142088 # number of overall hits +system.cpu0.dcache.ReadReq_misses::cpu0.data 196129 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::cpu1.data 169323 # number of ReadReq misses +system.cpu0.dcache.ReadReq_misses::total 365452 # number of ReadReq misses +system.cpu0.dcache.WriteReq_misses::cpu0.data 161355 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::cpu1.data 88800 # number of WriteReq misses +system.cpu0.dcache.WriteReq_misses::total 250155 # number of WriteReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu0.data 6647 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::cpu1.data 4536 # number of LoadLockedReq misses +system.cpu0.dcache.LoadLockedReq_misses::total 11183 # number of LoadLockedReq misses +system.cpu0.dcache.demand_misses::cpu0.data 357484 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::cpu1.data 258123 # number of demand (read+write) misses +system.cpu0.dcache.demand_misses::total 615607 # number of demand (read+write) misses +system.cpu0.dcache.overall_misses::cpu0.data 357484 # number of overall misses +system.cpu0.dcache.overall_misses::cpu1.data 258123 # number of overall misses +system.cpu0.dcache.overall_misses::total 615607 # number of overall misses +system.cpu0.dcache.ReadReq_accesses::cpu0.data 7191707 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::cpu1.data 6353768 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.ReadReq_accesses::total 13545475 # number of ReadReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu0.data 5938206 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::cpu1.data 4274014 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.WriteReq_accesses::total 10212220 # number of WriteReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu0.data 145937 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::cpu1.data 101282 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.LoadLockedReq_accesses::total 247219 # number of LoadLockedReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu0.data 145936 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::cpu1.data 101282 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.StoreCondReq_accesses::total 247218 # number of StoreCondReq accesses(hits+misses) +system.cpu0.dcache.demand_accesses::cpu0.data 13129913 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::cpu1.data 10627782 # number of demand (read+write) accesses +system.cpu0.dcache.demand_accesses::total 23757695 # number of demand (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu0.data 13129913 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::cpu1.data 10627782 # number of overall (read+write) accesses +system.cpu0.dcache.overall_accesses::total 23757695 # number of overall (read+write) accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu0.data 0.027272 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::cpu1.data 0.026649 # miss rate for ReadReq accesses +system.cpu0.dcache.ReadReq_miss_rate::total 0.026980 # miss rate for ReadReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu0.data 0.027172 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::cpu1.data 0.020777 # miss rate for WriteReq accesses +system.cpu0.dcache.WriteReq_miss_rate::total 0.024496 # miss rate for WriteReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu0.data 0.045547 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::cpu1.data 0.044786 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.LoadLockedReq_miss_rate::total 0.045235 # miss rate for LoadLockedReq accesses +system.cpu0.dcache.demand_miss_rate::cpu0.data 0.027227 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::cpu1.data 0.024288 # miss rate for demand accesses +system.cpu0.dcache.demand_miss_rate::total 0.025912 # miss rate for demand accesses +system.cpu0.dcache.overall_miss_rate::cpu0.data 0.027227 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::cpu1.data 0.024288 # miss rate for overall accesses +system.cpu0.dcache.overall_miss_rate::total 0.025912 # miss rate for overall accesses +system.cpu0.dcache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.cpu0.dcache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_mshrs 0 # number of cycles access was blocked +system.cpu0.dcache.blocked::no_targets 0 # number of cycles access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.cpu0.dcache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.cpu0.dcache.fast_writes 0 # number of fast writes performed +system.cpu0.dcache.cache_copies 0 # number of cache copies performed +system.cpu0.dcache.writebacks::writebacks 592682 # number of writebacks +system.cpu0.dcache.writebacks::total 592682 # number of writebacks +system.cpu0.dcache.no_allocate_misses 0 # Number of misses that were no-allocate +system.cpu1.dtb.inst_hits 0 # ITB inst hits +system.cpu1.dtb.inst_misses 0 # ITB inst misses +system.cpu1.dtb.read_hits 7038607 # DTB read hits +system.cpu1.dtb.read_misses 4222 # DTB read misses +system.cpu1.dtb.write_hits 4778914 # DTB write hits +system.cpu1.dtb.write_misses 1250 # DTB write misses +system.cpu1.dtb.flush_tlb 1166 # Number of times complete TLB was flushed +system.cpu1.dtb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.dtb.flush_tlb_mva_asid 687 # Number of times TLB was flushed by MVA & ASID +system.cpu1.dtb.flush_tlb_asid 31 # Number of times TLB was flushed by ASID +system.cpu1.dtb.flush_entries 2949 # Number of entries that have been flushed from TLB +system.cpu1.dtb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.dtb.prefetch_faults 80 # Number of TLB faults due to prefetch +system.cpu1.dtb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.dtb.perms_faults 212 # Number of TLB faults due to permissions restrictions +system.cpu1.dtb.read_accesses 7042829 # DTB read accesses +system.cpu1.dtb.write_accesses 4780164 # DTB write accesses +system.cpu1.dtb.inst_accesses 0 # ITB inst accesses +system.cpu1.dtb.hits 11817521 # DTB hits +system.cpu1.dtb.misses 5472 # DTB misses +system.cpu1.dtb.accesses 11822993 # DTB accesses +system.cpu1.itb.inst_hits 28886893 # ITB inst hits +system.cpu1.itb.inst_misses 2463 # ITB inst misses +system.cpu1.itb.read_hits 0 # DTB read hits +system.cpu1.itb.read_misses 0 # DTB read misses +system.cpu1.itb.write_hits 0 # DTB write hits +system.cpu1.itb.write_misses 0 # DTB write misses +system.cpu1.itb.flush_tlb 1166 # Number of times complete TLB was flushed +system.cpu1.itb.flush_tlb_mva 0 # Number of times TLB was flushed by MVA +system.cpu1.itb.flush_tlb_mva_asid 687 # Number of times TLB was flushed by MVA & ASID +system.cpu1.itb.flush_tlb_asid 31 # Number of times TLB was flushed by ASID +system.cpu1.itb.flush_entries 1597 # Number of entries that have been flushed from TLB +system.cpu1.itb.align_faults 0 # Number of TLB faults due to alignment restrictions +system.cpu1.itb.prefetch_faults 0 # Number of TLB faults due to prefetch +system.cpu1.itb.domain_faults 0 # Number of TLB faults due to domain restrictions +system.cpu1.itb.perms_faults 0 # Number of TLB faults due to permissions restrictions +system.cpu1.itb.read_accesses 0 # DTB read accesses +system.cpu1.itb.write_accesses 0 # DTB write accesses +system.cpu1.itb.inst_accesses 28889356 # ITB inst accesses +system.cpu1.itb.hits 28886893 # DTB hits +system.cpu1.itb.misses 2463 # DTB misses +system.cpu1.itb.accesses 28889356 # DTB accesses +system.cpu1.numCycles 4279954910 # number of cpu cycles simulated +system.cpu1.numWorkItemsStarted 0 # number of work items this cpu started +system.cpu1.numWorkItemsCompleted 0 # number of work items this cpu completed +system.cpu1.committedInsts 28410551 # Number of instructions committed +system.cpu1.committedOps 35780260 # Number of ops (including micro ops) committed +system.cpu1.num_int_alu_accesses 31730145 # Number of integer alu accesses +system.cpu1.num_fp_alu_accesses 4905 # Number of float alu accesses +system.cpu1.num_func_calls 928836 # number of times a function call or return occured +system.cpu1.num_conditional_control_insts 3656569 # number of instructions that are conditional controls +system.cpu1.num_int_insts 31730145 # number of integer instructions +system.cpu1.num_fp_insts 4905 # number of float instructions +system.cpu1.num_int_register_reads 160620144 # number of times the integer registers were read +system.cpu1.num_int_register_writes 34566657 # number of times the integer registers were written +system.cpu1.num_fp_register_reads 3555 # number of times the floating registers were read +system.cpu1.num_fp_register_writes 1352 # number of times the floating registers were written +system.cpu1.num_mem_refs 12348598 # number of memory refs +system.cpu1.num_load_insts 7334875 # Number of load instructions +system.cpu1.num_store_insts 5013723 # Number of store instructions +system.cpu1.num_idle_cycles 8315278953.102118 # Number of idle cycles +system.cpu1.num_busy_cycles -4035324043.102118 # Number of busy cycles +system.cpu1.not_idle_fraction -0.942843 # Percentage of non-idle cycles +system.cpu1.idle_fraction 1.942843 # Percentage of idle cycles +system.cpu1.kern.inst.arm 0 # number of arm instructions executed +system.cpu1.kern.inst.quiesce 0 # number of quiesce instructions executed +system.iocache.replacements 0 # number of replacements +system.iocache.tagsinuse 0 # Cycle average of tags in use +system.iocache.total_refs 0 # Total number of references to valid blocks. +system.iocache.sampled_refs 0 # Sample count of references to valid blocks. +system.iocache.avg_refs nan # Average number of references to valid blocks. +system.iocache.warmup_cycle 0 # Cycle when the warmup percentage was hit. +system.iocache.blocked_cycles::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked_cycles::no_targets 0 # number of cycles access was blocked +system.iocache.blocked::no_mshrs 0 # number of cycles access was blocked +system.iocache.blocked::no_targets 0 # number of cycles access was blocked +system.iocache.avg_blocked_cycles::no_mshrs nan # average number of cycles each access was blocked +system.iocache.avg_blocked_cycles::no_targets nan # average number of cycles each access was blocked +system.iocache.fast_writes 0 # number of fast writes performed +system.iocache.cache_copies 0 # number of cache copies performed +system.iocache.no_allocate_misses 0 # Number of misses that were no-allocate + +---------- End Simulation Statistics ---------- diff --git a/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/system.terminal b/tests/quick/fs/10.linux-boot/ref/arm/linux/realview-switcheroo-atomic/system.terminal new file mode 100644 index 0000000000000000000000000000000000000000..d321164ca91e8dfc210f303a667b79b948431e4b GIT binary patch literal 5878 zcmbVQYjYaO70uVU%Kzb3<%3a{$Mn1yrlQm$$=)S4HY<>`6_?62%rvN1^C0s;!oNP} z_5d1$@VbI6q=D|!_kGXpFNBxTHT3J2KB%;Mq_xZom8E2M-LBBX;Kz5a42(dFdEr{VQ@-KR;Og|aBJoW59&u?QjaE#-2pw6F%X^s=)y zh55NKLdOdGixYsKN0S+)SsKJDC{((nC@2F8gYZta>F7(97G++ACEG-=IYu30t4gI7 zwR0_l__LA^G`aZwc}C;#Y9)*A$`l(3Z~>U%#YP^AO8) zgjw%s(}&T!Pc#q8@XqfaA2NA+tpn+8GM7;ViTd@vUbw30=g@E*7pAAeHTx#zo*0-E z3EMP0s!nLT!p@F1n}2#6=>_NB-)&>y9!u54_yS)VbiC%GQgKN_+cj22S&&NUKQJ<7 zc_i~TCD~lXs@%{r&#D#2RhD*%X6&$9N%j~lb&UO9=BbP+%;1?cqF4v8j;$2}w7kbR zI^fRBax)wc4T@KPoQuK0^K8#RWaQWdpB9uqP@FAext8&{$DTeHrZ>Kz96@{Di{!dj zM1eRKU^2R*yP&v3^dpE7%Vn-O!q~4Zt)EXF(MD;oJ(_PyS)3h%T=BL|otQ783D@%M zJ)Yer*KsWOB;JTazN7Q}MK~QDJL#-;oen3_>NNDJHpuz*w@#;HRh||*w&C6PgsFd1 zunttrCTf%8y7oP)UY#IqGTzgjTHe9t$8eujURH>L``XV~!xbS8Hd$5r$IH3!u4Pyv zS;}iN3i>g=_T8gU-;hu&d>Z(+gwIbNXXKRl@By+$I3?VG@v^fD$%EvuKy^Eb18kPtR+hz#M zFvWKvbcO1qZAhVp7sL7$Lp`7>))n6Jamj-pw&lTL$tknu8%ZV zD6K(Brak`kTbmOsiz|JoEz+WmHpzt!6%H9B`rg2Clj0clvM!iDDrXEfL{XI_8z`_= zp(M|Ew4QZ#N8HjSNXR^g9hinlWG8BAwgTO{SF4qb&S=HiUeY>rEX%xQf0W5;fkwlbrC|SW&$x!y$Fh%aXFgra zCAuy|kNChcgJWqCBq~N29JF*{nlQjr=D-6D9A6A+@&WvpZid%0igJa}X(}a5yB5W- zg1j_*+BI1O;dngyghb+~VyiVw;*Aa>oT< zzuFUSNc8{ge`4&WYuLBQqzv(&OZbBdbS?S^KIs_$7OqzTj3-E?AMYC)<5pmXr?eywFVu}_Y%SSVWd82DUf{nbx+d@4zYz=R-6;9rp&c|d?x>eO4JakkH}z= zPy;f&?UL$n4IFWEHF;5DZnHbpzhg?ThUn<=^CiuH499igl0SY;Dvg5wWE5&`D|OR^u5EL(_;7i}MQJ-=-UWH| z5ai&6zkmK^$jxwt2J&>6Weyw%yLN4pNL`==| z$j89JoMxMOjU@xigpav*eP<1{xP{_{GC*inNawE*xWs%2`no@C(C5SOrSNGooDB)x zizcH_JaZ6QdK*(Er#3#~`4)4_l9B`#4U>q==8m3)WxRVtDQzAw;0!KeXzl~E#N@&4 z2LiDzQ0sY`ZfP<09rhznh?bu2xwNiePjtG_@VKf;hGy&AXUEAz{JWp<{`T4?2NP zm6qrx=p$U1|FQ)Z0|VBo?T-?RUN#$c`aX>v8eP4mD^=XL33DfWas#5?bI}HyTj5}K zo!%-ixLGC!YduzgMkU}MiU9fn{qbO*Xdc<9FlY!4XG0=r5REZ)v9qXitYHQ3U!@v)MUQ zNKlCu&y?efo`aS@Ry>wG8O3st@yD3|=BpRJ)?)8)XU`V6uxe~`kp{=x#(X6+m1%*C z7PLSs;P*y+!-1Cf;?DX&-LSw0_qRdl)luEX{M~(0o1#n>>6>yNTUV1$xN@L(H^Zig zeG4H783Wvc=n?-(dXVHp>4#;>7i>}Ox}{9Pl|m|(xLw+;aLLrf9dKwLtGe35A)jBaoj(Z?Rei{(Yj19%gBk89lwT ze&5Mrc1;@`44JuwEwd`TyH};I0rHn1Mi$KYvjU6<75}9JM16p09mL zZi*aZ(hUpo#R+=rV`*ZX#sI0w(HU-bb`{6-#jZqYh`vCHdE&JwR*bVXPQAi}7VjV= zS4%xn*7pIpny}3G;F0<>FpwM@eY&WM%|(X0V9^y$*P<5ga*dARbc{Y3!Z-Uq{i_@% literal 0 HcmV?d00001 diff --git a/tests/run.py b/tests/run.py index e4474ac5c..ae00be286 100644 --- a/tests/run.py +++ b/tests/run.py @@ -93,6 +93,16 @@ def require_sim_object(name, fatal=False): else: skip_test(msg) +def run_test(root): + """Default run_test implementations. Scripts can override it.""" + + # instantiate configuration + m5.instantiate() + + # simulate until program terminates + exit_event = m5.simulate(maxtick) + print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause() + # Since we're in batch mode, dont allow tcp socket connections m5.disableAllListeners() @@ -160,10 +170,4 @@ for sysattr in [ "system", "testsys", "drivesys" ]: if hasattr(root, sysattr): initCPUs(getattr(root, sysattr)) -# instantiate configuration -m5.instantiate() - -# simulate until program terminates -exit_event = m5.simulate(maxtick) - -print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause() +run_test(root)