Searched refs:TheFn (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/VMCore/ |
D | IRBuilder.cpp | 70 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys); in CreateMemSet() local 72 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemSet() 90 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys); in CreateMemCpy() local 92 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemCpy() 110 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys); in CreateMemMove() local 112 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemMove() 132 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start); in CreateLifetimeStart() local 133 return createCallHelper(TheFn, Ops, this); in CreateLifetimeStart() 147 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end); in CreateLifetimeEnd() local 148 return createCallHelper(TheFn, Ops, this); in CreateLifetimeEnd()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 73 Function *TheFn = 0; in ValidateEndOfModule() local 76 TheFn = M->getFunction(Fn.StrVal); in ValidateEndOfModule() 78 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]); in ValidateEndOfModule() 80 if (TheFn == 0) in ValidateEndOfModule() 84 if (ResolveForwardRefBlockAddresses(TheFn, in ValidateEndOfModule() 126 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn, in ResolveForwardRefBlockAddresses() argument 142 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal)); in ResolveForwardRefBlockAddresses() 150 BlockAddress *BA = BlockAddress::get(TheFn, Res); in ResolveForwardRefBlockAddresses()
|
D | LLParser.h | 379 bool ResolveForwardRefBlockAddresses(Function *TheFn,
|