projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4329af
)
arm: Use table walker clock that is inherited from CPU
author
Andreas Hansson
<andreas.hansson@arm.com>
Thu, 25 Oct 2012 08:32:42 +0000
(
04:32
-0400)
committer
Andreas Hansson
<andreas.hansson@arm.com>
Thu, 25 Oct 2012 08:32:42 +0000
(
04:32
-0400)
This patch simplifies the scheduling of the next walk for the ARM
table walker. Previously it used the CPU clock, but as the table
walker inherits the clock from the CPU, it is cleaner to simply use
its own clock (which is the same).
src/arch/arm/table_walker.cc
patch
|
blob
|
history
diff --git
a/src/arch/arm/table_walker.cc
b/src/arch/arm/table_walker.cc
index 5f44539351e5ef9df4f3e9cfc21d2b328add54eb..a10eb4a20130eb68729afb5732a00e4e5960ed43 100644
(file)
--- a/
src/arch/arm/table_walker.cc
+++ b/
src/arch/arm/table_walker.cc
@@
-797,7
+797,7
@@
void
TableWalker::nextWalk(ThreadContext *tc)
{
if (pendingQueue.size())
- schedule(doProcessEvent,
tc->getCpuPtr()->
clockEdge(Cycles(1)));
+ schedule(doProcessEvent, clockEdge(Cycles(1)));
}