/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineC.cpp | 434 QualType resultType = CastE->getType(); in VisitCast() local 436 resultType = getContext().getPointerType(resultType); in VisitCast() 457 svalBuilder.makeNullWithType(resultType)); in VisitCast() 463 svalBuilder.conjureSymbolVal(nullptr, CastE, LCtx, resultType, in VisitCast() 475 QualType resultType = CastE->getType(); in VisitCast() local 477 resultType = getContext().getPointerType(resultType); in VisitCast() 487 svalBuilder.conjureSymbolVal(nullptr, CastE, LCtx, resultType, in VisitCast() 526 QualType resultType = CastE->getType(); in VisitCast() local 528 resultType = getContext().getPointerType(resultType); in VisitCast() 530 /*symbolTag=*/nullptr, CastE, LCtx, resultType, in VisitCast()
|
H A D | ExprEngine.cpp | 2025 QualType resultType = Ex->getType(); in Visit() local 2030 resultType, in Visit()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenTypes.h | 224 arrangeBuiltinFunctionDeclaration(QualType resultType, 227 arrangeBuiltinFunctionDeclaration(CanQualType resultType, 229 const CGFunctionInfo &arrangeBuiltinFunctionCall(QualType resultType,
|
H A D | CGCall.cpp | 195 CanQualType resultType = FTP->getReturnType().getUnqualifiedType(); in arrangeLLVMFunctionInfo() local 199 return CGT.arrangeLLVMFunctionInfo(resultType, opts, prefix, in arrangeLLVMFunctionInfo() 376 CanQualType resultType = getCXXABI().HasThisReturn(GD) ? argTypes.front() in arrangeCXXStructorDeclaration() local 380 return arrangeLLVMFunctionInfo(resultType, FnInfoOpts::IsInstanceMethod, in arrangeCXXStructorDeclaration() 667 CodeGenTypes::arrangeBuiltinFunctionCall(QualType resultType, in arrangeBuiltinFunctionCall() argument 673 return arrangeLLVMFunctionInfo(GetReturnType(resultType), FnInfoOpts::None, in arrangeBuiltinFunctionCall() 679 CodeGenTypes::arrangeBuiltinFunctionDeclaration(QualType resultType, in arrangeBuiltinFunctionDeclaration() argument 683 return arrangeLLVMFunctionInfo(GetReturnType(resultType), FnInfoOpts::None, in arrangeBuiltinFunctionDeclaration() 689 CodeGenTypes::arrangeBuiltinFunctionDeclaration(CanQualType resultType, in arrangeBuiltinFunctionDeclaration() argument 691 return arrangeLLVMFunctionInfo(resultType, FnInfoOpts::None, argTypes, in arrangeBuiltinFunctionDeclaration() [all …]
|
H A D | CGObjCRuntime.cpp | 361 QualType resultType, in getMessageSendInfo() argument 381 CGM.getTypes().arrangeUnprototypedObjCMessageSend(resultType, callArgs); in getMessageSendInfo()
|
H A D | CGObjC.cpp | 2744 llvm::Type *resultType) { in EmitObjCAlloc() argument 2745 return emitObjCValueOperation(*this, value, resultType, in EmitObjCAlloc() 2753 llvm::Type *resultType) { in EmitObjCAllocWithZone() argument 2754 return emitObjCValueOperation(*this, value, resultType, in EmitObjCAllocWithZone() 2760 llvm::Type *resultType) { in EmitObjCAllocInit() argument 2761 return emitObjCValueOperation(*this, value, resultType, in EmitObjCAllocInit() 3199 llvm::Type *resultType = CGF.ConvertType(e->getType()); in visitCastExpr() local 3202 return asImpl().emitBitCast(result, resultType); in visitCastExpr() 3347 TryEmitResult emitBitCast(TryEmitResult result, llvm::Type *resultType) { in emitBitCast() 3349 value = CGF.Builder.CreateBitCast(value, resultType); in emitBitCast() [all …]
|
H A D | CGObjCRuntime.h | 339 QualType resultType,
|
H A D | CGClass.cpp | 2976 QualType resultType = FPT->getReturnType(); in EmitForwardingCallToLambda() local 2978 if (!resultType->isVoidType() && in EmitForwardingCallToLambda() 2982 ReturnValueSlot(ReturnValue, resultType.isVolatileQualified(), in EmitForwardingCallToLambda() 2994 if (!resultType->isVoidType() && returnSlot.isNull()) { in EmitForwardingCallToLambda() 2995 if (getLangOpts().ObjCAutoRefCount && resultType->isObjCRetainableType()) { in EmitForwardingCallToLambda() 2998 EmitReturnOfRValue(RV, resultType); in EmitForwardingCallToLambda()
|
H A D | CGObjCMac.cpp | 108 llvm::Type *resultType = in getMessageSendFp2retFn() local 111 return CGM.CreateRuntimeFunction(llvm::FunctionType::get(resultType, in getMessageSendFp2retFn() 1749 QualType resultType, in complete() 1778 if (result.isScalar() && resultType->isVoidType()) { in complete() 1788 CGF.EmitFromMemory(CGF.CGM.EmitNullConstant(resultType), resultType); in complete() 1808 CGF.EmitNullInitialization(result.getAggregateAddress(), resultType); in complete() 7232 QualType resultType, in EmitVTableMessageSend() argument 7253 MessageSendInfo MSI = getMessageSendInfo(method, resultType, args); in EmitVTableMessageSend() 7275 } else if (!isSuper && CGM.ReturnTypeUsesFPRet(resultType)) { in EmitVTableMessageSend() 7336 return nullReturn.complete(CGF, returnSlot, result, resultType, formalArgs, in EmitVTableMessageSend()
|
H A D | CGExprCXX.cpp | 1772 llvm::Type *resultType = ConvertTypeForMem(E->getType()); in EmitCXXNewExpr() local 1773 if (resultPtr->getType() != resultType) in EmitCXXNewExpr() 1774 resultPtr = Builder.CreateBitCast(resultPtr, resultType); in EmitCXXNewExpr()
|
H A D | CGAtomic.cpp | 317 QualType resultType, in emitAtomicLibcall() argument 320 CGF.CGM.getTypes().arrangeBuiltinFunctionCall(resultType, args); in emitAtomicLibcall()
|
H A D | CGExpr.cpp | 1745 QualType resultType; in tryEmitAsConstant() local 1751 resultType = refExpr->getType(); in tryEmitAsConstant() 1757 resultType = value->getType(); in tryEmitAsConstant() 1793 result.Val, resultType); in tryEmitAsConstant()
|
H A D | CodeGenFunction.h | 4772 llvm::Value *EmitObjCAllocInit(llvm::Value *value, llvm::Type *resultType);
|
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
H A D | CGFunctionInfo.h | 642 ArrayRef<ExtParameterInfo> paramInfos, CanQualType resultType, 793 RequiredArgs required, CanQualType resultType, in Profile() argument 812 resultType.Profile(ID); in Profile()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaPseudoObject.cpp | 504 QualType resultType = result.get()->getType(); in buildIncDecOperation() local 537 UnaryOperator::Create(S.Context, syntacticOp, opcode, resultType, in buildIncDecOperation() 539 !resultType->isDependentType() in buildIncDecOperation() 540 ? S.Context.getTypeSize(resultType) >= in buildIncDecOperation() 883 QualType resultType = Getter->getReturnType(); in tryBuildGetOfReference() local 884 if (!resultType->isLValueReferenceType()) return false; in tryBuildGetOfReference()
|
H A D | SemaExprObjC.cpp | 1538 QualType resultType = getBaseMessageSendResultType( in getMessageSendResultType() local 1560 if (auto Nullability = resultType->getNullability()) in getMessageSendResultType() 1567 return resultType; in getMessageSendResultType() 1572 if (!resultType->canHaveNullability()) in getMessageSendResultType() 1573 return resultType; in getMessageSendResultType() 1586 resultType->getNullability()) { in getMessageSendResultType() 1609 return resultType; in getMessageSendResultType() 1614 if (auto attributed = dyn_cast<AttributedType>(resultType.getTypePtr())) { in getMessageSendResultType() 1615 resultType = attributed->getModifiedType(); in getMessageSendResultType() 1617 resultType = resultType.getDesugaredType(Context); in getMessageSendResultType() [all …]
|
H A D | SemaObjC.cpp | 1951 QualType resultType; in handleReturnsInnerPointerAttr() local 1953 resultType = cast<ObjCMethodDecl>(D)->getReturnType(); in handleReturnsInnerPointerAttr() 1955 resultType = cast<ObjCPropertyDecl>(D)->getType(); in handleReturnsInnerPointerAttr() 1957 if (!resultType->isReferenceType() && in handleReturnsInnerPointerAttr() 1958 (!resultType->isPointerType() || resultType->isObjCRetainableType())) { in handleReturnsInnerPointerAttr()
|
H A D | SemaExpr.cpp | 15283 QualType resultType; in CreateBuiltinUnaryOp() local 15310 resultType = Context.DependentTy; in CreateBuiltinUnaryOp() 15317 resultType = in CreateBuiltinUnaryOp() 15321 CanOverflow = isOverflowingIntegerType(Context, resultType); in CreateBuiltinUnaryOp() 15324 resultType = CheckAddressOfOperand(Input, OpLoc); in CreateBuiltinUnaryOp() 15332 resultType = in CreateBuiltinUnaryOp() 15352 resultType = Input.get()->getType(); in CreateBuiltinUnaryOp() 15353 if (resultType->isArithmeticType()) // C99 6.5.3.3p1 in CreateBuiltinUnaryOp() 15355 else if (resultType->isVectorType() && in CreateBuiltinUnaryOp() 15358 resultType->castAs<VectorType>()->getVectorKind() != in CreateBuiltinUnaryOp() [all …]
|
H A D | SemaOverload.cpp | 15233 QualType resultType = proto->getCallResultType(Context); in BuildCallToMemberFunction() local 15257 Context, MemExprE, Args, resultType, valueKind, RParenLoc, in BuildCallToMemberFunction()
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 1350 bool isOk( ResultWas::OfType resultType ); 2447 ResultWas::OfType resultType, 2461 ResultWas::OfType resultType, 2530 void handleMessage(ResultWas::OfType resultType, StringRef const& message); 2615 …Capturer( StringRef macroName, SourceLineInfo const& lineInfo, ResultWas::OfType resultType, Strin… 5329 ResultWas::OfType resultType; member 8003 ResultWas::OfType resultType, 8017 ResultWas::OfType resultType, 8066 ResultWas::OfType resultType, 8148 void AssertionHandler::handleMessage(ResultWas::OfType resultType, StringRef const& message) { in handleMessage() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Expr.h | 2587 QualType resultType, SourceLocation op, in UnaryExprOrTypeTraitExpr() argument 2589 : Expr(UnaryExprOrTypeTraitExprClass, resultType, VK_PRValue, in UnaryExprOrTypeTraitExpr() 2603 QualType resultType, SourceLocation op,
|
H A D | ExprCXX.h | 2945 bool value, SourceLocation rparen, QualType resultType) in ExpressionTraitExpr() argument 2946 : Expr(ExpressionTraitExprClass, resultType, VK_PRValue, OK_Ordinary), in ExpressionTraitExpr()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 3224 QualType resultType = mDecl->getReturnType(); in SynthMessageExpr() local 3225 if (resultType->isRecordType()) in SynthMessageExpr() 3227 else if (resultType->isRealFloatingType()) in SynthMessageExpr()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 1701 UnaryExprOrTypeTrait ExprKind, Expr *E, QualType resultType, in UnaryExprOrTypeTraitExpr() argument 1703 : Expr(UnaryExprOrTypeTraitExprClass, resultType, VK_PRValue, OK_Ordinary), in UnaryExprOrTypeTraitExpr()
|