se.py (10555:9f456b5cc474) se.py (10650:a6fe75e8296b)
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 96 unchanged lines hidden (view full) ---

105 process.output = outputs[idx]
106 if len(errouts) > idx:
107 process.errout = errouts[idx]
108
109 multiprocesses.append(process)
110 idx += 1
111
112 if options.smt:
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 96 unchanged lines hidden (view full) ---

105 process.output = outputs[idx]
106 if len(errouts) > idx:
107 process.errout = errouts[idx]
108
109 multiprocesses.append(process)
110 idx += 1
111
112 if options.smt:
113 assert(options.cpu_type == "detailed" or options.cpu_type == "inorder")
113 assert(options.cpu_type == "detailed")
114 return multiprocesses, idx
115 else:
116 return multiprocesses, 1
117
118
119parser = optparse.OptionParser()
120Options.addCommonOptions(parser)
121Options.addSEOptions(parser)

--- 153 unchanged lines hidden ---
114 return multiprocesses, idx
115 else:
116 return multiprocesses, 1
117
118
119parser = optparse.OptionParser()
120Options.addCommonOptions(parser)
121Options.addSEOptions(parser)

--- 153 unchanged lines hidden ---