at: http://www.arm.com/ResearchEnablement/SystemModeling
"""
-from __future__ import print_function
-from __future__ import absolute_import
-
import os
import m5
from m5.util import addToPath
# System components used by the bigLITTLE.py configuration script
-from __future__ import print_function
-from __future__ import absolute_import
-
-import six
-
import m5
from m5.objects import *
m5.util.addToPath('../../')
from common.Caches import *
from common import ObjectList
-if six.PY3:
- long = int
-
have_kvm = "ArmV8KvmCPU" in ObjectList.cpu_list.get_names()
have_fastmodel = "FastModelCortexA76" in ObjectList.cpu_list.get_names()
self.iobridge = Bridge(delay='50ns')
# Device DMA -> MEM
mem_range = self.realview._mem_regions[0]
- assert long(mem_range.size()) >= long(Addr(mem_size))
+ assert int(mem_range.size()) >= int(Addr(mem_size))
self.mem_ranges = [
AddrRange(start=mem_range.start, size=mem_size) ]
# This configuration file extends the example ARM big.LITTLE(tm)
# configuration to enabe dist-gem5 siulations of big.LITTLE systems.
-from __future__ import print_function
-from __future__ import absolute_import
-
import argparse
import os
# This is an example configuration script for full system simulation of
# a generic ARM bigLITTLE system.
-
-from __future__ import print_function
-from __future__ import absolute_import
-
import argparse
import os
import sys
# This configuration file extends the example ARM big.LITTLE(tm)
# with example power models.
-from __future__ import print_function
-from __future__ import absolute_import
-
import argparse
import os
at: http://www.arm.com/ResearchEnablement/SystemModeling
"""
-from __future__ import print_function
-from __future__ import absolute_import
-
import os
import m5
from m5.util import addToPath
at: http://www.arm.com/ResearchEnablement/SystemModeling
"""
-from __future__ import print_function
-from __future__ import absolute_import
-
import os
import m5
from m5.util import addToPath
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-from __future__ import print_function
-from __future__ import absolute_import
-
import inspect
import m5
from m5.objects import *