Home
last modified time | relevance | path

Searched refs:ThisType (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/CodeGen/
DCGVTables.cpp218 QualType ThisType = MD->getThisType(getContext()); in StartThunk() local
221 ? ThisType in StartThunk()
282 QualType ThisType = MD->getThisType(getContext()); in EmitCallAndReturnForThunk() local
283 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); in EmitCallAndReturnForThunk()
314 ? ThisType in EmitCallAndReturnForThunk()
360 llvm::Type *ThisType = Args[ThisArgNo]->getType(); in EmitMustTailThunk() local
361 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
362 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); in EmitMustTailThunk()
367 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk() local
368 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk()
[all …]
DCGClass.cpp2729 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaBlockInvokeBody() local
2731 CallArgs.add(RValue::get(ThisPtr.getPointer()), ThisType); in EmitLambdaBlockInvokeBody()
2759 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaDelegatingInvokeBody() local
2760 llvm::Value *ThisPtr = llvm::UndefValue::get(getTypes().ConvertType(ThisType)); in EmitLambdaDelegatingInvokeBody()
2761 CallArgs.add(RValue::get(ThisPtr), ThisType); in EmitLambdaDelegatingInvokeBody()
DCGExprCXX.cpp320 QualType ThisType = in EmitCXXMemberPointerCallExpr() local
324 Args.add(RValue::get(ThisPtrForCall), ThisType); in EmitCXXMemberPointerCallExpr()
DCGCall.cpp215 const CXXRecordDecl *ThisType = TheCXXABI.getThisArgumentTypeForMethod(MD); in arrangeCXXMethodDeclaration() local
216 return arrangeCXXMethodType(ThisType, prototype.getTypePtr(), MD); in arrangeCXXMethodDeclaration()
/external/clang/lib/Analysis/
DConsumed.cpp778 QualType ThisType = Constructor->getThisType(CurrContext)->getPointeeType(); in VisitCXXConstructExpr() local
780 if (!isConsumableType(ThisType)) in VisitCXXConstructExpr()
801 ConsumedState RetState = mapConsumableAttrState(ThisType); in VisitCXXConstructExpr()
/external/clang/lib/Sema/
DSemaOverload.cpp3026 QualType ThisType = Constructor->getThisType(S.Context); in IsInitializerListConstructorConversion() local
3033 User.After.setFromType(ThisType->getAs<PointerType>()->getPointeeType()); in IsInitializerListConstructorConversion()
3215 QualType ThisType = Constructor->getThisType(S.Context); in IsUserDefinedConversion() local
3231 User.After.setFromType(ThisType->getAs<PointerType>()->getPointeeType()); in IsUserDefinedConversion()
DSemaExpr.cpp2009 QualType ThisType = S.getCurrentThisType(); in recoverFromMSUnqualifiedLookup() local
2011 if (!ThisType.isNull()) in recoverFromMSUnqualifiedLookup()
2012 RD = ThisType->getPointeeType()->getAsCXXRecordDecl(); in recoverFromMSUnqualifiedLookup()
2024 if (!ThisType.isNull()) { in recoverFromMSUnqualifiedLookup()
2027 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true, in recoverFromMSUnqualifiedLookup()
DSemaDeclAttr.cpp875 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType(); in checkForConsumableClass() local
877 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) { in checkForConsumableClass()
DSemaTemplate.cpp419 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context); in ActOnDependentIdExpression() local
426 Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true, in ActOnDependentIdExpression()
DTreeTransform.h2460 QualType ThisType, in RebuildCXXThisExpr() argument
2463 return new (getSema().Context) CXXThisExpr(ThisLoc, ThisType, isImplicit); in RebuildCXXThisExpr()