move: put predictor includes and cc files into the same place

--HG--
rename : src/cpu/2bit_local_pred.cc => src/cpu/pred/2bit_local.cc
rename : src/cpu/o3/2bit_local_pred.hh => src/cpu/pred/2bit_local.hh
rename : src/cpu/btb.cc => src/cpu/pred/btb.cc
rename : src/cpu/o3/btb.hh => src/cpu/pred/btb.hh
rename : src/cpu/ras.cc => src/cpu/pred/ras.cc
rename : src/cpu/o3/ras.hh => src/cpu/pred/ras.hh
rename : src/cpu/tournament_pred.cc => src/cpu/pred/tournament.cc
rename : src/cpu/o3/tournament_pred.hh => src/cpu/pred/tournament.hh
This commit is contained in:
Nathan Binkert
2009-06-04 21:50:20 -07:00
parent e30c62ad99
commit 4e34266245
12 changed files with 53 additions and 25 deletions

View File

@@ -126,13 +126,6 @@ Source('simple_thread.cc')
Source('thread_context.cc')
Source('thread_state.cc')
if 'InOrderCPU' in env['CPU_MODELS'] or 'O3CPU' in env['CPU_MODELS']:
Source('btb.cc')
Source('tournament_pred.cc')
Source('2bit_local_pred.cc')
Source('ras.cc')
TraceFlag('FreeList')
if env['FULL_SYSTEM']:
SimObject('IntrControl.py')