Simulation.py revision 3410:ef75e2c78b2d
1# Copyright (c) 2006 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright 9# notice, this list of conditions and the following disclaimer in the 10# documentation and/or other materials provided with the distribution; 11# neither the name of the copyright holders nor the names of its 12# contributors may be used to endorse or promote products derived from 13# this software without specific prior written permission. 14# 15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26# 27# Authors: Lisa Hsu 28 29from os import getcwd 30import m5 31from m5.objects import * 32m5.AddToPath('../common') 33from Caches import * 34 35def run(options, root, testsys): 36 if options.maxtick: 37 maxtick = options.maxtick 38 elif options.maxtime: 39 simtime = int(options.maxtime * root.clock.value) 40 print "simulating for: ", simtime 41 maxtick = simtime 42 else: 43 maxtick = -1 44 45 if options.checkpoint_dir: 46 cptdir = options.checkpoint_dir 47 else: 48 cptdir = getcwd() 49 50 np = options.num_cpus 51 max_checkpoints = options.max_checkpoints 52 53 if options.standard_switch: 54 switch_cpus = [TimingSimpleCPU(defer_registration=True, cpu_id=(np+i)) 55 for i in xrange(np)] 56 switch_cpus1 = [DerivO3CPU(defer_registration=True, cpu_id=(2*np+i)) 57 for i in xrange(np)] 58 for i in xrange(np): 59 switch_cpus[i].system = testsys 60 switch_cpus1[i].system = testsys 61 if not m5.build_env['FULL_SYSTEM']: 62 switch_cpus[i].workload = testsys.cpu[i].workload 63 switch_cpus1[i].workload = testsys.cpu[i].workload 64 switch_cpus[i].clock = testsys.cpu[0].clock 65 switch_cpus1[i].clock = testsys.cpu[0].clock 66 if options.caches: 67 switch_cpus[i].addPrivateSplitL1Caches(L1Cache(size = '32kB'), 68 L1Cache(size = '64kB')) 69 70 switch_cpus[i].mem = testsys.physmem 71 switch_cpus1[i].mem = testsys.physmem 72 switch_cpus[i].connectMemPorts(testsys.membus) 73 root.switch_cpus = switch_cpus 74 root.switch_cpus1 = switch_cpus1 75 switch_cpu_list = [(testsys.cpu[i], switch_cpus[i]) for i in xrange(np)] 76 switch_cpu_list1 = [(switch_cpus[i], switch_cpus1[i]) for i in xrange(np)] 77 78 m5.instantiate(root) 79 80 if options.checkpoint_restore: 81 from os.path import isdir 82 from os import listdir 83 import re 84 85 if not isdir(cptdir): 86 m5.panic("checkpoint dir %s does not exist!" % cptdir) 87 88 dirs = listdir(cptdir) 89 expr = re.compile('cpt.([0-9]*)') 90 cpts = [] 91 for dir in dirs: 92 match = expr.match(dir) 93 if match: 94 cpts.append(match.group(1)) 95 96 cpts.sort(lambda a,b: cmp(long(a), long(b))) 97 98 cpt_num = options.checkpoint_restore 99 100 if cpt_num > len(cpts): 101 m5.panic('Checkpoint %d not found' % cpt_num) 102 103 m5.restoreCheckpoint(root, 104 "/".join([cptdir, "cpt.%s" % cpts[cpt_num - 1]])) 105 106 if options.standard_switch: 107 exit_event = m5.simulate(10000) 108 109 ## when you change to Timing (or Atomic), you halt the system given 110 ## as argument. When you are finished with the system changes 111 ## (including switchCpus), you must resume the system manually. 112 ## You DON'T need to resume after just switching CPUs if you haven't 113 ## changed anything on the system level. 114 115 m5.changeToTiming(testsys) 116 m5.switchCpus(switch_cpu_list) 117 m5.resume(testsys) 118 119 exit_event = m5.simulate(options.standard_switch) 120 m5.switchCpus(switch_cpu_list1) 121 122 num_checkpoints = 0 123 exit_cause = '' 124 125 ## Checkpoints being taken via the command line at <when> and at subsequent 126 ## periods of <period>. Checkpoint instructions received from the benchmark running 127 ## are ignored and skipped in favor of command line checkpoint instructions. 128 if options.take_checkpoints: 129 [when, period] = options.take_checkpoints.split(",", 1) 130 when = int(when) 131 period = int(period) 132 133 print "when is ", when, " period is ", period 134 exit_event = m5.simulate(when) 135 while exit_event.getCause() == "checkpoint": 136 exit_event = m5.simulate(when - m5.curTick()) 137 138 if exit_event.getCause() == "simulate() limit reached": 139 m5.checkpoint(root, cptdir + "cpt.%d") 140 num_checkpoints += 1 141 142 sim_ticks = when 143 exit_cause = "maximum %d checkpoints dropped" % max_checkpoints 144 while num_checkpoints < max_checkpoints: 145 if (sim_ticks + period) > maxtick and maxtick != -1: 146 exit_event = m5.simulate(maxtick - sim_ticks) 147 exit_cause = exit_event.getCause() 148 break 149 else: 150 exit_event = m5.simulate(period) 151 sim_ticks += period 152 while exit_event.getCause() == "checkpoint": 153 exit_event = m5.simulate(sim_ticks - m5.curTick()) 154 if exit_event.getCause() == "simulate() limit reached": 155 m5.checkpoint(root, cptdir + "cpt.%d") 156 num_checkpoints += 1 157 158 else: #no checkpoints being taken via this script 159 exit_event = m5.simulate(maxtick) 160 161 while exit_event.getCause() == "checkpoint": 162 m5.checkpoint(root, cptdir + "cpt.%d") 163 num_checkpoints += 1 164 if num_checkpoints == max_checkpoints: 165 exit_cause = "maximum %d checkpoints dropped" % max_checkpoints 166 break 167 168 if maxtick == -1: 169 exit_event = m5.simulate(maxtick) 170 else: 171 exit_event = m5.simulate(maxtick - m5.curTick()) 172 173 exit_cause = exit_event.getCause() 174 175 if exit_cause == '': 176 exit_cause = exit_event.getCause() 177 print 'Exiting @ cycle', m5.curTick(), 'because ', exit_cause 178 179