scons: Do not build the InOrderCPU

One step closer to shifting focus to the MinorCPU.
This commit is contained in:
Andreas Hansson 2015-01-20 08:12:45 -05:00
parent de162ad968
commit 3cb9c361e2
4 changed files with 3 additions and 4 deletions

View File

@ -1,3 +1,3 @@
TARGET_ISA = 'mips'
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU'
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU'
PROTOCOL = 'MI_example'

View File

@ -1,3 +1,3 @@
TARGET_ISA = 'sparc'
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU'
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU'
PROTOCOL = 'MI_example'

View File

@ -50,7 +50,6 @@ _cpu_classes = {}
_cpu_aliases_all = [
("timing", "TimingSimpleCPU"),
("atomic", "AtomicSimpleCPU"),
("inorder", "InOrderCPU"),
("minor", "MinorCPU"),
("detailed", "DerivO3CPU"),
("kvm", ("ArmKvmCPU", "X86KvmCPU")),

View File

@ -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