X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2FcodeGen%2FCgHpc.hs;h=ccdb342b4f00caf9fc5a410c79879d6f1e29f69e;hb=0967b989b62abe69e0cd74ac563dbde200f7f3c5;hp=e457e4c944fe2aca679b690aac26231fc4a01e07;hpb=207802589da0d23c3f16195f453b24a1e46e322d;p=ghc-hetmet.git diff --git a/compiler/codeGen/CgHpc.hs b/compiler/codeGen/CgHpc.hs index e457e4c..ccdb342 100644 --- a/compiler/codeGen/CgHpc.hs +++ b/compiler/codeGen/CgHpc.hs @@ -6,6 +6,13 @@ -- ----------------------------------------------------------------------------- +{-# OPTIONS -w #-} +-- The above warning supression flag is a temporary kludge. +-- While working on this module you are encouraged to remove it and fix +-- any warnings in the module. See +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings +-- for details + module CgHpc (cgTickBox, initHpc, hpcTable) where import Cmm @@ -17,10 +24,12 @@ import CgUtils import CgMonad import CgForeignCall import ForeignCall +import ClosureInfo import FastString import HscTypes import Char import StaticFlags +import PackageConfig cgTickBox :: Module -> Int -> Code cgTickBox mod n = do @@ -34,25 +43,28 @@ 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) ] ++ [ CmmStaticLit (CmmInt 0 I64) - | _ <- take hpc_tickCount [0..] + | _ <- take hpc_tickCount [0::Int ..] ] 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) @@ -60,7 +72,7 @@ initHpc this_mod (HpcInfo tickCount hashNo) ; emitForeignCall' PlayRisky [(id,NoHint)] - (CmmForeignCall + (CmmCallee (CmmLit $ CmmLabel $ mkForeignLabel mod_alloc Nothing False) CCallConv ) @@ -70,6 +82,8 @@ initHpc this_mod (HpcInfo tickCount hashNo) , (CmmLit $ CmmLabel $ mkHpcTicksLabel $ this_mod,PtrHint) ] (Just []) + NoC_SRT -- No SRT b/c we PlayRisky + CmmMayReturn } where mod_alloc = mkFastString "hs_hpc_module"