summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/SConscript
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:20 -0500
committerKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:20 -0500
commitab3d37d398a59e15cec656ca2b8790a7bc19ad48 (patch)
tree5ef5db187167d4f821a967c42cb0b383c55c8bf5 /src/cpu/inorder/SConscript
parentf80508de653e6b97d1cdd009dccae62d68ffabf0 (diff)
downloadgem5-ab3d37d398a59e15cec656ca2b8790a7bc19ad48.tar.xz
inorder: implement separate fetch unit
instead of having one cache-unit class be responsible for both data and code accesses, separate code that is just for fetch in it's own derived class off the original base class. This makes the code easier to manage as well as handle future cases of special fetch handling
Diffstat (limited to 'src/cpu/inorder/SConscript')
-rw-r--r--src/cpu/inorder/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/inorder/SConscript b/src/cpu/inorder/SConscript
index 37c235759..ae5ec0257 100644
--- a/src/cpu/inorder/SConscript
+++ b/src/cpu/inorder/SConscript
@@ -75,6 +75,7 @@ if 'InOrderCPU' in env['CPU_MODELS']:
Source('resources/bpred_unit.cc')
Source('resources/branch_predictor.cc')
Source('resources/cache_unit.cc')
+ Source('resources/fetch_unit.cc')
Source('resources/use_def.cc')
Source('resources/decode_unit.cc')
Source('resources/inst_buffer.cc')