se.py (11995:d3dbd5a6b19a) se.py (12014:f973caaf935d)
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

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

110 process.output = outputs[idx]
111 if len(errouts) > idx:
112 process.errout = errouts[idx]
113
114 multiprocesses.append(process)
115 idx += 1
116
117 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

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

110 process.output = outputs[idx]
111 if len(errouts) > idx:
112 process.errout = errouts[idx]
113
114 multiprocesses.append(process)
115 idx += 1
116
117 if options.smt:
118 assert(options.cpu_type == "detailed")
118 assert(options.cpu_type == "DerivO3CPU")
119 return multiprocesses, idx
120 else:
121 return multiprocesses, 1
122
123
124parser = optparse.OptionParser()
125Options.addCommonOptions(parser)
126Options.addSEOptions(parser)

--- 161 unchanged lines hidden ---
119 return multiprocesses, idx
120 else:
121 return multiprocesses, 1
122
123
124parser = optparse.OptionParser()
125Options.addCommonOptions(parser)
126Options.addSEOptions(parser)

--- 161 unchanged lines hidden ---