X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2FcodeGen%2FCgHpc.hs;h=6da243b804cf71b3173f66a933dcfe698d68b49e;hp=0aa011d11bfdc1062f2425d371fc18f1f530969c;hb=c1681a73fa4ca4cf8758264ae387ac09a9e900d8;hpb=61c73ae30a45d558815cf21272d13f2fa260519f diff --git a/compiler/codeGen/CgHpc.hs b/compiler/codeGen/CgHpc.hs index 0aa011d..6da243b 100644 --- a/compiler/codeGen/CgHpc.hs +++ b/compiler/codeGen/CgHpc.hs @@ -22,6 +22,7 @@ import FastString import HscTypes import Char import StaticFlags +import PackageConfig cgTickBox :: Module -> Int -> Code cgTickBox mod n = do @@ -35,15 +36,13 @@ cgTickBox mod n = do , CmmLit (CmmInt 1 I64) ]) ] - where - visible_tick = mkFastString "hs_hpc_tick" hpcTable :: Module -> HpcInfo -> Code hpcTable this_mod (HpcInfo hpc_tickCount _) = do emitData ReadOnlyData [ CmmDataLabel mkHpcModuleNameLabel , CmmString $ map (fromIntegral . ord) - (module_name_str) + (full_name_str) ++ [0] ] emitData Data $ [ CmmDataLabel (mkHpcTicksLabel this_mod) @@ -53,7 +52,12 @@ hpcTable this_mod (HpcInfo hpc_tickCount _) = do ] where module_name_str = moduleNameString (Module.moduleName this_mod) -hpcTable this_mod (NoHpcInfo) = error "TODO: impossible" + full_name_str = if modulePackageId this_mod == mainPackageId + then module_name_str + else packageIdString (modulePackageId this_mod) ++ "/" ++ + module_name_str + +hpcTable this_mod (NoHpcInfo {}) = error "TODO: impossible" initHpc :: Module -> HpcInfo -> Code initHpc this_mod (HpcInfo tickCount hashNo)