11046SN/A# -*- mode:python -*-
21046SN/A
31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
41046SN/A# All rights reserved.
51046SN/A#
61046SN/A# Redistribution and use in source and binary forms, with or without
71046SN/A# modification, are permitted provided that the following conditions are
81046SN/A# met: redistributions of source code must retain the above copyright
91046SN/A# notice, this list of conditions and the following disclaimer;
101046SN/A# redistributions in binary form must reproduce the above copyright
111046SN/A# notice, this list of conditions and the following disclaimer in the
121046SN/A# documentation and/or other materials provided with the distribution;
131046SN/A# neither the name of the copyright holders nor the names of its
141046SN/A# contributors may be used to endorse or promote products derived from
151046SN/A# this software without specific prior written permission.
161046SN/A#
171046SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
181046SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
191046SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
201046SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
211046SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
221046SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
231046SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
241046SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
251046SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
261046SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
271046SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt
302665Ssaidi@eecs.umich.edu#          Nathan Binkert
311046SN/A
324202Sbinkertn@umich.eduImport('*')
331530SN/A
345522Snate@binkert.orgPySource('', 'importer.py')
354382Sbinkertn@umich.eduPySource('m5', 'm5/__init__.py')
364382Sbinkertn@umich.eduPySource('m5', 'm5/SimObject.py')
375471Snate@binkert.orgPySource('m5', 'm5/config.py')
385801Snate@binkert.orgPySource('m5', 'm5/core.py')
395801Snate@binkert.orgPySource('m5', 'm5/debug.py')
404382Sbinkertn@umich.eduPySource('m5', 'm5/event.py')
414382Sbinkertn@umich.eduPySource('m5', 'm5/main.py')
425470Snate@binkert.orgPySource('m5', 'm5/options.py')
434382Sbinkertn@umich.eduPySource('m5', 'm5/params.py')
444382Sbinkertn@umich.eduPySource('m5', 'm5/proxy.py')
454762Snate@binkert.orgPySource('m5', 'm5/simulate.py')
464382Sbinkertn@umich.eduPySource('m5', 'm5/ticks.py')
475799Snate@binkert.orgPySource('m5', 'm5/trace.py')
487674Snate@binkert.orgPySource('m5.objects', 'm5/objects/__init__.py')
498295Snate@binkert.orgPySource('m5.stats', 'm5/stats/__init__.py')
505467Snate@binkert.orgPySource('m5.util', 'm5/util/__init__.py')
515467Snate@binkert.orgPySource('m5.util', 'm5/util/attrdict.py')
526502Snate@binkert.orgPySource('m5.util', 'm5/util/code_formatter.py')
536654Snate@binkert.orgPySource('m5.util', 'm5/util/convert.py')
548999Suri.wiener@arm.comPySource('m5.util', 'm5/util/dot_writer.py')
5513992Stiago.muck@arm.comPySource('m5.util', 'm5/util/dot_writer_ruby.py')
566501Snate@binkert.orgPySource('m5.util', 'm5/util/grammar.py')
575467Snate@binkert.orgPySource('m5.util', 'm5/util/jobfile.py')
585467Snate@binkert.orgPySource('m5.util', 'm5/util/multidict.py')
596654Snate@binkert.orgPySource('m5.util', 'm5/util/smartdict.py')
607503Snate@binkert.orgPySource('m5.util', 'm5/util/sorteddict.py')
617816Ssteve.reinhardt@amd.comPySource('m5.util', 'm5/util/terminal.py')
6211988Sandreas.sandberg@arm.comPySource('m5.util', 'm5/util/pybind.py')
6312469Sglenn.bergmans@arm.comPySource('m5.util', 'm5/util/fdthelper.py')
642667Sstever@eecs.umich.edu
654382Sbinkertn@umich.eduPySource('m5.internal', 'm5/internal/__init__.py')
667677Snate@binkert.orgPySource('m5.internal', 'm5/internal/params.py')
6712468Sglenn.bergmans@arm.comPySource('m5.ext', 'm5/ext/__init__.py')
6812468Sglenn.bergmans@arm.comPySource('m5.ext.pyfdt', 'm5/ext/pyfdt/pyfdt.py')
6912468Sglenn.bergmans@arm.comPySource('m5.ext.pyfdt', 'm5/ext/pyfdt/__init__.py')
7011988Sandreas.sandberg@arm.com
7112302Sgabeblack@google.comSource('pybind11/core.cc', add_tags='python')
7212302Sgabeblack@google.comSource('pybind11/debug.cc', add_tags='python')
7312302Sgabeblack@google.comSource('pybind11/event.cc', add_tags='python')
7412302Sgabeblack@google.comSource('pybind11/stats.cc', add_tags='python')
75