I want to insert a zero extension instruction and a multiply instruction to a basic block. The input is,
define void @DriverInit() {
EntryBlock:
%abc = call i32 @cuInit(i32 0)
ret void
}
I want to transform it to,
define void @DriverInit() {
EntryBlock:
%abc = call i32 @cuInit(i32 0)
%2 = zext i32 1 to i64
%3 = mul i64 %2, ptrtoint (i1** getelementptr (i1** null, i32 1) to i64)
ret void
}
How to do it using LLVM C++ APIs? I use the below code to create the zero extension instruction, but i am unable to do it.
IRBuilder<> builder(BB);
Value *One = builder.getInt32(1);
Value *zer=builder.CreateZExt(One, IntegerType::getInt64Ty(M.getContext()),"1");
The second argument to CreateZExt is the destination type to which I want to zero extend,correct me if I am wrong.
I am a beginner in LLVM and find it difficult to get info on what functions to use in the passes. What resources are available except the doxygen documentation for the source code?
muldoing? – Eli Bendersky Feb 24 '12 at 21:30EntryBlockin the input function? – CAFxX Feb 25 '12 at 8:06