我想在堆栈上创建LLVM ArrayType,所以我想使用AllocaInst (Type *Ty, Value *ArraySize=nullptr, const Twine &Name="", Instruction *InsertBefore=nullptr)
。问题是我不明白这个界面。我猜测Ty
会像ArrayType::get(I.getType(), 4)
,但我应该为ArraySize
提供什么。此外,它需要Value*
,所以它让我很困惑。
要么我误解了llvm alloc,要么我需要提供llvm常量作为数组大小的值。如果我必须给出常量,那么它不是多余的,因为ArrayType
包含numElement作为信息。
作为一个示例代码行,我尝试的方式:
AllocaInst* arr_alloc = new AllocaInst(ArrayType::get(I.getType(), num)
/*, What is this parameter for?*/,
"",
funcEntry.getFirstInsertionPt());
答案 0 :(得分:3)
我是数组元素的类型,例如:
Type* I = IntegerType::getInt32Ty(module->getContext());
然后您可以创建num
元素的ArrayType:
ArrayType* arrayType = ArrayType::get(I, num);
此类型可以在AllocInstr中使用,如下所示:
AllocaInst* arr_alloc = new AllocaInst(
arrayType, "myarray" , funcEntry
// ~~~~~~~~~
// -> custom variable name in the LLVM IR which can be omitted,
// LLVM will create a random name then such as %2.
);
此示例将产生以下LLVM IR指令:
%myarray = alloca [10 x i32]
修改强> 此外,您似乎可以将变量数组大小传递给AllocInstr,如下所示:
Type* I = IntegerType::getInt32Ty(module->getContext());
auto num = 10;
auto funcEntry = label_entry;
ArrayType* arrayType = ArrayType::get(I, num);
AllocaInst* variable = new AllocaInst(
I, "array_size", funcEntry
);
new StoreInst(ConstantInt::get(I, APInt(32, 10)), variable, funcEntry);
auto load = new LoadInst(variable, "loader", funcEntry);
AllocaInst* arr_alloc = new AllocaInst(
I, load, "my_array", funcEntry
);