diff options
author | Alexandru Dutu <alexandru.dutu@amd.com> | 2014-11-23 18:01:08 -0800 |
---|---|---|
committer | Alexandru Dutu <alexandru.dutu@amd.com> | 2014-11-23 18:01:08 -0800 |
commit | adbaa4dfde96d5aaf84adf0ae4989ef880aad726 (patch) | |
tree | d0f597266fc27c9b7bfa36312fee1de1fea6c450 /src/arch/x86/SConscript | |
parent | 335514dfdc63c6f8e34cc172e2582ceca548a07c (diff) | |
download | gem5-adbaa4dfde96d5aaf84adf0ae4989ef880aad726.tar.xz |
kvm, x86: Adding support for SE mode execution
This patch adds methods in KvmCPU model to handle KVM exits caused by syscall
instructions and page faults. These types of exits will be encountered if
KvmCPU is run in SE mode.
Diffstat (limited to 'src/arch/x86/SConscript')
-rw-r--r-- | src/arch/x86/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/SConscript b/src/arch/x86/SConscript index 1c8277482..bdc012259 100644 --- a/src/arch/x86/SConscript +++ b/src/arch/x86/SConscript @@ -64,6 +64,7 @@ if env['TARGET_ISA'] == 'x86': Source('pagetable.cc') Source('pagetable_walker.cc') Source('process.cc') + Source('pseudo_inst.cc') Source('remote_gdb.cc') Source('stacktrace.cc') Source('system.cc') |