我正在尝试使用LLVM C++绑定(bind)来编写生成以下IR的过程

%1 = call i64 @time(i64* null) #3
@time是C标准库time()函数。

这是我写的代码
void Pass::Insert(BasicBlock *bb, Type *timety, Module *m) {
  Type *timetype[1];
  timetype[0] = timety;
  ArrayRef<Type *> timeTypeAref(timetype, 1);
  Value *args[1];
  args[0] = ConstantInt::get(timety, 0, false);
  ArrayRef<Value *> argsRef(args, 1);
  FunctionType *signature = FunctionType::get(timety, false);
  Function *timeFunc =
      Function::Create(signature, Function::ExternalLinkage, "time", m);
  IRBuilder<> Builder(&*(bb->getFirstInsertionPt()));
  AllocaInst *a1 = Builder.CreateAlloca(timety, nullptr, Twine("a1"));
  CallInst *c1 = Builder.CreateCall(timeFunc, args, Twine("time"));
}

这样可以编译,但是在运行时会导致以下错误
Incorrect number of arguments passed to called function!
  %time = call i64 @time(i64 0)

据我了解,我需要传递一个引用到nullptr的int64指针,但是我无法弄清楚该怎么做。

最佳答案

LLVM提供了一个ConstantPointerNull类,该类正是我想要的-它返回所需类型的空指针。

只需更改以args[0] = ...开头的行即可args[0] = ConstantPointerNull::get(PointerType::get(timety, 0));

10-04 12:25