{-# LANGUAGE CPP #-}
module GHC.Platform.Ways
( Way(..)
, Ways
, hasWay
, hasNotWay
, addWay
, removeWay
, allowed_combination
, wayGeneralFlags
, wayUnsetGeneralFlags
, wayOptc
, wayOptcxx
, wayOptl
, wayOptP
, wayDesc
, wayRTSOnly
, wayTag
, waysTag
, waysBuildTag
, fullWays
, rtsWays
, hostWays
, hostFullWays
, hostIsProfiled
, hostIsDynamic
, hostIsThreaded
, hostIsDebugged
, hostIsTracing
)
where
import GHC.Prelude
import GHC.Platform
import GHC.Driver.Flags
import qualified Data.Set as Set
import Data.Set (Set)
import Data.List (intersperse)
data Way
= WayCustom String
| WayThreaded
| WayDebug
| WayProf
| WayDyn
deriving (Way -> Way -> Bool
(Way -> Way -> Bool) -> (Way -> Way -> Bool) -> Eq Way
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Way -> Way -> Bool
== :: Way -> Way -> Bool
$c/= :: Way -> Way -> Bool
/= :: Way -> Way -> Bool
Eq, Eq Way
Eq Way =>
(Way -> Way -> Ordering)
-> (Way -> Way -> Bool)
-> (Way -> Way -> Bool)
-> (Way -> Way -> Bool)
-> (Way -> Way -> Bool)
-> (Way -> Way -> Way)
-> (Way -> Way -> Way)
-> Ord Way
Way -> Way -> Bool
Way -> Way -> Ordering
Way -> Way -> Way
forall a.
Eq a =>
(a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
$ccompare :: Way -> Way -> Ordering
compare :: Way -> Way -> Ordering
$c< :: Way -> Way -> Bool
< :: Way -> Way -> Bool
$c<= :: Way -> Way -> Bool
<= :: Way -> Way -> Bool
$c> :: Way -> Way -> Bool
> :: Way -> Way -> Bool
$c>= :: Way -> Way -> Bool
>= :: Way -> Way -> Bool
$cmax :: Way -> Way -> Way
max :: Way -> Way -> Way
$cmin :: Way -> Way -> Way
min :: Way -> Way -> Way
Ord, Int -> Way -> ShowS
[Way] -> ShowS
Way -> String
(Int -> Way -> ShowS)
-> (Way -> String) -> ([Way] -> ShowS) -> Show Way
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Way -> ShowS
showsPrec :: Int -> Way -> ShowS
$cshow :: Way -> String
show :: Way -> String
$cshowList :: [Way] -> ShowS
showList :: [Way] -> ShowS
Show, ReadPrec [Way]
ReadPrec Way
Int -> ReadS Way
ReadS [Way]
(Int -> ReadS Way)
-> ReadS [Way] -> ReadPrec Way -> ReadPrec [Way] -> Read Way
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
$creadsPrec :: Int -> ReadS Way
readsPrec :: Int -> ReadS Way
$creadList :: ReadS [Way]
readList :: ReadS [Way]
$creadPrec :: ReadPrec Way
readPrec :: ReadPrec Way
$creadListPrec :: ReadPrec [Way]
readListPrec :: ReadPrec [Way]
Read)
type Ways = Set Way
hasWay :: Ways -> Way -> Bool
hasWay :: Ways -> Way -> Bool
hasWay Ways
ws Way
w = Way -> Ways -> Bool
forall a. Ord a => a -> Set a -> Bool
Set.member Way
w Ways
ws
hasNotWay :: Ways -> Way -> Bool
hasNotWay :: Ways -> Way -> Bool
hasNotWay Ways
ws Way
w = Way -> Ways -> Bool
forall a. Ord a => a -> Set a -> Bool
Set.notMember Way
w Ways
ws
addWay :: Way -> Ways -> Ways
addWay :: Way -> Ways -> Ways
addWay = Way -> Ways -> Ways
forall a. Ord a => a -> Set a -> Set a
Set.insert
removeWay :: Way -> Ways -> Ways
removeWay :: Way -> Ways -> Ways
removeWay = Way -> Ways -> Ways
forall a. Ord a => a -> Set a -> Set a
Set.delete
allowed_combination :: Ways -> Bool
allowed_combination :: Ways -> Bool
allowed_combination Ways
ways = Bool -> Bool
not Bool
disallowed
where
disallowed :: Bool
disallowed = [Bool] -> Bool
forall (t :: * -> *). Foldable t => t Bool -> Bool
or [ Ways -> Way -> Bool
hasWay Ways
ways Way
x Bool -> Bool -> Bool
&& Ways -> Way -> Bool
hasWay Ways
ways Way
y
| (Way
x,Way
y) <- [(Way, Way)]
forall {a}. [a]
couples
]
couples :: [a]
couples = []
waysTag :: Ways -> String
waysTag :: Ways -> String
waysTag = [String] -> String
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat ([String] -> String) -> (Ways -> [String]) -> Ways -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> [String] -> [String]
forall a. a -> [a] -> [a]
intersperse String
"_" ([String] -> [String]) -> (Ways -> [String]) -> Ways -> [String]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (Way -> String) -> [Way] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map Way -> String
wayTag ([Way] -> [String]) -> (Ways -> [Way]) -> Ways -> [String]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Ways -> [Way]
forall a. Set a -> [a]
Set.toAscList
waysBuildTag :: Ways -> String
waysBuildTag :: Ways -> String
waysBuildTag Ways
ws = Ways -> String
waysTag ((Way -> Bool) -> Ways -> Ways
forall a. (a -> Bool) -> Set a -> Set a
Set.filter (Bool -> Bool
not (Bool -> Bool) -> (Way -> Bool) -> Way -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Way -> Bool
wayRTSOnly) Ways
ws)
wayTag :: Way -> String
wayTag :: Way -> String
wayTag (WayCustom String
xs) = String
xs
wayTag Way
WayThreaded = String
"thr"
wayTag Way
WayDebug = String
"debug"
wayTag Way
WayDyn = String
"dyn"
wayTag Way
WayProf = String
"p"
wayRTSOnly :: Way -> Bool
wayRTSOnly :: Way -> Bool
wayRTSOnly (WayCustom {}) = Bool
False
wayRTSOnly Way
WayDyn = Bool
False
wayRTSOnly Way
WayProf = Bool
False
wayRTSOnly Way
WayThreaded = Bool
True
wayRTSOnly Way
WayDebug = Bool
True
fullWays :: Ways -> Ways
fullWays :: Ways -> Ways
fullWays Ways
ws = (Way -> Bool) -> Ways -> Ways
forall a. (a -> Bool) -> Set a -> Set a
Set.filter (Bool -> Bool
not (Bool -> Bool) -> (Way -> Bool) -> Way -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Way -> Bool
wayRTSOnly) Ways
ws
rtsWays :: Ways -> Ways
rtsWays :: Ways -> Ways
rtsWays Ways
ws = (Way -> Bool) -> Ways -> Ways
forall a. (a -> Bool) -> Set a -> Set a
Set.filter Way -> Bool
wayRTSOnly Ways
ws
wayDesc :: Way -> String
wayDesc :: Way -> String
wayDesc (WayCustom String
xs) = String
xs
wayDesc Way
WayThreaded = String
"Threaded"
wayDesc Way
WayDebug = String
"Debug"
wayDesc Way
WayDyn = String
"Dynamic"
wayDesc Way
WayProf = String
"Profiling"
wayGeneralFlags :: Platform -> Way -> [GeneralFlag]
wayGeneralFlags :: Platform -> Way -> [GeneralFlag]
wayGeneralFlags Platform
_ (WayCustom {}) = []
wayGeneralFlags Platform
_ Way
WayThreaded = []
wayGeneralFlags Platform
_ Way
WayDebug = []
wayGeneralFlags Platform
_ Way
WayDyn = [GeneralFlag
Opt_PIC, GeneralFlag
Opt_ExternalDynamicRefs]
wayGeneralFlags Platform
_ Way
WayProf = []
wayUnsetGeneralFlags :: Platform -> Way -> [GeneralFlag]
wayUnsetGeneralFlags :: Platform -> Way -> [GeneralFlag]
wayUnsetGeneralFlags Platform
_ (WayCustom {}) = []
wayUnsetGeneralFlags Platform
_ Way
WayThreaded = []
wayUnsetGeneralFlags Platform
_ Way
WayDebug = []
wayUnsetGeneralFlags Platform
_ Way
WayDyn = [GeneralFlag
Opt_SplitSections]
wayUnsetGeneralFlags Platform
_ Way
WayProf = []
wayOptc :: Platform -> Way -> [String]
wayOptc :: Platform -> Way -> [String]
wayOptc Platform
_ (WayCustom {}) = []
wayOptc Platform
platform Way
WayThreaded = case Platform -> OS
platformOS Platform
platform of
OS
OSOpenBSD -> [String
"-pthread"]
OS
OSNetBSD -> [String
"-pthread"]
OS
_ -> []
wayOptc Platform
_ Way
WayDebug = []
wayOptc Platform
_ Way
WayDyn = []
wayOptc Platform
_ Way
WayProf = [String
"-DPROFILING"]
wayOptcxx :: Platform -> Way -> [String]
wayOptcxx :: Platform -> Way -> [String]
wayOptcxx = Platform -> Way -> [String]
wayOptc
wayOptl :: Platform -> Way -> [String]
wayOptl :: Platform -> Way -> [String]
wayOptl Platform
_ (WayCustom {}) = []
wayOptl Platform
platform Way
WayThreaded =
case Platform -> OS
platformOS Platform
platform of
OS
OSFreeBSD -> [String
"-pthread", String
"-Wno-unused-command-line-argument"]
OS
OSOpenBSD -> [String
"-pthread"]
OS
OSNetBSD -> [String
"-pthread"]
OS
_ -> []
wayOptl Platform
_ Way
WayDebug = []
wayOptl Platform
_ Way
WayDyn = []
wayOptl Platform
_ Way
WayProf = []
wayOptP :: Platform -> Way -> [String]
wayOptP :: Platform -> Way -> [String]
wayOptP Platform
_ (WayCustom {}) = []
wayOptP Platform
_ Way
WayThreaded = []
wayOptP Platform
_ Way
WayDebug = []
wayOptP Platform
_ Way
WayDyn = []
wayOptP Platform
_ Way
WayProf = [String
"-DPROFILING"]
hostIsProfiled :: Bool
hostIsProfiled :: Bool
hostIsProfiled = Int
rtsIsProfiled_ Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= Int
0
foreign import ccall unsafe "rts_isProfiled" rtsIsProfiled_ :: Int
hostIsDynamic :: Bool
hostIsDynamic :: Bool
hostIsDynamic = Int
rtsIsDynamic_ Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= Int
0
foreign import ccall unsafe "rts_isDynamic" rtsIsDynamic_ :: Int
#if MIN_VERSION_GLASGOW_HASKELL(9,1,0,0)
hostIsThreaded :: Bool
hostIsThreaded :: Bool
hostIsThreaded = Int
rtsIsThreaded_ Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= Int
0
foreign import ccall unsafe "rts_isThreaded" rtsIsThreaded_ :: Int
hostIsDebugged :: Bool
hostIsDebugged :: Bool
hostIsDebugged = Int
rtsIsDebugged_ Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= Int
0
foreign import ccall unsafe "rts_isDebugged" rtsIsDebugged_ :: Int
hostIsTracing :: Bool
hostIsTracing :: Bool
hostIsTracing = Int
rtsIsTracing_ Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= Int
0
foreign import ccall unsafe "rts_isTracing" rtsIsTracing_ :: Int
#else
hostIsThreaded :: Bool
hostIsThreaded = False
hostIsDebugged :: Bool
hostIsDebugged = False
hostIsTracing :: Bool
hostIsTracing = False
#endif
hostWays :: Ways
hostWays :: Ways
hostWays = [Ways] -> Ways
forall (f :: * -> *) a. (Foldable f, Ord a) => f (Set a) -> Set a
Set.unions
[ if Bool
hostIsDynamic then Way -> Ways
forall a. a -> Set a
Set.singleton Way
WayDyn else Ways
forall a. Set a
Set.empty
, if Bool
hostIsProfiled then Way -> Ways
forall a. a -> Set a
Set.singleton Way
WayProf else Ways
forall a. Set a
Set.empty
, if Bool
hostIsThreaded then Way -> Ways
forall a. a -> Set a
Set.singleton Way
WayThreaded else Ways
forall a. Set a
Set.empty
, if Bool
hostIsDebugged then Way -> Ways
forall a. a -> Set a
Set.singleton Way
WayDebug else Ways
forall a. Set a
Set.empty
]
hostFullWays :: Ways
hostFullWays :: Ways
hostFullWays = Ways -> Ways
fullWays Ways
hostWays