diff options
author | andy@galois.com <unknown> | 2007-07-11 07:05:55 +0000 |
---|---|---|
committer | andy@galois.com <unknown> | 2007-07-11 07:05:55 +0000 |
commit | 53ebe8abd4f307200f8f513e0ebb11f4d0cd14d9 (patch) | |
tree | ca6f5477c3ab449bb97062718c24bac75882083a /compiler/deSugar/Coverage.lhs | |
parent | 6758ba711a3f9f3100a9dba1818b131c32e62106 (diff) | |
download | haskell-53ebe8abd4f307200f8f513e0ebb11f4d0cd14d9.tar.gz |
Adding support for package names into hpc outputed code
We store .mix files in
.hpc/<package>/<the.module.name>.mix
The package main the empty package (aka other naming passes),
so Main just is stored in
.hpc/Main.tix
This change in backwards compatable.
Diffstat (limited to 'compiler/deSugar/Coverage.lhs')
-rw-r--r-- | compiler/deSugar/Coverage.lhs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/compiler/deSugar/Coverage.lhs b/compiler/deSugar/Coverage.lhs index a9b1a528e4..8d9090073c 100644 --- a/compiler/deSugar/Coverage.lhs +++ b/compiler/deSugar/Coverage.lhs @@ -28,6 +28,7 @@ import UniqFM import Type import TyCon import FiniteMap +import PackageConfig import Data.Array import System.Time (ClockTime(..)) @@ -91,15 +92,20 @@ addCoverageTicksToBinds dflags mod mod_loc tyCons binds = do -- write the mix entries for this module hashNo <- if opt_Hpc then do let hpc_dir = hpcDir dflags + + let hpc_mod_dir = if modulePackageId mod == mainPackageId + then hpc_dir + else hpc_dir ++ "/" ++ packageIdString (modulePackageId mod) + let tabStop = 1 -- <tab> counts as a normal char in GHC's location ranges. - createDirectoryIfMissing True hpc_dir + createDirectoryIfMissing True hpc_mod_dir modTime <- getModificationTime orig_file let entries' = [ (hpcPos, box) | (span,_,box) <- entries, hpcPos <- [mkHpcPos span] ] when (length entries' /= tickBoxCount st) $ do panic "the number of .mix entries are inconsistent" let hashNo = mixHash orig_file modTime tabStop entries' - mixCreate hpc_dir mod_name + mixCreate hpc_mod_dir mod_name $ Mix orig_file modTime (toHash hashNo) tabStop entries' return $ hashNo else do |