gpt4 book ai didi

c++ - LLVM : How to set a CreateCall argument to BasicBlock name?

转载 作者:搜寻专家 更新时间:2023-10-31 01:26:59 25 4
gpt4 key购买 nike

我想创建一个外部函数调用,这个函数正在获取参数作为 intconst char*(特别是 BASICBLOCK NAME,而不是自定义字符串)(或 std::string 可能没问题)。

但我不知道将函数参数设置为 const char*std::string。我唯一意识到的是 string 在 LLVM 中被视为 Int8PtrTy

  LLVMContext &ctx = F->getContext();
Constant *countfunc = F->getParent()->getOrInsertFunction(
"bbexectr", Type::getVoidTy(ctx), Type::getInt32Ty(ctx), Type::getInt8PtrTy(ctx));

for (Function::iterator ibb = ifn->begin(); ibb != ifn->end(); ++ibb)
{
BasicBlock *B = &*ibb;

IRBuilder<> builder(B);
builder.SetInsertPoint(B->getTerminator());

std::string str = B->getName().str();
const char* strVal = str.c_str();

Value *args[] = {builder.getInt32(index), builder.getInt8PtrTy(*strVal)};
builder.CreateCall(countfunc, args);

我尝试了上面的代码,但它给了我如下错误信息。

error: cannot convert ‘llvm::PointerType*’ to ‘llvm::Value*’ in initialization
Value *args[] = {builder.getInt32(index), builder.getInt8PtrTy(*strVal)};

有没有办法解决这个错误,或者有没有更好的方法将函数参数设置为basicblock name???

最佳答案

类型和值在 LLVM 中是不同的。 llvm::Type 表示类型,llvm::Value 表示值。由于 Type 和 Value 属于不同的类层次结构,因此 llvm::Value *args[] 无法使用 llvm::Type 层次结构的子类进行初始化。你可能想要做的是改变

Value *args[] = {builder.getInt32(index), builder.getInt8PtrTy(*strVal)};

 llvm::Value *strVal = builder.CreateGlobalStringPtr(str.c_str());
llvm::Value *args[] = {builder.getInt32(index), strVal};

CreateGlobalStringPtr() 将创建一个全局字符串并返回一个 Int8PtrTy 类型的指针。

关于c++ - LLVM : How to set a CreateCall argument to BasicBlock name?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54279398/

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