gpt4 book ai didi

llvm 通过 : How to insert a variable using existing variable value

转载 作者:行者123 更新时间:2023-12-05 04:16:47 25 4
gpt4 key购买 nike

我定义了int a = 5;在源代码中,我将源代码转换为 LLVM IR:

%a = alloca i32, align 4
store i32 5, i32* %a, align 4

我想通过写一个pass来插入int b = a;。我编译 int a=5; int b=a 进入 LLVM IR,它首先加载“a”,然后存储它。我还检查了 doxygen,其中 LoadInst 是 LoadInst (Value *Ptr, const Twine &NameStr, Instruction *InsertBefore) 不过,我不知道如何获取 Value “一个”。

如何获取变量值?

最佳答案

在 LLVM IR 中的序列

int a = 5;
int b = a;

没有任何优化,被翻译成

%a = alloca i32, align 4
%b = alloca i32, align 4
store i32 5, i32* %a, align 4
%0 = load i32* %a, align 4
store i32 %0, i32* %b, align 4

这对应两个AllocaInst,两个StoreInst和一个LoadInst如下

警告:前面有未经测试/未编译的伪代码

ConstantInt* const_int_5 = ConstantInt::get(llvmContext, APInt(32, StringRef("5"), 10));

AllocaInst* a_alloc = new AllocaInst(IntegerType::get(llvmContext, 32), "a");
AllocaInst* b_alloc = new AllocaInst(IntegerType::get(llvmContext, 32), "b");
StoreInst* store_5 = new StoreInst(const_int_5, a_alloc, false);
LoadInst* load_from_a = new LoadInst(a_alloc, "", false);
StoreInst* store_b = new StoreInst(load_from_a, b_alloc, false);

由于精心设计的继承层次结构,您可能会感到困惑,因为在 LLVM API 中指令就是值

关于llvm 通过 : How to insert a variable using existing variable value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26325698/

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