SConscript (11052:3137d34acf29) | SConscript (11755:81db27b8869a) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2012 Mark D. Hill and David A. Wood 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 24 unchanged lines hidden (view full) --- 33if env['PROTOCOL'] == 'None': 34 Return() 35 36SimObject('RubyCache.py') 37SimObject('DirectoryMemory.py') 38SimObject('LRUReplacementPolicy.py') 39SimObject('PseudoLRUReplacementPolicy.py') 40SimObject('ReplacementPolicy.py') | 1# -*- mode:python -*- 2 3# Copyright (c) 2012 Mark D. Hill and David A. Wood 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 24 unchanged lines hidden (view full) --- 33if env['PROTOCOL'] == 'None': 34 Return() 35 36SimObject('RubyCache.py') 37SimObject('DirectoryMemory.py') 38SimObject('LRUReplacementPolicy.py') 39SimObject('PseudoLRUReplacementPolicy.py') 40SimObject('ReplacementPolicy.py') |
41SimObject('RubyMemoryControl.py') | |
42SimObject('RubyPrefetcher.py') 43SimObject('WireBuffer.py') 44 45Source('AbstractReplacementPolicy.cc') 46Source('DirectoryMemory.cc') 47Source('CacheMemory.cc') 48Source('LRUPolicy.cc') 49Source('PseudoLRUPolicy.cc') 50Source('WireBuffer.cc') | 41SimObject('RubyPrefetcher.py') 42SimObject('WireBuffer.py') 43 44Source('AbstractReplacementPolicy.cc') 45Source('DirectoryMemory.cc') 46Source('CacheMemory.cc') 47Source('LRUPolicy.cc') 48Source('PseudoLRUPolicy.cc') 49Source('WireBuffer.cc') |
51Source('RubyMemoryControl.cc') 52Source('MemoryNode.cc') | |
53Source('PersistentTable.cc') 54Source('Prefetcher.cc') 55Source('TimerTable.cc') 56Source('BankedArray.cc') | 50Source('PersistentTable.cc') 51Source('Prefetcher.cc') 52Source('TimerTable.cc') 53Source('BankedArray.cc') |