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

  /external/llvm/lib/IR/
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);
114 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
116 CallInst *CI = createCallHelper(TheFn, Ops, this);
136 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
137 return createCallHelper(TheFn, Ops, this);
151 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
152 return createCallHelper(TheFn, Ops, this)
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 131 Function *TheFn = 0;
134 TheFn = M->getFunction(Fn.StrVal);
136 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
138 if (TheFn == 0)
142 if (ResolveForwardRefBlockAddresses(TheFn,
184 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
200 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
208 BlockAddress *BA = BlockAddress::get(TheFn, Res);
    [all...]

Completed in 31 milliseconds