依星源码资源网,依星资源网

 找回密码
 立即注册

QQ登录

只需一步,快速开始

【好消息,好消息,好消息】VIP会员可以发表文章赚积分啦 !
查看: 54|回复: 0

初探LLVM JIT: 一个最小的JIT的例子(llvm 8)

[复制链接] 主动推送

1万

主题

1万

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
12008
发表于 2024-10-24 09:36:21 | 显示全部楼层 |阅读模式
初探LLVM JIT: 一个最小的JIT的例子(llvm 8)
我接触llvm的主要目的是写pass,但llvm ir以及ir对应的api让我很头疼。为了快速熟悉这套api,我需要一种快速编写、快速测试的方法,最后了解到llvm jit的存在。

但是在网上找了一些教材后,发现都不能顺利的跑起来,就连llvm源码中提供的example我也没能顺利的跑起来,一度让我怀疑自己是不是该放弃。在垂死挣扎之后,终于让我跑通了。

下面用一个简单例子来演示怎么使用llvm api新建module以及function,并且用jit去执行函数。

我们的目的是生成下面两个函数,并且调用foo,最后能打出执行结果11。
1
2
3
4
5
6
7
int add1(int x) {
   return x+1;
}

int foo() {
   return add1(10);
}

我把整个代码分成两部分,一部分是使用llvm ir指令生成上面函数,第二部分是使用llvm jit去执行上面函数。

下面是第一部分代码,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
int initModule(LLVMContext &Context, Module *M, Function *FooF) {


    // Create the add1 function entry and insert this entry into module M.  The
    // function will have a return type of "int" and take an argument of "int".
    Function *Add1F =
            cast(M->getOrInsertFunction("add1", Type::getInt32Ty(Context),
                                                  Type::getInt32Ty(Context)));

    // Add a basic block to the function. As before, it automatically inserts
    // because of the last argument.
    BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);

    // Create a basic block builder with default parameters.  The builder will
    // automatically append instructions to the basic block `BB'.
    IRBuilder<> builder(BB);

    // Get pointers to the constant `1'.
    Value *One = builder.getInt32(1);

    // Get pointers to the integer argument of the add1 function...
    assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
    Argument *ArgX = &*Add1F->arg_begin();          // Get the arg
    ArgX->setName("AnArg");            // Give it a nice symbolic name for fun.

    // Create the add instruction, inserting it into the end of BB.
    Value *Add = builder.CreateAdd(One, ArgX);

    // Create the return instruction and add it to the basic block
    builder.CreateRet(Add);

    // Now, function add1 is ready.

    // Now we're going to create function `foo', which returns an int and takes no
    // arguments.

    // Add a basic block to the FooF function.
    BB = BasicBlock::Create(Context, "EntryBlock", FooF);

    // Tell the basic block builder to attach itself to the new basic block
    builder.SetInsertPoint(BB);

    // Get pointer to the constant `10'.
    Value *Ten = builder.getInt32(10);

    // Pass Ten to the call to Add1F
    CallInst *Add1CallRes = builder.CreateCall(Add1F, Ten);
    Add1CallRes->setTailCall(true);

    // Create the return instruction and add it to the basic block.
    builder.CreateRet(Add1CallRes);

}

下面是第二部分代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
int main() {
    LLVMInitializeNativeAsmPrinter();
    InitializeNativeTarget();

    LLVMContext Context;

    // Create some module to put our function into it.
    std::unique_ptr Owner = make_unique("test", Context);
    Module *M = Owner.get();

    Function *FooF =
            cast(M->getOrInsertFunction("foo", Type::getInt32Ty(Context)));

    initModule(Context, M, FooF);

    // Now we create the JIT.
    ExecutionEngine *EE = EngineBuilder(std::move(Owner)).create();

    outs() << "We just constructed this LLVM module:" << *M;
    outs() << "Running foo: ";
    outs().flush();

    // Call the `foo' function with no arguments:
    std::vector noargs;
    GenericValue gv = EE->runFunction(FooF, noargs);

    // Import result of execution:
    outs() << "Result: " << gv.IntVal << "";
    delete EE;
    llvm_shutdown();
    return 0;
}

最后使用clang++进行编译生成可执行文件
1
clang++ -g HowToUseJIT.cpp `llvm-config --cxxflags --ldflags --system-libs --libs core mcjit native orcjit` -rdynamic -O3 -o HowToUseJIT

下面是执行的效果,可以看到生成的中间代码以及运行的结果。通过这种方式,感觉可以很方便的学习llvm ir指令以及对应的api。

初探LLVM JIT: 一个最小的JIT的例子(llvm 8)

初探LLVM JIT: 一个最小的JIT的例子(llvm 8)

代码仓库地址

相关帖子

扫码关注微信公众号,及时获取最新资源信息!下载附件优惠VIP会员5折;永久VIP免费
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

免责声明:
1、本站提供的所有资源仅供参考学习使用,版权归原著所有,禁止下载本站资源参与商业和非法行为,请在24小时之内自行删除!
2、本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,请勿任何商业目的与商业用途。
3、若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
4、论坛的所有内容都不保证其准确性,完整性,有效性,由于源码具有复制性,一经售出,概不退换。阅读本站内容因误导等因素而造成的损失本站不承担连带责任。
5、用户使用本网站必须遵守适用的法律法规,对于用户违法使用本站非法运营而引起的一切责任,由用户自行承担
6、本站所有资源来自互联网转载,版权归原著所有,用户访问和使用本站的条件是必须接受本站“免责声明”,如果不遵守,请勿访问或使用本网站
7、本站使用者因为违反本声明的规定而触犯中华人民共和国法律的,一切后果自己负责,本站不承担任何责任。
8、凡以任何方式登陆本网站或直接、间接使用本网站资料者,视为自愿接受本网站声明的约束。
9、本站以《2013 中华人民共和国计算机软件保护条例》第二章 “软件著作权” 第十七条为原则:为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。若有学员需要商用本站资源,请务必联系版权方购买正版授权!
10、本网站如无意中侵犯了某个企业或个人的知识产权,请来信【站长信箱312337667@qq.com】告之,本站将立即删除。
郑重声明:
本站所有资源仅供用户本地电脑学习源代码的内含设计思想和原理,禁止任何其他用途!
本站所有资源、教程来自互联网转载,仅供学习交流,不得商业运营资源,不确保资源完整性,图片和资源仅供参考,不提供任何技术服务。
本站资源仅供本地编辑研究学习参考,禁止未经资源商正版授权参与任何商业行为,违法行为!如需商业请购买各资源商正版授权
本站仅收集资源,提供用户自学研究使用,本站不存在私自接受协助用户架设游戏或资源,非法运营资源行为。
 
在线客服
点击这里给我发消息 点击这里给我发消息 点击这里给我发消息
售前咨询热线
312337667

微信扫一扫,私享最新原创实用干货

QQ|免责声明|小黑屋|依星资源网 ( 鲁ICP备2021043233号-3 )|网站地图

GMT+8, 2024-11-23 23:34

Powered by Net188.com X3.4

邮箱:312337667@qq.com 客服QQ:312337667(工作时间:9:00~21:00)

快速回复 返回顶部 返回列表