我有这个字节码片段:
define void @setGlobal(i32 %a) #0 {
entry:
%a.addr = alloca i32, align 4
store i32 %a, i32* %a.addr, align 4
%0 = load i32* %a.addr, align 4
store i32 %0, i32* @Global, align 4
%1 = load i32* %a.addr, align 4
store i32 %1, i32* getelementptr inbounds ([5 x i32]* @GlobalVec, i32 0, i64 0), align 4
store i32 2, i32* getelementptr inbounds ([5 x i32]* @GlobalVec, i32 0, i64 2), align 4
ret void
}
我正在使用此代码从“store i32 %1, i32* getelementptr inbounds ([5 x i32]* @GlobalVec, i32 0, i64 0), align 4”中查找getelementptr:
for (Module::iterator F = p_Module.begin(), endF = p_Module.end(); F != endF; ++F) {
for (Function::iterator BB = F->begin(), endBB = F->end(); BB != endBB; ++BB) {
for (BasicBlock::iterator I = BB->begin(), endI = BB->end(); I
!= endI; ++I) {
if (StoreInst* SI = dyn_cast<StoreInst>(I)) {
if (Instruction *gep = dyn_cast<Instruction>(SI->getOperand(1)))
{
if (gep->getOpcode() == Instruction::GetElementPtr)
{
//do something
}
}
}
}
}
}
此代码找不到 getelementptr。我究竟做错了什么?
最佳答案
您的 bitcode 片段中没有 getelementptr
指令,这就是您找不到它们的原因。
看起来像 getelementptr
指令的两种情况实际上是 constant expressions - 明显的迹象是它们作为另一条指令 ( store
) 的一部分出现,这不是你可以用常规指令做的。
因此,如果要搜索该表达式,则需要查找 type GetElementPtrConstantExpr
,而不是 GetElementPtrInst
。
关于LLVM 找不到 getelementptr 指令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21803192/