Started to add support for O3 for sparc.

--HG--
extra : convert_revision : 3f94bda14024a09b9fbd7a5d13284d4987349ddf
This commit is contained in:
Gabe Black 2006-08-11 20:29:15 -04:00
parent 95dc8e4d57
commit fc8b4f5253
2 changed files with 10 additions and 7 deletions

View file

@ -59,13 +59,12 @@ elif env['TARGET_ISA'] == 'mips':
mips/cpu_builder.cc
''')
elif env['TARGET_ISA'] == 'sparc':
sys.exit('O3 CPU does not support Sparc')
#sources += Split('''
# sparc/dyn_inst.cc
# sparc/cpu.cc
# sparc/thread_context.cc
# sparc/cpu_builder.cc
# ''')
sources += Split('''
sparc/dyn_inst.cc
sparc/cpu.cc
sparc/thread_context.cc
sparc/cpu_builder.cc
''')
else:
sys.exit('O3 CPU does not support the \'%s\' ISA' % env['TARGET_ISA'])

View file

@ -41,6 +41,10 @@
template <class Impl> class MipsDynInst;
struct MipsSimpleImpl;
typedef MipsDynInst<MipsSimpleImpl> O3DynInst;
#elif THE_ISA == SPARC_ISA
template <class Impl> class SparcDynInst;
struct SparcSimpleImpl;
typedef SparcDynInst<SparcSimpleImpl> O3DynInst;
#else
#error "O3DynInst not defined for this ISA"
#endif