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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DependentDiagnostic.h 46 NamedDecl *TargetDecl,
54 DD->AccessData.TargetDecl = TargetDecl;
81 return AccessData.TargetDecl;
118 NamedDecl *TargetDecl;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXX.cpp 113 GlobalDecl TargetDecl(BaseD, Dtor_Base);
124 getFunctionLinkage(TargetDecl);
141 auto *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl));
150 TargetDecl.getDecl()->hasAttr<AlwaysInlineAttr>())) {
CGCall.cpp 2006 const Decl *TargetDecl = CalleeInfo.getCalleeDecl().getDecl();
2015 if (TargetDecl) {
2016 if (TargetDecl->hasAttr<ReturnsTwiceAttr>())
2018 if (TargetDecl->hasAttr<NoThrowAttr>())
2020 if (TargetDecl->hasAttr<NoReturnAttr>())
2022 if (TargetDecl->hasAttr<ColdAttr>())
2024 if (TargetDecl->hasAttr<HotAttr>())
2026 if (TargetDecl->hasAttr<NoDuplicateAttr>())
2028 if (TargetDecl->hasAttr<ConvergentAttr>())
2031 if (const FunctionDecl *Fn = dyn_cast<FunctionDecl>(TargetDecl)) {
    [all...]
CodeGenFunction.cpp 2436 const FunctionDecl *TargetDecl) {
2437 return checkTargetFeatures(E->getBeginLoc(), TargetDecl);
2443 const FunctionDecl *TargetDecl) {
2445 if (!TargetDecl)
2457 unsigned BuiltinID = TargetDecl->getBuiltinID();
2472 << TargetDecl->getDeclName() << FeatureList;
2473 } else if (!TargetDecl->isMultiVersion() &&
2474 TargetDecl->hasAttr<TargetAttr>()) {
2477 const TargetAttr *TD = TargetDecl->getAttr<TargetAttr>();
2483 CGM.getContext().getFunctionFeatureMap(CalleeFeatureMap, TargetDecl);
    [all...]
CGExpr.cpp 5127 const Decl *TargetDecl =
5137 (!TargetDecl || !isa<FunctionDecl>(TargetDecl))) {
5190 (!TargetDecl || !isa<FunctionDecl>(TargetDecl))) {
5295 (!TargetDecl || !isa<FunctionDecl>(TargetDecl))) {
5309 if (auto *CalleeDecl = dyn_cast_or_null<FunctionDecl>(TargetDecl))
CodeGenFunction.h 3958 void checkTargetFeatures(const CallExpr *E, const FunctionDecl *TargetDecl);
3959 void checkTargetFeatures(SourceLocation Loc, const FunctionDecl *TargetDecl);
ItaniumCXXABI.cpp 4260 GlobalDecl TargetDecl) {
4268 auto *Aliasee = cast<llvm::GlobalValue>(CGM.GetAddrOfGlobal(TargetDecl));
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 356 if (const auto *TargetDecl =
358 if (isInUSRSet(TargetDecl)) {
361 TargetDecl,
390 if (const auto *TargetDecl = getSupportedDeclFromTypeLoc(Loc)) {
391 if (isInUSRSet(TargetDecl)) {
411 TargetDecl,
  /src/external/apache2/llvm/dist/clang/lib/AST/
CXXInheritance.cpp 110 const CXXRecordDecl *TargetDecl = Base->getCanonicalDecl();
111 return forallBases([TargetDecl](const CXXRecordDecl *Base) {
112 return Base->getCanonicalDecl() != TargetDecl;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAccess.cpp 1519 NamedDecl *TargetDecl = cast<NamedDecl>(TargetD);
1530 DeclAccessPair::make(TargetDecl, Access),
SemaChecking.cpp 368 const Decl *TargetDecl = CE->getCalleeDecl();
369 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl))

Completed in 40 milliseconds