Make Alpha pseudo-insts available from SE mode.

This commit is contained in:
Steve Reinhardt
2008-12-17 09:51:18 -08:00
parent 02cd18f536
commit 1704ba2273
6 changed files with 57 additions and 29 deletions

View File

@@ -71,13 +71,14 @@ class BaseCPU(MemObject):
checker = Param.BaseCPU("checker CPU")
do_checkpoint_insts = Param.Bool(True,
"enable checkpoint pseudo instructions")
do_statistics_insts = Param.Bool(True,
"enable statistics pseudo instructions")
if build_env['FULL_SYSTEM']:
profile = Param.Latency('0ns', "trace the kernel stack")
do_quiesce = Param.Bool(True, "enable quiesce instructions")
do_checkpoint_insts = Param.Bool(True,
"enable checkpoint pseudo instructions")
do_statistics_insts = Param.Bool(True,
"enable statistics pseudo instructions")
else:
workload = VectorParam.Process("processes to run")