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'
|
TARGET_ISA = 'mips'
|
||||||
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU'
|
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU'
|
||||||
PROTOCOL = 'MI_example'
|
PROTOCOL = 'MI_example'
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
TARGET_ISA = 'sparc'
|
TARGET_ISA = 'sparc'
|
||||||
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU,InOrderCPU'
|
CPU_MODELS = 'AtomicSimpleCPU,TimingSimpleCPU,O3CPU'
|
||||||
PROTOCOL = 'MI_example'
|
PROTOCOL = 'MI_example'
|
||||||
|
|
|
@ -50,7 +50,6 @@ _cpu_classes = {}
|
||||||
_cpu_aliases_all = [
|
_cpu_aliases_all = [
|
||||||
("timing", "TimingSimpleCPU"),
|
("timing", "TimingSimpleCPU"),
|
||||||
("atomic", "AtomicSimpleCPU"),
|
("atomic", "AtomicSimpleCPU"),
|
||||||
("inorder", "InOrderCPU"),
|
|
||||||
("minor", "MinorCPU"),
|
("minor", "MinorCPU"),
|
||||||
("detailed", "DerivO3CPU"),
|
("detailed", "DerivO3CPU"),
|
||||||
("kvm", ("ArmKvmCPU", "X86KvmCPU")),
|
("kvm", ("ArmKvmCPU", "X86KvmCPU")),
|
||||||
|
|
|
@ -110,7 +110,7 @@ def get_processes(options):
|
||||||
idx += 1
|
idx += 1
|
||||||
|
|
||||||
if options.smt:
|
if options.smt:
|
||||||
assert(options.cpu_type == "detailed" or options.cpu_type == "inorder")
|
assert(options.cpu_type == "detailed")
|
||||||
return multiprocesses, idx
|
return multiprocesses, idx
|
||||||
else:
|
else:
|
||||||
return multiprocesses, 1
|
return multiprocesses, 1
|
||||||
|
|
Loading…
Reference in a new issue