| /openbsd-src/gnu/llvm/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() 360 handleComparison(C, OrigExpr, Call.getReturnValue(), in handleOverloadedOperator() 365 handleComparison(C, OrigExpr, Call.getReturnValue(), Call.getArgSVal(0), in handleOverloadedOperator() 376 handleRandomIncrOrDecr(C, OrigExpr, Op, Call.getReturnValue(), in handleOverloadedOperator() 396 handleRandomIncrOrDecr(C, OrigExpr, Op, Call.getReturnValue(), in handleOverloadedOperator() 403 handleIncrement(C, Call.getReturnValue(), InstCall->getCXXThisVal(), in handleOverloadedOperator() 408 handleIncrement(C, Call.getReturnValue(), Call.getArgSVal(0), in handleOverloadedOperator() 413 handleDecrement(C, Call.getReturnValue(), InstCall->getCXXThisVal(), in handleOverloadedOperator() [all …]
|
| H A D | TrustReturnsNonnullChecker.cpp | 34 if (auto L = Call.getReturnValue().getAs<Loc>()) in checkPostCall()
|
| H A D | TrustNonnullChecker.cpp | 89 if (auto L = Call.getReturnValue().getAs<Loc>()) in checkPostCall() 117 SymbolRef RetS = Msg.getReturnValue().getAsSymbol(); in checkPostObjCMessage()
|
| H A D | ReturnValueChecker.cpp | 91 SVal ReturnV = Call.getReturnValue(); in checkPostCall()
|
| H A D | BlockInCriticalSectionChecker.cpp | 139 SymbolRef BlockDesc = Call.getReturnValue().getAsSymbol(); 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 | PthreadLockChecker.cpp | 427 SVal RetVal = Call.getReturnValue(); in AcquireLockAux() 447 SVal RetVal = Call.getReturnValue(); in AcquireLockAux() 557 SymbolRef sym = Call.getReturnValue().getAsSymbol(); in DestroyLockAux()
|
| H A D | VforkChecker.cpp | 157 SVal VforkRetVal = Call.getReturnValue(); in checkPostCall()
|
| H A D | DynamicTypePropagation.cpp | 310 const MemRegion *RetReg = Call.getReturnValue().getAsRegion(); in checkPostCall() 909 SymbolRef RetSym = M.getReturnValue().getAsSymbol(); in checkPostObjCMessage() 994 const MemRegion *RetRegion = M.getReturnValue().getAsRegion(); in checkPostObjCMessage()
|
| H A D | SimpleStreamChecker.cpp | 113 SymbolRef FileDesc = Call.getReturnValue().getAsSymbol(); in checkPostCall()
|
| H A D | NullabilityChecker.cpp | 850 const MemRegion *Region = getTrackRegion(Call.getReturnValue()); in checkPostCall() 945 const MemRegion *ReturnRegion = getTrackRegion(M.getReturnValue()); in checkPostObjCMessage() 1059 M.getReturnValue().getAs<DefinedOrUnknownSVal>()) { in checkPostObjCMessage()
|
| H A D | InnerPointerChecker.cpp | 237 SVal RawPtr = Call.getReturnValue(); in checkPostCall()
|
| H A D | ObjCSelfInitChecker.cpp | 294 addSelfFlag(state, CE.getReturnValue(), prevFlags, C); in checkPostCall()
|
| H A D | LocalizationChecker.cpp | 939 SVal sv = Call.getReturnValue(); in checkPostCall() 952 SVal sv = Call.getReturnValue(); in checkPostCall() 989 SVal sv = msg.getReturnValue(); in checkPostObjCMessage()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | CallPromotionUtils.cpp | 322 if (Ret->getReturnValue()) in versionCallSite() 323 NewRet->replaceUsesOfWith(Ret->getReturnValue(), NewRetVal); in versionCallSite()
|
| H A D | InlineFunction.cpp | 2684 auto *OldCast = dyn_cast_or_null<BitCastInst>(RI->getReturnValue()); in InlineFunction() 2736 if (&CB == R->getReturnValue()) in InlineFunction() 2739 CB.replaceAllUsesWith(R->getReturnValue()); in InlineFunction() 2823 assert(RI->getReturnValue()->getType() == PHI->getType() && in InlineFunction() 2825 PHI->addIncoming(RI->getReturnValue(), RI->getParent()); in InlineFunction() 2848 if (&CB == Returns[0]->getReturnValue()) in InlineFunction() 2851 CB.replaceAllUsesWith(Returns[0]->getReturnValue()); in InlineFunction()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/DirectXIRPasses/ |
| H A D | PointerTypeAnalysis.cpp | 95 Type *NewRetTy = classifyPointerType(RetInst->getReturnValue(), Map); in classifyFunctionType()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | TailRecursionElimination.cpp | 694 if (Ret->getReturnValue() == CI || AccRecInstr) { in eliminateCall() 703 RetKnownPN, RetPN, Ret->getReturnValue(), "current.ret.tr", Ret); in eliminateCall()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGCoroutine.cpp | 584 EmitAnyExprToMem(S.getReturnValue(), ReturnValue, in EmitCoroutineBody() 585 S.getReturnValue()->getType().getQualifiers(), in EmitCoroutineBody()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURewriteOutArguments.cpp | 345 Value *RetVal = RI->getReturnValue(); in runOnFunction()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/ |
| H A D | CalledValuePropagation.cpp | 248 auto RegI = CVPLatticeKey(I.getReturnValue(), IPOGrouping::Register); in visitReturn()
|
| H A D | GlobalDCE.cpp | 96 return !RI->getReturnValue(); in isEmptyFunction()
|
| H A D | FunctionAttrs.cpp | 736 Value *RetVal = Ret->getReturnValue()->stripPointerCasts(); in addArgumentReturnedAttrs() 1016 FlowsToReturn.insert(Ret->getReturnValue()); in isFunctionMallocLike() 1127 FlowsToReturn.insert(Ret->getReturnValue()); in isReturnNonNull()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.cpp | 481 if (SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol()) { in processSummaryOfInlined() 525 SVal L = CE.getReturnValue(); in updateOutParameters() 689 if (SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol()) { in checkSummary()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/ |
| H A D | Mips16HardFloat.cpp | 386 Value *RVal = RI->getReturnValue(); in fixupFPReturnAndCall()
|