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

  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 151 return CGF.CurFn->getBasicBlockList().push_back(BB);
242 llvm::ConstantExpr::getBitCast(CurFn, PointerTy),
264 CurFn = Fn;
266 assert(CurFn->isDeclaration() && "Function already has body?");
292 llvm::BasicBlock *EntryBB = createBasicBlock("entry", CurFn);
322 DI->EmitFunctionStart(GD, FnType, CurFn, Builder);
338 ReturnValue = CurFn->arg_begin();
354 EmitFunctionProlog(*CurFnInfo, CurFn, Args);
474 if (!CurFn->doesNotThrow())
475 TryMarkNoThrow(CurFn);
    [all...]
CGCUDANV.cpp 117 llvm::Value *Arg = CGF.Builder.CreatePointerCast(CGF.CurFn, CharPtrTy);
CGBuiltin.cpp 482 BasicBlock *End = createBasicBlock("fpclassify_end", this->CurFn);
493 BasicBlock *NotZero = createBasicBlock("fpclassify_not_zero", this->CurFn);
501 BasicBlock *NotNan = createBasicBlock("fpclassify_not_nan", this->CurFn);
512 BasicBlock *NotInf = createBasicBlock("fpclassify_not_inf", this->CurFn);
    [all...]
CGStmt.cpp 258 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
260 CurFn->getBasicBlockList().push_back(BB);
286 CurFn->getBasicBlockList().insertAfter(insn->getParent(), block);
293 CurFn->getBasicBlockList().push_back(block);
863 CurFn->getBasicBlockList().push_back(CaseRangeBlock);
    [all...]
CGExprScalar.cpp     [all...]
CGDecl.cpp 125 if (llvm::GlobalValue::isWeakForLinker(CurFn->getLinkage()))
126 Linkage = CurFn->getLinkage();
165 ContextName = CGF.CurFn->getName();
195 GV->setVisibility(CurFn->getVisibility());
    [all...]
CGExpr.cpp     [all...]
CGVTables.cpp 259 CurFn = Fn;
CGBlocks.cpp 498 *new CGBlockInfo(block, CGF.CurFn->getName());
610 CGBlockInfo blockInfo(blockExpr->getBlockDecl(), CurFn->getName());
    [all...]
CGCall.cpp     [all...]
CGObjCMac.cpp     [all...]
CGClass.cpp     [all...]
CGExprConstant.cpp     [all...]
CodeGenFunction.h 574 llvm::Function *CurFn;
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 333 // CurFn - The llvm function being emitted. Only valid during
335 const Function *CurFn;
365 : SizeEstimate(0), Resolver(jit, *this), MMI(0), CurFn(0),
833 CurFn = F.getFunction();
    [all...]
  /external/llvm/lib/Analysis/
DebugInfo.cpp 535 bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
536 assert(CurFn && "Invalid function");
541 return !(DISubprogram(getContext()).describes(CurFn));
    [all...]
  /external/llvm/include/llvm/Analysis/
DebugInfo.h 707 bool isInlinedFnArgument(const Function *CurFn);
    [all...]

Completed in 546 milliseconds