2 % (c) The University of Glasgow, 2000
5 -- ---------------------------------------------------------------------------
6 -- The dynamic linker for object code (.o .so .dll files)
7 -- ---------------------------------------------------------------------------
9 Primarily, this module consists of an interface to the C-land dynamic linker.
12 {-# OPTIONS -#include "Linker.h" #-}
15 initObjLinker, -- :: IO ()
16 loadDLL, -- :: String -> IO (Maybe String)
17 loadObj, -- :: String -> IO ()
18 unloadObj, -- :: String -> IO ()
19 lookupSymbol, -- :: String -> IO (Maybe (Ptr a))
20 resolveObjs -- :: IO SuccessFlag
26 import Foreign ( Ptr, nullPtr )
27 import Panic ( panic )
28 import DriverUtil ( prefixUnderscore )
29 import BasicTypes ( SuccessFlag, successIf )
32 -- ---------------------------------------------------------------------------
33 -- RTS Linker Interface
34 -- ---------------------------------------------------------------------------
36 lookupSymbol :: String -> IO (Maybe (Ptr a))
37 lookupSymbol str_in = do
38 let str = prefixUnderscore str_in
39 withCString str $ \c_str -> do
40 addr <- c_lookupSymbol c_str
43 else return (Just addr)
45 loadDLL :: String -> IO (Maybe String)
47 -- Just err_msg => failure
49 maybe_errmsg <- withCString str $ \dll -> c_addDLL dll
50 if maybe_errmsg == nullPtr
52 else do str <- peekCString maybe_errmsg
55 loadObj :: String -> IO ()
57 withCString str $ \c_str -> do
59 when (r == 0) (panic "loadObj: failed")
61 unloadObj :: String -> IO ()
63 withCString str $ \c_str -> do
64 r <- c_unloadObj c_str
65 when (r == 0) (panic "unloadObj: failed")
67 resolveObjs :: IO SuccessFlag
70 return (successIf (r /= 0))
72 -- ---------------------------------------------------------------------------
73 -- Foreign declaractions to RTS entry points which does the real work;
74 -- ---------------------------------------------------------------------------
76 #if __GLASGOW_HASKELL__ >= 504
77 foreign import ccall unsafe "addDLL" c_addDLL :: CString -> IO CString
78 foreign import ccall unsafe "initLinker" initObjLinker :: IO ()
79 foreign import ccall unsafe "lookupSymbol" c_lookupSymbol :: CString -> IO (Ptr a)
80 foreign import ccall unsafe "loadObj" c_loadObj :: CString -> IO Int
81 foreign import ccall unsafe "unloadObj" c_unloadObj :: CString -> IO Int
82 foreign import ccall unsafe "resolveObjs" c_resolveObjs :: IO Int
84 foreign import "addDLL" unsafe c_addDLL :: CString -> IO CString
85 foreign import "initLinker" unsafe initLinker :: IO ()
86 foreign import "lookupSymbol" unsafe c_lookupSymbol :: CString -> IO (Ptr a)
87 foreign import "loadObj" unsafe c_loadObj :: CString -> IO Int
88 foreign import "unloadObj" unsafe c_unloadObj :: CString -> IO Int
89 foreign import "resolveObjs" unsafe c_resolveObjs :: IO Int