diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-09-11 17:57:20 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-09-11 17:57:20 -0400 |
commit | 46502851abffd70328ef605b1fa6056f873848e9 (patch) | |
tree | c4572be025f11ac96b7ab6ed27317e8430498962 /src/arch/alpha/isa | |
parent | 8bc3c2b19231df072fbc6d5dd29db612fff407dd (diff) | |
download | gem5-46502851abffd70328ef605b1fa6056f873848e9.tar.xz |
add annotation code to m5
configs/common/Benchmarks.py:
add annotate test app
src/SConscript:
add annotate.cc to lis
src/arch/alpha/isa/decoder.isa:
add annotate instructions
src/base/traceflags.py:
Add annotate trace flag
src/sim/pseudo_inst.cc:
src/sim/pseudo_inst.hh:
add annotate pseudo ops
util/m5/m5op.S:
util/m5/m5op.h:
add anotate ops
--HG--
extra : convert_revision : 7f965c0d84e41ce34f2ec8ec27a009276d67d8d6
Diffstat (limited to 'src/arch/alpha/isa')
-rw-r--r-- | src/arch/alpha/isa/decoder.isa | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/arch/alpha/isa/decoder.isa b/src/arch/alpha/isa/decoder.isa index f449d2d69..30959c72e 100644 --- a/src/arch/alpha/isa/decoder.isa +++ b/src/arch/alpha/isa/decoder.isa @@ -823,7 +823,12 @@ decode OPCODE default Unknown::unknown() { 0x54: m5panic({{ panic("M5 panic instruction called at pc=%#x.", xc->readPC()); }}, IsNonSpeculative); - + 0x55: m5anBegin({{ + AlphaPseudo::anBegin(xc->tcBase(), R16); + }}, IsNonSpeculative); + 0x56: m5anWait({{ + AlphaPseudo::anWait(xc->tcBase(), R16, R17); + }}, IsNonSpeculative); } } #endif |