HomeSort by: relevance | last modified time | path
    Searched refs:CurFuncDecl (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenABITypes.cpp 125 CGF.CurFuncDecl = D;
CodeGenFunction.cpp 169 assert((CGF.CurFuncDecl == nullptr || CGF.Builder.getIsFPConstrained() ||
170 isa<CXXConstructorDecl>(CGF.CurFuncDecl) ||
171 isa<CXXDestructorDecl>(CGF.CurFuncDecl) ||
527 if (!CurFuncDecl || CurFuncDecl->hasAttr<NoInstrumentFunctionAttr>())
716 CurFuncDecl = (D ? D->getNonClosureContext() : nullptr);
1013 if (!CurFuncDecl || !CurFuncDecl->hasAttr<NoInstrumentFunctionAttr>()) {
1183 if (CurFuncDecl)
1184 if (const auto *VecWidth = CurFuncDecl->getAttr<MinVectorWidthAttr>()
    [all...]
CGObjCRuntime.cpp 198 CGF.CurSEHParent = cast<NamedDecl>(CGF.CurFuncDecl);
CGCUDANV.cpp 292 EmittedKernels.push_back({CGF.CurFn, CGF.CurFuncDecl});
346 CGM.Error(CGF.CurFuncDecl->getLocation(),
CGVTables.cpp 280 CurFuncDecl = MD;
287 CurFuncDecl = nullptr;
CGObjC.cpp 684 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
1692 VarDecl *Self = cast<ObjCMethodDecl>(CurFuncDecl)->getSelfDecl();
1694 /*is enclosing local*/ (CurFuncDecl != CurCodeDecl),
1700 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
CodeGenFunction.h 319 /// CurFuncDecl - Holds the Decl for the current outermost
321 const Decl *CurFuncDecl;
1626 : CGF(CGF), OldCurGD(CGF.CurGD), OldCurFuncDecl(CGF.CurFuncDecl),
1637 CGF.CurFuncDecl = CGF.CurCodeDecl =
1650 CGF.CurFuncDecl = OldCurFuncDecl;
CGBlocks.cpp 553 assert(CGF && CGF->CurFuncDecl && isa<CXXMethodDecl>(CGF->CurFuncDecl) &&
555 QualType thisType = cast<CXXMethodDecl>(CGF->CurFuncDecl)->getThisType();
CGClass.cpp 129 assert(CurFuncDecl && "loading 'this' without a func declaration?");
130 assert(isa<CXXMethodDecl>(CurFuncDecl));
137 auto RD = cast<CXXMethodDecl>(CurFuncDecl)->getParent();
CGCall.cpp 3567 if (CurFuncDecl && CurFuncDecl->hasAttr<CmseNSEntryAttr>()) {
5160 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl))
5225 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl))
5254 if (const auto *FD = dyn_cast_or_null<FunctionDecl>(CurFuncDecl)) {
CGStmtOpenMP.cpp 5943 assert(CGF.CurFuncDecl && "No parent declaration for target region!");
5947 if (const auto *D = dyn_cast<CXXConstructorDecl>(CGF.CurFuncDecl))
5949 else if (const auto *D = dyn_cast<CXXDestructorDecl>(CGF.CurFuncDecl))
5953 CGM.getMangledName(GlobalDecl(cast<FunctionDecl>(CGF.CurFuncDecl)));
ItaniumCXXABI.cpp 1671 if (CGF.CurFuncDecl && CGF.CurFuncDecl->hasAttr<NakedAttr>())
MicrosoftCXXABI.cpp 1520 if (CGF.CurFuncDecl && CGF.CurFuncDecl->hasAttr<NakedAttr>())
CGOpenMPRuntime.cpp 1426 if (const auto *FD = dyn_cast_or_null<FunctionDecl>(CGF.CurFuncDecl))
1441 if (const auto *FD = dyn_cast_or_null<FunctionDecl>(CGF.CurFuncDecl))
CGObjCMac.cpp 1584 dyn_cast_or_null<ObjCMethodDecl>(CGF.CurFuncDecl))
CGBuiltin.cpp 4975 if (const auto *XRayAttr = CurFuncDecl->getAttr<XRayInstrumentAttr>())
5009 if (const auto *XRayAttr = CurFuncDecl->getAttr<XRayInstrumentAttr>())

Completed in 70 milliseconds