Fix up code to be able to use the Checker.
SConstruct: Remove check for Checker from this SConstruct src/arch/SConscript: Specific check if CheckerCPU is being used. Not the cleanest, but works for now. src/cpu/SConscript: Code to handle using the CheckerCPU a little better. Allows -c to be used normally. --HG-- extra : convert_revision : 0a82f16db0f38e5ce114d08368477bd211331fa3
This commit is contained in:
parent
f3d74759ca
commit
dfe0ea6cba
3 changed files with 20 additions and 10 deletions
|
@ -472,10 +472,6 @@ for build_path in build_paths:
|
||||||
env.ParseConfig(mysql_config_libs)
|
env.ParseConfig(mysql_config_libs)
|
||||||
env.ParseConfig(mysql_config_include)
|
env.ParseConfig(mysql_config_include)
|
||||||
|
|
||||||
# Check if the Checker is being used. If so append it to env['CPU_MODELS']
|
|
||||||
if env['USE_CHECKER']:
|
|
||||||
env['CPU_MODELS'].append('CheckerCPU')
|
|
||||||
|
|
||||||
# Save sticky option settings back to current options file
|
# Save sticky option settings back to current options file
|
||||||
sticky_opts.Save(current_opts_file, env)
|
sticky_opts.Save(current_opts_file, env)
|
||||||
|
|
||||||
|
|
|
@ -128,6 +128,11 @@ isa_desc_gen_files = Split('decoder.cc decoder.hh')
|
||||||
isa_desc_gen_files += [CpuModel.dict[cpu].filename
|
isa_desc_gen_files += [CpuModel.dict[cpu].filename
|
||||||
for cpu in env['CPU_MODELS']]
|
for cpu in env['CPU_MODELS']]
|
||||||
|
|
||||||
|
# Also include the CheckerCPU as one of the models if it is being
|
||||||
|
# enabled via command line.
|
||||||
|
if env['USE_CHECKER']:
|
||||||
|
isa_desc_gen_files += [CpuModel.dict['CheckerCPU'].filename]
|
||||||
|
|
||||||
# The emitter patches up the sources & targets to include the
|
# The emitter patches up the sources & targets to include the
|
||||||
# autogenerated files as targets and isa parser itself as a source.
|
# autogenerated files as targets and isa parser itself as a source.
|
||||||
def isa_desc_emitter(target, source, env):
|
def isa_desc_emitter(target, source, env):
|
||||||
|
|
|
@ -68,6 +68,13 @@ mem_comp_sig_template = '''
|
||||||
virtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
|
virtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
# Generate a temporary CPU list, including the CheckerCPU if
|
||||||
|
# it's enabled. This isn't used for anything else other than StaticInst
|
||||||
|
# headers.
|
||||||
|
temp_cpu_list = env['CPU_MODELS']
|
||||||
|
if env['USE_CHECKER']:
|
||||||
|
temp_cpu_list.append('CheckerCPU')
|
||||||
|
|
||||||
# Generate header.
|
# Generate header.
|
||||||
def gen_cpu_exec_signatures(target, source, env):
|
def gen_cpu_exec_signatures(target, source, env):
|
||||||
f = open(str(target[0]), 'w')
|
f = open(str(target[0]), 'w')
|
||||||
|
@ -75,7 +82,7 @@ def gen_cpu_exec_signatures(target, source, env):
|
||||||
#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
|
#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
|
||||||
#define __CPU_STATIC_INST_EXEC_SIGS_HH__
|
#define __CPU_STATIC_INST_EXEC_SIGS_HH__
|
||||||
'''
|
'''
|
||||||
for cpu in env['CPU_MODELS']:
|
for cpu in temp_cpu_list:
|
||||||
xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
|
xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
|
||||||
print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
|
print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
|
||||||
print >> f, '''
|
print >> f, '''
|
||||||
|
@ -85,12 +92,14 @@ def gen_cpu_exec_signatures(target, source, env):
|
||||||
# Generate string that gets printed when header is rebuilt
|
# Generate string that gets printed when header is rebuilt
|
||||||
def gen_sigs_string(target, source, env):
|
def gen_sigs_string(target, source, env):
|
||||||
return "Generating static_inst_exec_sigs.hh: " \
|
return "Generating static_inst_exec_sigs.hh: " \
|
||||||
+ ', '.join(env['CPU_MODELS'])
|
+ ', '.join(temp_cpu_list)
|
||||||
|
|
||||||
# Add command to generate header to environment.
|
# Add command to generate header to environment.
|
||||||
env.Command('static_inst_exec_sigs.hh', models_db,
|
env.Command('static_inst_exec_sigs.hh', models_db,
|
||||||
Action(gen_cpu_exec_signatures, gen_sigs_string,
|
Action(gen_cpu_exec_signatures, gen_sigs_string,
|
||||||
varlist = ['CPU_MODELS']))
|
varlist = temp_cpu_list))
|
||||||
|
|
||||||
|
env.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER']))
|
||||||
|
|
||||||
# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True
|
# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True
|
||||||
# and one of these are not being used.
|
# and one of these are not being used.
|
||||||
|
@ -148,7 +157,7 @@ if 'AlphaO3CPU' in env['CPU_MODELS']:
|
||||||
o3/store_set.cc
|
o3/store_set.cc
|
||||||
o3/tournament_pred.cc
|
o3/tournament_pred.cc
|
||||||
''')
|
''')
|
||||||
if 'CheckerCPU' in env['CPU_MODELS']:
|
if env['USE_CHECKER']:
|
||||||
sources += Split('o3/checker_builder.cc')
|
sources += Split('o3/checker_builder.cc')
|
||||||
|
|
||||||
if 'OzoneSimpleCPU' in env['CPU_MODELS']:
|
if 'OzoneSimpleCPU' in env['CPU_MODELS']:
|
||||||
|
@ -170,10 +179,10 @@ if 'OzoneCPU' in env['CPU_MODELS']:
|
||||||
ozone/lw_back_end.cc
|
ozone/lw_back_end.cc
|
||||||
ozone/lw_lsq.cc
|
ozone/lw_lsq.cc
|
||||||
''')
|
''')
|
||||||
if 'CheckerCPU' in env['CPU_MODELS']:
|
if env['USE_CHECKER']:
|
||||||
sources += Split('ozone/checker_builder.cc')
|
sources += Split('ozone/checker_builder.cc')
|
||||||
|
|
||||||
if 'CheckerCPU' in env['CPU_MODELS']:
|
if env['USE_CHECKER']:
|
||||||
checker_supports = False
|
checker_supports = False
|
||||||
for i in CheckerSupportedCPUList:
|
for i in CheckerSupportedCPUList:
|
||||||
if i in env['CPU_MODELS']:
|
if i in env['CPU_MODELS']:
|
||||||
|
|
Loading…
Reference in a new issue