diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-10-23 09:44:58 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-10-23 09:44:58 -0400 |
commit | 466c3873184a0112de3f656d4a99eb80372ea513 (patch) | |
tree | 13e1df8c62023d98eb4ec5b91832b57761f5a140 /src/arch | |
parent | 274d2670a1b23bdd2ec38a6f63bd48413e4e3b5c (diff) | |
parent | d2856c2fde201ab1d41507ba09d088e51b35cf6c (diff) | |
download | gem5-466c3873184a0112de3f656d4a99eb80372ea513.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem
into zeep.eecs.umich.edu:/home/gblack/m5/newmem
--HG--
extra : convert_revision : cb15101d24ef2969e1819d6bdeeb2dd1f23f02d1
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/alpha/faults.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/arch/alpha/faults.cc b/src/arch/alpha/faults.cc index eef4361fd..7179bf025 100644 --- a/src/arch/alpha/faults.cc +++ b/src/arch/alpha/faults.cc @@ -194,7 +194,8 @@ void PageTableFault::invoke(ThreadContext *tc) // We've accessed the next page if (vaddr > p->stack_min - PageBytes) { - warn("Increasing stack %#x:%#x to %#x:%#x because of access to %#x", + DPRINTF(Stack, + "Increasing stack %#x:%#x to %#x:%#x because of access to %#x", p->stack_min, p->stack_base, p->stack_min - PageBytes, p->stack_base, vaddr); p->stack_min -= PageBytes; @@ -202,6 +203,7 @@ void PageTableFault::invoke(ThreadContext *tc) fatal("Over max stack size for one thread\n"); p->pTable->allocate(p->stack_min, PageBytes); } else { + warn("Page fault on address %#x\n", vaddr); FaultBase::invoke(tc); } } |