如何检查LLVM StoreInst的目标是否是函数指针

时间:2016-09-14 08:24:09

标签: c++ llvm llvm-ir

如何检查LLVM StoreInst的存储目标是否为函数指针?

1 个答案:

答案 0 :(得分:2)

给定LLVM加载/存储指令,有两个单独的部分要计算。首先,该位置的类型是什么。其次,这种类型是否符合某些特性,等等。

if (StoreInst *si = dyn_cast<StoreInst>(&*I))
{
    Value* v = si->getPointerOperand();
    Type* ptrType = v->getType()->getPointerElementType();

现在,指针类型就是数据存储的类型。但我们想知道底层类型是否实际上是一个函数,从而使它成为一个函数指针(或指针指针,等等)。

    if (PointerType* pt = dyn_cast<PointerType>(ptrType))
    {
        do {
            // The call to getTypeAtIndex has to be made on a composite type
            //   And needs explicitly an unsigned int, otherwise 0
            //   can ambiguously be NULL.
            Type* pointedType = pt->getTypeAtIndex((unsigned int)0);
            if (pointedType->isFunctionTy())
            {
                errs() << "Found the underlying function type\n";
                break;
            }

            // This may be a pointer to a pointer to ...
            ptrType = pointedType;
        } while (pt = dyn_cast<PointerType>(ptrType));

此代码检测以下存储 - store i8* (i8*)* @tFunc, i8* (i8*)** %8, align 8,它将指向函数tFunc的指针存储到另一个位置。