Searched refs:TheFn (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/IR/
H A DIRBuilder.cpp70 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys); local
72 CallInst *CI = createCallHelper(TheFn, Ops, this);
90 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys); local
92 CallInst *CI = createCallHelper(TheFn, Ops, this);
114 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys); local
116 CallInst *CI = createCallHelper(TheFn, Ops, this);
136 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start); local
137 return createCallHelper(TheFn, Ops, this);
151 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end); local
152 return createCallHelper(TheFn, Op
[all...]
/external/llvm/lib/AsmParser/
H A DLLParser.h430 bool ResolveForwardRefBlockAddresses(Function *TheFn,
H A DLLParser.cpp136 Function *TheFn = nullptr; local
139 TheFn = M->getFunction(Fn.StrVal);
141 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
143 if (!TheFn)
147 if (ResolveForwardRefBlockAddresses(TheFn,
196 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn, argument
212 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
220 BlockAddress *BA = BlockAddress::get(TheFn, Res);

Completed in 146 milliseconds