diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2014-03-11 13:09:21 +0000 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2014-03-13 08:36:59 +0000 |
commit | b0416e776d2959ac8b9903eb9301b7b967c53a8e (patch) | |
tree | 7cff07cd7261f4256cf3861a3efd5d9365fed21e /compiler/codeGen/StgCmmMonad.hs | |
parent | 7f919dec1579641bbcd02978a0038c8a3723d8b7 (diff) | |
download | haskell-b0416e776d2959ac8b9903eb9301b7b967c53a8e.tar.gz |
Comments on virtHp, realHp (Trac #8864)
Documentation in response to Johan's questions
Plus, don't export hpRel from StgCmmHeap, StgCmmLayout
(it is only used locally in StgCmmLayout)
Diffstat (limited to 'compiler/codeGen/StgCmmMonad.hs')
-rw-r--r-- | compiler/codeGen/StgCmmMonad.hs | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/compiler/codeGen/StgCmmMonad.hs b/compiler/codeGen/StgCmmMonad.hs index 3d82e69402..348b7b9299 100644 --- a/compiler/codeGen/StgCmmMonad.hs +++ b/compiler/codeGen/StgCmmMonad.hs @@ -331,17 +331,47 @@ data CgState cgs_uniqs :: UniqSupply } -data HeapUsage = - HeapUsage { +data HeapUsage -- See Note [Virtual and real heap pointers] + = HeapUsage { virtHp :: VirtualHpOffset, -- Virtual offset of highest-allocated word -- Incremented whenever we allocate realHp :: VirtualHpOffset -- realHp: Virtual offset of real heap ptr -- Used in instruction addressing modes - } + } type VirtualHpOffset = WordOff +{- Note [Virtual and real heap pointers] +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The code generator can allocate one or more objects contiguously, performing +one heap check to cover allocation of all the objects at once. Let's call +this little chunk of heap space an "allocation chunk". The code generator +will emit code to + * Perform a heap-exhaustion check + * Move the heap pointer to the end of the allocation chunk + * Allocate multiple objects within the chunk + +The code generator uses VirtualHpOffsets to address words within a +single allocation chunk; these start at one and increase positively. +The first word of the chunk has VirtualHpOffset=1, the second has +VirtualHpOffset=2, and so on. + + * The field realHp tracks (the VirtualHpOffset) where the real Hp + register is pointing. Typically it'll be pointing to the end of the + allocation chunk. + + * The field virtHp gives the VirtualHpOffset of the highest-allocated + word so far. It starts at zero (meaning no word has been allocated), + and increases whenever an object is allocated. + +The difference between realHp and virtHp gives the offset from the +real Hp register of a particular word in the allocation chunk. This +is what getHpRelOffset does. Since the returned offset is relative +to the real Hp register, it is valid only until you change the real +Hp register. (Changing virtHp doesn't matter.) +-} + initCgState :: UniqSupply -> CgState initCgState uniqs |