summaryrefslogtreecommitdiff
path: root/src/arch/x86/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-10-13 02:22:23 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-10-13 02:22:23 -0700
commit8adc6781bf5741cca9a27e9e2c523b4def5a3bc3 (patch)
tree4beebe8b1f71fe8847045bd6e57182c6ab4e1ec8 /src/arch/x86/SConscript
parent4b2e5ebeada762e88ad97397b8db3ebf4658b70f (diff)
downloadgem5-8adc6781bf5741cca9a27e9e2c523b4def5a3bc3.tar.xz
X86: Turn on the page table walker in SE mode.
Diffstat (limited to 'src/arch/x86/SConscript')
-rw-r--r--src/arch/x86/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/SConscript b/src/arch/x86/SConscript
index 1b443cd83..5ac092185 100644
--- a/src/arch/x86/SConscript
+++ b/src/arch/x86/SConscript
@@ -57,6 +57,7 @@ if env['TARGET_ISA'] == 'x86':
Source('isa.cc')
Source('nativetrace.cc')
Source('pagetable.cc')
+ Source('pagetable_walker.cc')
Source('predecoder.cc')
Source('predecoder_tables.cc')
Source('remote_gdb.cc')
@@ -70,18 +71,17 @@ if env['TARGET_ISA'] == 'x86':
DebugFlag('Faults', "Trace all faults/exceptions/traps")
DebugFlag('LocalApic', "Local APIC debugging")
+ DebugFlag('PageTableWalker', \
+ "Page table walker state machine debugging")
DebugFlag('Predecoder', "Predecoder debug output")
DebugFlag('X86', "Generic X86 ISA debugging")
if env['FULL_SYSTEM']:
- DebugFlag('PageTableWalker', \
- "Page table walker state machine debugging")
SimObject('X86System.py')
# Full-system sources
Source('linux/system.cc')
- Source('pagetable_walker.cc')
Source('system.cc')
Source('stacktrace.cc')
Source('vtophys.cc')