在LLVM中创建新类型(特别是指向函数类型的指针)

时间:2012-02-24 16:42:29

标签: llvm

我想创建一个以下类型

  void (i8*)*

我尝试使用Type类来创建上面的类型,但我没有找到任何直接的方法来做同样的事情 有人请建议我创建上述类型的方法 提前谢谢。

1 个答案:

答案 0 :(得分:5)

如果您的意思是i8**(指向i8的指针),那么:

// This creates the i8* type
PointerType* PointerTy = PointerType::get(IntegerType::get(mod->getContext(), 8), 0);
// This creates the i8** type
PointerType* PointerPtrTy = PointerType::get(PointerTy, 0);

如果你需要一个指向函数的指针,而该函数不返回任何内容并取i8*,那么:

// This creates the i8* type
PointerType* PointerTy = PointerType::get(IntegerType::get(mod->getContext(), 8), 0);

// Create a function type. Its argument types are passed as a vector
std::vector<Type*>FuncTy_args;
FuncTy_args.push_back(PointerTy);                 // one argument: char*
FunctionType* FuncTy = FunctionType::get(
  /*Result=*/Type::getVoidTy(mod->getContext()),  // returning void
  /*Params=*/FuncTy_args,                         // taking those args
  /*isVarArg=*/false);

// Finally this is the pointer to the function type described above
PointerType* PtrToFuncTy = PointerType::get(FuncTy, 0);

更通用的答案是:您可以使用LLVM C ++ API后端生成创建任何类型IR所需的C ++代码。这可以通过在线LLVM演示 - http://llvm.org/demo/方便地完成 - 这就是我为此答案生成代码的方法。