AlphaTLB.py (4762:c94e103c83ad) AlphaTLB.py (5610:0e1e9c186769)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 21 unchanged lines hidden (view full) ---

30from m5.params import *
31class AlphaTLB(SimObject):
32 type = 'AlphaTLB'
33 abstract = True
34 size = Param.Int("TLB size")
35
36class AlphaDTB(AlphaTLB):
37 type = 'AlphaDTB'
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 21 unchanged lines hidden (view full) ---

30from m5.params import *
31class AlphaTLB(SimObject):
32 type = 'AlphaTLB'
33 abstract = True
34 size = Param.Int("TLB size")
35
36class AlphaDTB(AlphaTLB):
37 type = 'AlphaDTB'
38 cxx_namespace = 'AlphaISA'
39 cxx_class = 'DTB'
40
38 cxx_class = 'AlphaISA::DTB'
41 size = 64
42
43class AlphaITB(AlphaTLB):
44 type = 'AlphaITB'
39 size = 64
40
41class AlphaITB(AlphaTLB):
42 type = 'AlphaITB'
45 cxx_namespace = 'AlphaISA'
46 cxx_class = 'ITB'
47
43 cxx_class = 'AlphaISA::ITB'
48 size = 48
44 size = 48