Skip to content
Snippets Groups Projects
Commit f54f4297 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-04-20 15:34:17 by simonmar]

Print out cost centre names as C strings (using proper escaping for
special characters etc.).
parent 969bf5de
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ import Module ( Module, ModuleName, moduleName, ...@@ -35,6 +35,7 @@ import Module ( Module, ModuleName, moduleName,
pprModuleName, moduleNameUserString pprModuleName, moduleNameUserString
) )
import Outputable import Outputable
import CStrings ( pprStringInCStyle )
import Util ( thenCmp ) import Util ( thenCmp )
\end{code} \end{code}
...@@ -358,7 +359,7 @@ ppCostCentreLbl (NormalCC {cc_name = n, cc_mod = m, cc_is_caf = is_caf}) ...@@ -358,7 +359,7 @@ ppCostCentreLbl (NormalCC {cc_name = n, cc_mod = m, cc_is_caf = is_caf})
-- This is the name to go in the user-displayed string, -- This is the name to go in the user-displayed string,
-- recorded in the cost centre declaration -- recorded in the cost centre declaration
costCentreUserName (NoCostCentre) = "NO_CC" costCentreUserName (NoCostCentre) = "NO_CC"
costCentreUserName (AllCafsCC {}) = "CAFs_in_..." costCentreUserName (AllCafsCC {}) = "CAF"
costCentreUserName cc@(NormalCC {cc_name = name, cc_is_caf = is_caf}) costCentreUserName cc@(NormalCC {cc_name = name, cc_is_caf = is_caf})
= case is_caf of { CafCC -> "CAF:"; _ -> "" } ++ decode (_UNPK_ name) = case is_caf of { CafCC -> "CAF:"; _ -> "" } ++ decode (_UNPK_ name)
\end{code} \end{code}
...@@ -375,8 +376,8 @@ pprCostCentreDecl is_local cc ...@@ -375,8 +376,8 @@ pprCostCentreDecl is_local cc
hcat [ hcat [
ptext SLIT("CC_DECLARE"),char '(', ptext SLIT("CC_DECLARE"),char '(',
cc_ident, comma, cc_ident, comma,
doubleQuotes (text (costCentreUserName cc)), comma, pprStringInCStyle (costCentreUserName cc), comma,
doubleQuotes (text (moduleNameUserString mod_name)), comma, pprStringInCStyle (moduleNameUserString mod_name), comma,
ptext is_subsumed, comma, ptext is_subsumed, comma,
empty, -- Now always externally visible empty, -- Now always externally visible
text ");"] text ");"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment