-# Copyright (c) 2012, 2017 ARM Limited
+# Copyright (c) 2012, 2017-2018 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
except (TypeError, AttributeError):
return False
+def _cpu_subclass_tester(name):
+ cpu_class = getattr(m5.objects, name, None)
+
+ def tester(cls):
+ return cpu_class is not None and cls is not None and \
+ issubclass(cls, cpu_class)
+
+ return tester
+
+is_kvm_cpu = _cpu_subclass_tester("BaseKvmCPU")
+
def get(name):
"""Get a CPU class from a user provided class name or alias."""
from common.Caches import *
from common import Options
-
-# Check if KVM support has been enabled, we might need to do VM
-# configuration if that's the case.
-have_kvm_support = 'BaseKvmCPU' in globals()
-def is_kvm_cpu(cpu_class):
- return have_kvm_support and cpu_class != None and \
- issubclass(cpu_class, BaseKvmCPU)
-
def cmd_line_template():
if options.command_line and options.command_line_file:
print("Error: --command-line and --command-line-file are "
test_sys.cpu = [TestCPUClass(clk_domain=test_sys.cpu_clk_domain, cpu_id=i)
for i in xrange(np)]
- if is_kvm_cpu(TestCPUClass) or is_kvm_cpu(FutureClass):
+ if CpuConfig.is_kvm_cpu(TestCPUClass) or CpuConfig.is_kvm_cpu(FutureClass):
test_sys.kvm_vm = KvmVM()
if options.ruby:
if options.kernel is not None:
drive_sys.kernel = binary(options.kernel)
- if is_kvm_cpu(DriveCPUClass):
+ if CpuConfig.is_kvm_cpu(DriveCPUClass):
drive_sys.kvm_vm = KvmVM()
drive_sys.iobridge = Bridge(delay='50ns',
from common.Caches import *
from common.cpu2000 import *
-# Check if KVM support has been enabled, we might need to do VM
-# configuration if that's the case.
-have_kvm_support = 'BaseKvmCPU' in globals()
-def is_kvm_cpu(cpu_class):
- return have_kvm_support and cpu_class != None and \
- issubclass(cpu_class, BaseKvmCPU)
-
def get_processes(options):
"""Interprets provided options and returns a list of processes"""
for cpu in system.cpu:
cpu.clk_domain = system.cpu_clk_domain
-if is_kvm_cpu(CPUClass) or is_kvm_cpu(FutureClass):
+if CpuConfig.is_kvm_cpu(CPUClass) or CpuConfig.is_kvm_cpu(FutureClass):
if buildEnv['TARGET_ISA'] == 'x86':
system.kvm_vm = KvmVM()
for process in multiprocesses: