| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IteratorModeling.cpp | 200 if (getIteratorPosition(State, Call.getReturnValue())) in checkPostCall() 206 State = setIteratorPosition(State, Call.getReturnValue(), *Pos); in checkPostCall() 226 assignToContainer(C, OrigExpr, Call.getReturnValue(), in checkPostCall() 357 handleComparison(C, OrigExpr, Call.getReturnValue(), in handleOverloadedOperator() 373 handleRandomIncrOrDecr(C, OrigExpr, Op, Call.getReturnValue(), in handleOverloadedOperator() 393 handleRandomIncrOrDecr(C, OrigExpr, Op, Call.getReturnValue(), in handleOverloadedOperator() 400 handleIncrement(C, Call.getReturnValue(), InstCall->getCXXThisVal(), in handleOverloadedOperator() 405 handleIncrement(C, Call.getReturnValue(), Call.getArgSVal(0), in handleOverloadedOperator() 415 handleDecrement(C, Call.getReturnValue(), Call.getArgSVal(0), in handleOverloadedOperator() 427 (this->**Handler)(C, OrigExpr, Call.getReturnValue(), in handleAdvanceLikeFunction() [all …]
|
| H A D | TrustReturnsNonnullChecker.cpp | 34 if (auto L = Call.getReturnValue().getAs<Loc>()) in checkPostCall()
|
| H A D | TrustNonnullChecker.cpp | 88 if (auto L = Call.getReturnValue().getAs<Loc>()) in checkPostCall() 116 SymbolRef RetS = Msg.getReturnValue().getAsSymbol(); in checkPostObjCMessage()
|
| H A D | ReturnValueChecker.cpp | 91 SVal ReturnV = Call.getReturnValue(); in checkPostCall()
|
| H A D | FuchsiaHandleChecker.cpp | 377 ResultSymbol = Call.getReturnValue().getAsSymbol(); in checkPostCall() 381 SymbolRef RetSym = Call.getReturnValue().getAsSymbol(); in checkPostCall() 397 SymbolRef RetSym = Call.getReturnValue().getAsSymbol(); in checkPostCall()
|
| H A D | BlockInCriticalSectionChecker.cpp | 132 SymbolRef BlockDesc = Call.getReturnValue().getAsSymbol(); in checkPostCall()
|
| H A D | PthreadLockChecker.cpp | 428 SVal RetVal = Call.getReturnValue(); in AcquireLockAux() 448 SVal RetVal = Call.getReturnValue(); in AcquireLockAux() 558 SymbolRef sym = Call.getReturnValue().getAsSymbol(); in DestroyLockAux()
|
| H A D | VforkChecker.cpp | 153 SVal VforkRetVal = Call.getReturnValue(); in checkPostCall()
|
| H A D | SimpleStreamChecker.cpp | 102 SymbolRef FileDesc = Call.getReturnValue().getAsSymbol(); in REGISTER_MAP_WITH_PROGRAMSTATE()
|
| H A D | DynamicTypePropagation.cpp | 309 const MemRegion *RetReg = Call.getReturnValue().getAsRegion(); in checkPostCall() 907 SymbolRef RetSym = M.getReturnValue().getAsSymbol(); in checkPostObjCMessage() 992 const MemRegion *RetRegion = M.getReturnValue().getAsRegion(); in checkPostObjCMessage()
|
| H A D | NullabilityChecker.cpp | 885 const MemRegion *Region = getTrackRegion(Call.getReturnValue()); in checkPostCall() 986 const MemRegion *ReturnRegion = getTrackRegion(M.getReturnValue()); in checkPostObjCMessage() 1100 M.getReturnValue().getAs<DefinedOrUnknownSVal>()) { in checkPostObjCMessage()
|
| H A D | InnerPointerChecker.cpp | 237 SVal RawPtr = Call.getReturnValue(); in checkPostCall()
|
| H A D | ObjCSelfInitChecker.cpp | 291 addSelfFlag(state, CE.getReturnValue(), prevFlags, C); in checkPostCall()
|
| H A D | LocalizationChecker.cpp | 933 SVal sv = Call.getReturnValue(); in checkPostCall() 946 SVal sv = Call.getReturnValue(); in checkPostCall() 983 SVal sv = msg.getReturnValue(); in checkPostObjCMessage()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | CallPromotionUtils.cpp | 323 if (Ret->getReturnValue()) in versionCallSite() 324 NewRet->replaceUsesOfWith(Ret->getReturnValue(), NewRetVal); in versionCallSite()
|
| H A D | InlineFunction.cpp | 2742 auto *OldCast = dyn_cast_or_null<BitCastInst>(RI->getReturnValue()); in InlineFunction() 2794 if (&CB == R->getReturnValue()) in InlineFunction() 2797 CB.replaceAllUsesWith(R->getReturnValue()); in InlineFunction() 2881 assert(RI->getReturnValue()->getType() == PHI->getType() && in InlineFunction() 2883 PHI->addIncoming(RI->getReturnValue(), RI->getParent()); in InlineFunction() 2906 if (&CB == Returns[0]->getReturnValue()) in InlineFunction() 2909 CB.replaceAllUsesWith(Returns[0]->getReturnValue()); in InlineFunction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/DirectXIRPasses/ |
| H A D | PointerTypeAnalysis.cpp | 95 Type *NewRetTy = classifyPointerType(RetInst->getReturnValue(), Map); in classifyFunctionType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionAttrs.cpp | 777 dyn_cast<Argument>(Ret->getReturnValue()->stripPointerCasts()); in addArgumentReturnedAttrs() 1059 FlowsToReturn.insert(Ret->getReturnValue()); in isFunctionMallocLike() 1170 FlowsToReturn.insert(Ret->getReturnValue()); in isReturnNonNull() 1316 return isGuaranteedNotToBeUndefOrPoison(Ret->getReturnValue()); in addNoUndefAttrs()
|
| H A D | GlobalDCE.cpp | 53 return !RI->getReturnValue(); in isEmptyFunction()
|
| H A D | CalledValuePropagation.cpp | 246 auto RegI = CVPLatticeKey(I.getReturnValue(), IPOGrouping::Register); in visitReturn()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | TailRecursionElimination.cpp | 709 if (Ret->getReturnValue() == CI || AccRecInstr) { in eliminateCall() 718 RetKnownPN, RetPN, Ret->getReturnValue(), "current.ret.tr", Ret); in eliminateCall()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/ |
| H A D | InvalidPtrChecker.cpp | 257 const MemRegion *Region = Call.getReturnValue().getAsRegion(); in checkPostCall()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURewriteOutArguments.cpp | 347 Value *RetVal = RI->getReturnValue(); in runOnFunction()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.h | 355 Value *getReturnValue() const { in getReturnValue() function
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCoroutine.cpp | 614 CGF.EmitAnyExprToMem(S.getReturnValue(), CGF.ReturnValue, in EmitGroInit() 615 S.getReturnValue()->getType().getQualifiers(), in EmitGroInit()
|