Searched refs:ReturnVal (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.cpp | 554 if (CalleeEnv.ReturnVal != nullptr) in popCall() 555 setValue(*Call, *CalleeEnv.ReturnVal); in popCall() 574 if (ReturnVal != Other.ReturnVal) in equivalentTo() 601 assert(ReturnVal == PrevEnv.ReturnVal); in widen() 643 if (EnvA.ReturnVal == nullptr || EnvB.ReturnVal == nullptr) { in join() 651 JoinedEnv.ReturnVal = nullptr; in join() 652 } else if (areEquivalentValues(*EnvA.ReturnVal, *EnvB.ReturnVal)) { in join() 653 JoinedEnv.ReturnVal = EnvA.ReturnVal; in join() 661 mergeDistinctValues(Func->getReturnType(), *EnvA.ReturnVal, EnvA, in join() 662 *EnvB.ReturnVal, EnvB, JoinedEnv, Model)) in join() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.h | 358 return ReturnVal; in getReturnValue() 380 ReturnVal = Val; in setReturnValue() 689 Value *ReturnVal = nullptr; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | StatepointLowering.cpp | 743 SDValue ReturnVal; in LowerAsSTATEPOINT() local 745 std::tie(ReturnVal, CallNode) = lowerCallFromStatepointLoweringInfo(SI, *this); in LowerAsSTATEPOINT() 989 return ReturnVal; in LowerAsSTATEPOINT() 1165 if (SDValue ReturnVal = LowerAsSTATEPOINT(SI)) { in LowerCallSiteWithDeoptBundleImpl() local 1166 ReturnVal = lowerRangeToAssertZExt(DAG, *Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl() 1167 setValue(Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl()
|
| H A D | LegalizeFloatTypes.cpp | 696 auto [ReturnVal, Chain] = TLI.makeLibCall(DAG, LC, NVT0, Ops, CallOptions, DL, in SoftenFloatRes_FFREXP() 705 return ReturnVal; in SoftenFloatRes_FFREXP()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpBuiltin.cpp | 559 int32_t ReturnVal = static_cast<int32_t>(ResultClass); in interp__builtin_classify_type() local 560 pushInt(S, ReturnVal); in interp__builtin_classify_type()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/lli/ |
| H A D | lli.cpp | 397 Value *ReturnVal = ConstantInt::get(ReturnTy, 0); in addCygMingExtraModule() local 398 Builder.CreateRet(ReturnVal); in addCygMingExtraModule()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 3436 bool ReturnVal = false; in parseDirectiveAlign() local 3442 ReturnVal |= Error(AlignmentLoc, "invalid alignment value"); in parseDirectiveAlign() 3454 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2"); in parseDirectiveAlign() 3458 ReturnVal |= Error(AlignmentLoc, "alignment must be smaller than 2**32"); in parseDirectiveAlign() 3466 ReturnVal |= in parseDirectiveAlign() 3477 ReturnVal |= Error(MaxBytesLoc, in parseDirectiveAlign() 3505 return ReturnVal; in parseDirectiveAlign()
|
| H A D | MasmParser.cpp | 4741 bool ReturnVal = false; in parseDirectiveAlign() local 4748 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2; was " + in parseDirectiveAlign() 4752 ReturnVal |= addErrorSuffix(" in align directive"); in parseDirectiveAlign() 4754 return ReturnVal; in parseDirectiveAlign()
|