gpt4 book ai didi

optimization - 使用 LLVM JIT 编译 lua 包装的 C 函数?

转载 作者:行者123 更新时间:2023-12-03 16:53:53 27 4
gpt4 key购买 nike

我已经将一些 C 函数编译成 LLVM 字节码。现在我想让 Lua 脚本引擎可以访问这些函数,然后将 Lua 脚本编译成 native 机器代码。

我找到了 llvm-lua使用llvm编译lua脚本的项目。我现在想知道是否可以对从 lua 脚本调用的 C 函数执行 jit 编译和优化。

例如,我有这两个 C 函数:

void func1() {
for(int i = 1; i < 5; ++i)
printf("hello from func1");
}
void func2() {
for(int i = 1; i < 5; ++i)
printf("hello from func2");
}

然后我将它们暴露给 Lua 脚本引擎并运行这样的 lua 脚本:

func1()
func2()

然后我希望llvm-lua编译器对其进行优化,编译成对应的程序

for(int i = 1; i < 5; ++i) {
printf("hello from func1");
printf("hello from func2");
}

并且

for(int i = 1; i < 5; ++i)
printf("hello from func1");
for(int i = 1; i < 5; ++i)
printf("hello from func2");

有没有可能实现它?

干杯,

曼纽尔

最佳答案

对于任何类型的复杂程序转换(例如您要在此处实现的转换),最好尽可能多地删除增加复杂性的中间步骤。首先证明它适用于最简单的情况,然后逐步增加复杂性。对于您的特定问题,这转化为:尝试在同一文件中的所有代码的纯 C 代码上进行所需的优化,然后在不同文件中的纯 C 代码上进行,等等。如果您不能全部实现在更简单的情况下,那么你就不太可能通过所有额外的复杂性让它为最初的目标工作(并且通过逐步进行,你也会更好地了解你遇到的任何问题的可能原因) .

如果您遵循上述建议,我非常有信心(尽管我还没有尝试过)您想要的优化不会由 LLVM 优化器完成,即使是在最简单的情况下将所有内容都放在一个 C 文件中并以完全优化的方式运行。原因是您希望优化器更改代码的语义,因为不能保证两个连续的 for 循环与单个 for 具有相同的副作用(可观察到的变化) 循环,两个主体按顺序执行(您提供的代码就是一个很好的例子)。为了使优化安全,编译器必须能够保证(证明)关于从循环体执行的所有代码的副作用的各种属性。尽管并非不可能,但在一般情况下使用具有不受控制的副作用的语言(例如 C)很难做到,并且在大多数情况下,如果您跨越任何库边界(您可能会在这里这样做),那是不可行的,因为您实际上没有一个统一的优化步骤(至少在理论上)可以考虑所有必要的代码。如果你真的想更深入地研究 LLVM 及其优化器框架,我建议你先阅读这篇 excellent article outlining the motivations and design of LLVM ,然后找出优化器必须在一个步骤中查看哪些代码才能使其成为可能。

我建议考虑一下您尝试让 Lua 编译为 LLVM 位码并与来自 C 的 LLVM 位码一起优化的动机是什么。我确信有正当理由,但除非您绝对相信这是实现目标的唯一方法,那么我会亲自尝试不同的方法。

假设您的主要动机是表现。作为Andrew Y已经提到过,我建议好好看看 luajit .它使纯(写得体)Lua to perform close to Cmany times better than standard Lua ,它还包括一个 Foreign Function Interface (FFI)这可能对您的问题有帮助。来自 FFI 页面:

The FFI library allows calling external C functions and using C data structures from pure Lua code.

The FFI library largely obviates the need to write tedious manual Lua/C bindings in C. No need to learn a separate binding language — it parses plain C declarations! These can be cut-n-pasted from C header files or reference manuals. It's up to the task of binding large libraries without the need for dealing with fragile binding generators.

The FFI library is tightly integrated into LuaJIT (it's not available as a separate module). The code generated by the JIT-compiler for accesses to C data structures from Lua code is on par with the code a C compiler would generate. Calls to C functions can be inlined in JIT-compiled code, unlike calls to functions bound via the classic Lua/C API.

关于optimization - 使用 LLVM JIT 编译 lua 包装的 C 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6161300/

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