SConscript (10131:cd2270b2f758) | SConscript (10133:0749c3ec92f4) |
---|---|
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 --- 73 unchanged lines hidden (view full) --- 82DebugFlag('CommMonitor') 83DebugFlag('DRAM') 84DebugFlag('LLSC') 85DebugFlag('MMU') 86DebugFlag('MemoryAccess') 87DebugFlag('PacketQueue') 88 89DebugFlag("DRAMSim2") | 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 --- 73 unchanged lines hidden (view full) --- 82DebugFlag('CommMonitor') 83DebugFlag('DRAM') 84DebugFlag('LLSC') 85DebugFlag('MMU') 86DebugFlag('MemoryAccess') 87DebugFlag('PacketQueue') 88 89DebugFlag("DRAMSim2") |
90 91DebugFlag('ProtocolTrace') 92DebugFlag('RubyCache') 93DebugFlag('RubyCacheTrace') 94DebugFlag('RubyDma') 95DebugFlag('RubyGenerated') 96DebugFlag('RubyMemory') 97DebugFlag('RubyNetwork') 98DebugFlag('RubyPort') 99DebugFlag('RubyPrefetcher') 100DebugFlag('RubyQueue') 101DebugFlag('RubySequencer') 102DebugFlag('RubySlicc') 103DebugFlag('RubySystem') 104DebugFlag('RubyTester') 105DebugFlag('RubyStats') 106DebugFlag('RubyResourceStalls') 107 108CompoundFlag('Ruby', [ 'RubyQueue', 'RubyNetwork', 'RubyTester', 109 'RubyGenerated', 'RubySlicc', 'RubySystem', 'RubyCache', 110 'RubyMemory', 'RubyDma', 'RubyPort', 'RubySequencer', 'RubyCacheTrace', 111 'RubyPrefetcher']) | |