projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8253ff2
)
Alpha: Fixes to get alpha to compile again.
author
Gabe Black
<gblack@eecs.umich.edu>
Tue, 28 Aug 2007 01:30:02 +0000
(18:30 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Tue, 28 Aug 2007 01:30:02 +0000
(18:30 -0700)
--HG--
extra : convert_revision :
9541cf6dae1fb1a1c6025898692b2e04fcf55c6d
src/arch/alpha/pagetable.hh
patch
|
blob
|
history
diff --git
a/src/arch/alpha/pagetable.hh
b/src/arch/alpha/pagetable.hh
index 0b885bc3604b191cc6acb94df87f2e56819fb371..4375f24f1a9bd188fd89d9846288ee54c85efbea 100644
(file)
--- a/
src/arch/alpha/pagetable.hh
+++ b/
src/arch/alpha/pagetable.hh
@@
-92,10
+92,12
@@
namespace AlphaISA {
// ITB/DTB table entry
struct TlbEntry
{
+ Addr pageStart;
//Construct an entry that maps to physical address addr.
- TlbEntry(Addr addr)
- {
- }
+ TlbEntry(Addr addr) : pageStart(addr)
+ {}
+ TlbEntry()
+ {}
Addr tag; // virtual page number tag
Addr ppn; // physical page number