llvm-general-0.1: src/LLVM/General/Internal/Context.hs
module LLVM.General.Internal.Context where
import Control.Exception
import Foreign.Ptr
import qualified LLVM.General.Internal.FFI.Context as FFI
-- | a Context object holds the state the of LLVM system needs for one thread of
-- | LLVM compilation. Once upon a time, in early versions of LLVM, this state was global.
-- | Then it got packed up in this object to allow multiple threads to compile at once.
data Context = Context (Ptr FFI.Context)
-- | Create a Context, run an action (to which it is provided), then destroy the Context.
withContext :: (Context -> IO a) -> IO a
withContext = bracket FFI.contextCreate FFI.contextDispose . (. Context)