scons: Do not build the InOrderCPU
One step closer to shifting focus to the MinorCPU.
This commit is contained in:
parent
de162ad968
commit
3cb9c361e2
4 changed files with 3 additions and 4 deletions
|
@ -1,3 +1,3 @@
|
|||
TARGET_ISA = 'mips'
|
||||
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU'
|
||||
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU'
|
||||
PROTOCOL = 'MI_example'
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TARGET_ISA = 'sparc'
|
||||
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU'
|
||||
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU'
|
||||
PROTOCOL = 'MI_example'
|
||||
|
|
|
@ -50,7 +50,6 @@ _cpu_classes = {}
|
|||
_cpu_aliases_all = [
|
||||
("timing", "TimingSimpleCPU"),
|
||||
("atomic", "AtomicSimpleCPU"),
|
||||
("inorder", "InOrderCPU"),
|
||||
("minor", "MinorCPU"),
|
||||
("detailed", "DerivO3CPU"),
|
||||
("kvm", ("ArmKvmCPU", "X86KvmCPU")),
|
||||
|
|
|
@ -110,7 +110,7 @@ def get_processes(options):
|
|||
idx += 1
|
||||
|
||||
if options.smt:
|
||||
assert(options.cpu_type == "detailed" or options.cpu_type == "inorder")
|
||||
assert(options.cpu_type == "detailed")
|
||||
return multiprocesses, idx
|
||||
else:
|
||||
return multiprocesses, 1
|
||||
|
|
Loading…
Reference in a new issue