Simulation.py revision 3395:49e674f2fb5d
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(3000000)
120        m5.switchCpus(switch_cpu_list1)
121
122    num_checkpoints = 0
123    exit_cause = ''
124
125    if options.take_checkpoints:
126        [when, period] = options.take_checkpoints.split(",", 1)
127        when = int(when)
128        period = int(period)
129
130        print "when is ", when, " period is ", period
131        exit_event = m5.simulate(when)
132        while exit_event.getCause() == "checkpoint":
133            exit_event = m5.simulate(when - m5.curTick())
134
135        if exit_event.getCause() == "simulate() limit reached":
136            m5.checkpoint(root, cptdir + "cpt.%d")
137            num_checkpoints += 1
138
139        sim_ticks = when
140        exit_cause = "maximum %d checkpoints dropped" % max_checkpoints
141        while num_checkpoints < max_checkpoints:
142            if (sim_ticks + period) > maxtick and maxtick != -1:
143                exit_event = m5.simulate(maxtick - sim_ticks)
144                exit_cause = exit_event.getCause()
145                break
146            else:
147                exit_event = m5.simulate(period)
148                sim_ticks += period
149                while exit_event.getCause() == "checkpoint":
150                    exit_event = m5.simulate(sim_ticks - m5.curTick())
151                if exit_event.getCause() == "simulate() limit reached":
152                    m5.checkpoint(root, cptdir + "cpt.%d")
153                    num_checkpoints += 1
154
155    else: #no checkpoints being taken via this script
156        exit_event = m5.simulate(maxtick)
157
158        while exit_event.getCause() == "checkpoint":
159            m5.checkpoint(root, cptdir + "cpt.%d")
160            num_checkpoints += 1
161            if num_checkpoints == max_checkpoints:
162                exit_cause =  "maximum %d checkpoints dropped" % max_checkpoints
163                break
164
165            if maxtick == -1:
166                exit_event = m5.simulate(maxtick)
167            else:
168                exit_event = m5.simulate(maxtick - m5.curTick())
169
170            exit_cause = exit_event.getCause()
171
172    if exit_cause == '':
173        exit_cause = exit_event.getCause()
174    print 'Exiting @ cycle', m5.curTick(), 'because ', exit_cause
175
176