/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | MultiplexConsumer.cpp | 104 Expr *ThisArg) override; 178 const CXXDestructorDecl *DD, const FunctionDecl *Delete, Expr *ThisArg) { in ResolvedOperatorDelete() argument 180 L->ResolvedOperatorDelete(DD, Delete, ThisArg); in ResolvedOperatorDelete()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTMutationListener.h | 87 Expr *ThisArg) {} in ResolvedOperatorDelete() argument
|
H A D | DeclCXX.h | 2837 void setOperatorDelete(FunctionDecl *OD, Expr *ThisArg);
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGClass.cpp | 1573 if (Expr *ThisArg = DD->getOperatorDeleteThisArg()) in LoadThisForDtorDelete() local 1574 return CGF.EmitScalarExpr(ThisArg); in LoadThisForDtorDelete() 2275 CallArg ThisArg(RValue::get(getAsNaturalPointerTo( in EmitInheritedCXXConstructorCall() local 2286 Args.push_back(ThisArg); in EmitInheritedCXXConstructorCall() 2292 Args[0] = ThisArg; in EmitInheritedCXXConstructorCall() 2295 Args.push_back(ThisArg); in EmitInheritedCXXConstructorCall() 3101 llvm::Value *ThisArg = CurFn->getArg(0); in EmitLambdaInAllocaCallOpBody() local 3102 CallArgs.add(RValue::get(ThisArg), ThisType); in EmitLambdaInAllocaCallOpBody()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprCXX.cpp | 733 Expr* ThisArg = getImplicitObjectArgument(); in getRecordDecl() local 734 if (!ThisArg) in getRecordDecl() 737 if (ThisArg->getType()->isAnyPointerType()) in getRecordDecl() 738 return ThisArg->getType()->getPointeeType()->getAsCXXRecordDecl(); in getRecordDecl() 740 return ThisArg->getType()->getAsCXXRecordDecl(); in getRecordDecl()
|
H A D | DeclCXX.cpp | 2908 void CXXDestructorDecl::setOperatorDelete(FunctionDecl *OD, Expr *ThisArg) { in setOperatorDelete() argument 2912 First->OperatorDeleteThisArg = ThisArg; in setOperatorDelete() 2914 L->ResolvedOperatorDelete(First, OD, ThisArg); in setOperatorDelete()
|
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ASTWriter.h | 893 Expr *ThisArg) override;
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 2316 auto *ThisArg = Record.readExpr(); in VisitCXXDestructorDecl() local 2320 Canon->OperatorDeleteThisArg = ThisArg; in VisitCXXDestructorDecl() 4710 auto *ThisArg = Record.readExpr(); in UpdateDecl() local 4714 First->OperatorDeleteThisArg = ThisArg; in UpdateDecl()
|
H A D | ASTWriter.cpp | 6884 Expr *ThisArg) { in ResolvedOperatorDelete() argument
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOverload.cpp | 7129 Sema &S, FunctionDecl *Function, Expr *ThisArg, SourceLocation CallLoc, in convertArgsForAvailabilityChecks() argument 7132 if (ThisArg) { in convertArgsForAvailabilityChecks() 7138 ThisArg, /*Qualifier=*/nullptr, Method, Method); in convertArgsForAvailabilityChecks() 7263 const Expr *ThisArg, in diagnoseArgDependentDiagnoseIfAttrs() argument 7274 Result, Context, cast<FunctionDecl>(DIA->getParent()), Args, ThisArg)) in diagnoseArgDependentDiagnoseIfAttrs()
|
H A D | SemaDeclCXX.cpp | 10854 Expr *ThisArg = nullptr; in CheckDestructor() local 10876 ThisArg = This.get(); in CheckDestructor() 10882 Destructor->setOperatorDelete(OperatorDelete, ThisArg); in CheckDestructor()
|
H A D | SemaChecking.cpp | 3152 const Expr *ThisArg, ArrayRef<const Expr *> Args, in checkCall() argument 3333 diagnoseArgDependentDiagnoseIfAttrs(FD, ThisArg, Args, Loc); in checkCall()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 2357 const Expr *ThisArg, ArrayRef<const Expr *> Args, 10353 const Expr *ThisArg,
|