CpuConfig.py (10259:ebb376f73dd2) | CpuConfig.py (10650:a6fe75e8296b) |
---|---|
1# Copyright (c) 2012 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 --- 36 unchanged lines hidden (view full) --- 45 46# CPU aliases. The CPUs listed here might not be compiled, we make 47# sure they exist before we add them to the CPU list. A target may be 48# specified as a tuple, in which case the first available CPU model in 49# the tuple will be used as the target. 50_cpu_aliases_all = [ 51 ("timing", "TimingSimpleCPU"), 52 ("atomic", "AtomicSimpleCPU"), | 1# Copyright (c) 2012 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 --- 36 unchanged lines hidden (view full) --- 45 46# CPU aliases. The CPUs listed here might not be compiled, we make 47# sure they exist before we add them to the CPU list. A target may be 48# specified as a tuple, in which case the first available CPU model in 49# the tuple will be used as the target. 50_cpu_aliases_all = [ 51 ("timing", "TimingSimpleCPU"), 52 ("atomic", "AtomicSimpleCPU"), |
53 ("inorder", "InOrderCPU"), | |
54 ("minor", "MinorCPU"), 55 ("detailed", "DerivO3CPU"), 56 ("kvm", ("ArmKvmCPU", "X86KvmCPU")), 57 ] 58 59# Filtered list of aliases. Only aliases for existing CPUs exist in 60# this list. 61_cpu_aliases = {} --- 73 unchanged lines hidden --- | 53 ("minor", "MinorCPU"), 54 ("detailed", "DerivO3CPU"), 55 ("kvm", ("ArmKvmCPU", "X86KvmCPU")), 56 ] 57 58# Filtered list of aliases. Only aliases for existing CPUs exist in 59# this list. 60_cpu_aliases = {} --- 73 unchanged lines hidden --- |