/external/clang/lib/CodeGen/ |
CodeGenFunction.cpp | 137 return CGF.CurFn->getBasicBlockList().push_back(BB); 229 llvm::ConstantExpr::getBitCast(CurFn, PointerTy), 252 CurFn = Fn; 254 assert(CurFn->isDeclaration() && "Function already has body?"); 279 llvm::BasicBlock *EntryBB = createBasicBlock("entry", CurFn); 302 DI->EmitFunctionStart(GD, FnType, CurFn, Builder); 318 ReturnValue = CurFn->arg_begin(); 334 EmitFunctionProlog(*CurFnInfo, CurFn, Args); 411 if (!CurFn->doesNotThrow()) 412 TryMarkNoThrow(CurFn); [all...] |
CGDecl.cpp | 124 if (llvm::GlobalValue::isWeakForLinker(CurFn->getLinkage())) 125 Linkage = CurFn->getLinkage(); 162 ContextName = CGF.CurFn->getName(); 187 GV->setVisibility(CurFn->getVisibility()); [all...] |
CGStmt.cpp | 266 CurFn->getBasicBlockList().insertAfter(CurBB, BB); 268 CurFn->getBasicBlockList().push_back(BB); 854 CurFn->getBasicBlockList().push_back(CaseRangeBlock); [all...] |
CGExprScalar.cpp | [all...] |
CGBuiltin.cpp | 478 BasicBlock *End = createBasicBlock("fpclassify_end", this->CurFn); 489 BasicBlock *NotZero = createBasicBlock("fpclassify_not_zero", this->CurFn); 497 BasicBlock *NotNan = createBasicBlock("fpclassify_not_nan", this->CurFn); 508 BasicBlock *NotInf = createBasicBlock("fpclassify_not_inf", this->CurFn); [all...] |
CGCall.cpp | [all...] |
CGObjCMac.cpp | [all...] |
CGBlocks.cpp | 486 std::string Name = CurFn->getName(); [all...] |
CGClass.cpp | [all...] |
CGExprConstant.cpp | 922 FunctionName = CGF->CurFn->getName(); [all...] |
CGExpr.cpp | [all...] |
CodeGenFunction.h | 616 llvm::Function *CurFn; [all...] |
CGVTables.cpp | [all...] |
/external/llvm/lib/ExecutionEngine/JIT/ |
JITEmitter.cpp | 337 // CurFn - The llvm function being emitted. Only valid during 339 const Function *CurFn; 367 : SizeEstimate(0), Resolver(jit, *this), MMI(0), CurFn(0), 836 CurFn = F.getFunction(); [all...] |
/external/llvm/lib/Analysis/ |
DebugInfo.cpp | 479 bool DIVariable::isInlinedFnArgument(const Function *CurFn) { 480 assert(CurFn && "Invalid function"); 485 return !(DISubprogram(getContext()).describes(CurFn));
|
/external/llvm/include/llvm/Analysis/ |
DebugInfo.h | 644 bool isInlinedFnArgument(const Function *CurFn);
|