gpt4 book ai didi

haskell - 获取函数的地址(不与 C 接口(interface))

转载 作者:行者123 更新时间:2023-12-04 23:27:14 33 4
gpt4 key购买 nike

有一个相当低级的应用程序,我遇到了需要确定 Haskell 函数地址的情况。我可以用 FFI 来做到这一点,也就是 C,但我想直接在 Haskell 中做到这一点。

这是我目前使用 FFI 的解决方案:

main.hs:

{-# LANGUAGE ForeignFunctionInterface #-}
module Main where

import Foreign
import Foreign.C.Types
import Text.Printf

foreign import ccall "getFuncAddr"
getFuncAddr :: CULong

main :: IO ()
main = do
printf "0x%016x\n" (fromIntegral getFuncAddr :: Word64)

foreign export ccall func :: IO ()
func :: IO ()
func = do
printf "hello world\n"

ffi.c:
void func(void);

unsigned long getFuncAddr(void)
{
return (unsigned long) func;
}

生成文件:
all: main
./$<
objdump -D $< | grep '<func>'

main: main.hs ffi.c
ghc --make -O2 $^ -o $@

与往常一样,也可作为 gist .

最佳答案

试试这个:

{-# LANGUAGE ForeignFunctionInterface #-}
module Main where

import Foreign
import Foreign.C.Types
import Text.Printf

foreign import ccall "&func"
funcaddr :: FunPtr (IO ())

main :: IO ()
main = do
printf "0x%016x\n" (fromIntegral (ptrToIntPtr (castFunPtrToPtr funcaddr)) :: Int)

foreign export ccall func :: IO ()
func :: IO ()
func = do
printf "hello world\n"

this section of the Haskell 2010 report ,然后查找“静态地址”。

关于haskell - 获取函数的地址(不与 C 接口(interface)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10967598/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com