projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d75e4a
)
In the case that we generate a fault (e.g. a tlb miss) on a microcoded instruction...
author
Ali Saidi
<saidi@eecs.umich.edu>
Wed, 17 Jan 2007 00:12:33 +0000
(19:12 -0500)
committer
Ali Saidi
<saidi@eecs.umich.edu>
Wed, 17 Jan 2007 00:12:33 +0000
(19:12 -0500)
This way we'll jump immediately to the handler
--HG--
extra : convert_revision :
36218d3a5c2342337e66e1229ea2219533efd41e
src/cpu/simple/base.cc
patch
|
blob
|
history
diff --git
a/src/cpu/simple/base.cc
b/src/cpu/simple/base.cc
index 4e5754bbb97b266e2c8e2703ffb492b0d4caf060..ddccc5a9b8670e506a778f98656866231a20f1d5 100644
(file)
--- a/
src/cpu/simple/base.cc
+++ b/
src/cpu/simple/base.cc
@@
-437,6
+437,7
@@
void
BaseSimpleCPU::advancePC(Fault fault)
{
if (fault != NoFault) {
+ curMacroStaticInst = StaticInst::nullStaticInstPtr;
fault->invoke(tc);
} else {
//If we're at the last micro op for this instruction