SConscript (10478:7135f938ff28) SConscript (10612:6332c9d471a8)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
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

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

74if env['TARGET_ISA'] == 'x86':
75 Source('multi_level_page_table.cc')
76
77if env['HAVE_DRAMSIM']:
78 SimObject('DRAMSim2.py')
79 Source('dramsim2_wrapper.cc')
80 Source('dramsim2.cc')
81
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
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

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

74if env['TARGET_ISA'] == 'x86':
75 Source('multi_level_page_table.cc')
76
77if env['HAVE_DRAMSIM']:
78 SimObject('DRAMSim2.py')
79 Source('dramsim2_wrapper.cc')
80 Source('dramsim2.cc')
81
82SimObject('MemChecker.py')
83Source('mem_checker.cc')
84Source('mem_checker_monitor.cc')
85
82DebugFlag('AddrRanges')
83DebugFlag('BaseXBar')
84DebugFlag('CoherentXBar')
85DebugFlag('NoncoherentXBar')
86DebugFlag('SnoopFilter')
87CompoundFlag('XBar', ['BaseXBar', 'CoherentXBar', 'NoncoherentXBar',
88 'SnoopFilter'])
89

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

94DebugFlag('DRAMState')
95DebugFlag('ExternalPort')
96DebugFlag('LLSC')
97DebugFlag('MMU')
98DebugFlag('MemoryAccess')
99DebugFlag('PacketQueue')
100
101DebugFlag("DRAMSim2")
86DebugFlag('AddrRanges')
87DebugFlag('BaseXBar')
88DebugFlag('CoherentXBar')
89DebugFlag('NoncoherentXBar')
90DebugFlag('SnoopFilter')
91CompoundFlag('XBar', ['BaseXBar', 'CoherentXBar', 'NoncoherentXBar',
92 'SnoopFilter'])
93

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

98DebugFlag('DRAMState')
99DebugFlag('ExternalPort')
100DebugFlag('LLSC')
101DebugFlag('MMU')
102DebugFlag('MemoryAccess')
103DebugFlag('PacketQueue')
104
105DebugFlag("DRAMSim2")
106
107DebugFlag("MemChecker")
108DebugFlag("MemCheckerMonitor")