HomeSort by relevance Sort by last modified time
    Searched refs:TheFn (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/VMCore/
IRBuilder.cpp 70 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
72 CallInst *CI = createCallHelper(TheFn, Ops, this);
90 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
92 CallInst *CI = createCallHelper(TheFn, Ops, this);
110 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
112 CallInst *CI = createCallHelper(TheFn, Ops, this);
132 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
133 return createCallHelper(TheFn, Ops, this);
147 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
148 return createCallHelper(TheFn, Ops, this)
    [all...]
DebugInfoProbe.cpp 53 Function *TheFn;
69 TheFn = &F;
114 assert (TheFn == &F && "Invalid function to measure!");
  /external/llvm/lib/AsmParser/
LLParser.h 375 bool ResolveForwardRefBlockAddresses(Function *TheFn,
LLParser.cpp 73 Function *TheFn = 0;
76 TheFn = M->getFunction(Fn.StrVal);
78 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
80 if (TheFn == 0)
84 if (ResolveForwardRefBlockAddresses(TheFn,
131 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
147 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
155 BlockAddress *BA = BlockAddress::get(TheFn, Res);
    [all...]

Completed in 72 milliseconds