blob: d474ff34c8e72143c88138e383a9c91d59120d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
-- | Platform profiles
module GHC.Platform.Profile
( Profile (..)
, profileBuildTag
, profileConstants
, profileIsProfiling
, profileWordSizeInBytes
)
where
import GHC.Prelude
import GHC.Platform
import GHC.Platform.Ways
-- | A platform profile fully describes the kind of objects that are generated
-- for a platform.
--
-- 'Platform' doesn't fully describe the ABI of an object. Compiler ways
-- (profiling, debug, dynamic) also modify the ABI.
--
data Profile = Profile
{ profilePlatform :: !Platform -- ^ Platform
, profileWays :: !Ways -- ^ Ways
}
deriving (Eq, Ord, Show, Read)
-- | Get platform constants
profileConstants :: Profile -> PlatformConstants
{-# INLINE profileConstants #-}
profileConstants profile = platformConstants (profilePlatform profile)
-- | Is profiling enabled
profileIsProfiling :: Profile -> Bool
{-# INLINE profileIsProfiling #-}
profileIsProfiling profile = profileWays profile `hasWay` WayProf
-- | Word size in bytes
profileWordSizeInBytes :: Profile -> Int
{-# INLINE profileWordSizeInBytes #-}
profileWordSizeInBytes profile = platformWordSizeInBytes (profilePlatform profile)
-- | Unique build tag for the profile
profileBuildTag :: Profile -> String
profileBuildTag profile
-- profiles using unregisterised convention are not binary compatible with
-- those that don't. Make sure to make it apparent in the tag so that our
-- interface files can't be mismatched by mistake.
| platformUnregisterised platform = 'u':wayTag
| otherwise = wayTag
where
platform = profilePlatform profile
wayTag = waysBuildTag (profileWays profile)
|