diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2012-09-25 11:49:40 -0500 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2012-09-25 11:49:40 -0500 |
commit | 0c99d21ad748371e801508a8c3652e07e2e56f93 (patch) | |
tree | a2a52170a8a88ce919cecb4309428999e5380cfd /src/cpu/translation.hh | |
parent | 29acf859ebde2cf219ae636f60d8a46db7a1bb94 (diff) | |
download | gem5-0c99d21ad748371e801508a8c3652e07e2e56f93.tar.xz |
ARM: Squash outstanding walks when instructions are squashed.
Diffstat (limited to 'src/cpu/translation.hh')
-rw-r--r-- | src/cpu/translation.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cpu/translation.hh b/src/cpu/translation.hh index b6bc2182c..90fffa03d 100644 --- a/src/cpu/translation.hh +++ b/src/cpu/translation.hh @@ -259,6 +259,12 @@ class DataTranslation : public BaseTLB::Translation } delete this; } + + bool + squashed() const + { + return xc->isSquashed(); + } }; #endif // __CPU_TRANSLATION_HH__ |