Home
last modified time | relevance | path

Searched refs:ReturnVal (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp680 if (CalleeEnv.ReturnVal != nullptr) in popCall()
681 setValue(*Call, *CalleeEnv.ReturnVal); in popCall()
696 if (ReturnVal != Other.ReturnVal) in equivalentTo()
726 assert(ReturnVal == PrevEnv.ReturnVal); in widen()
783 JoinedEnv.ReturnVal = nullptr; in join()
785 JoinedEnv.ReturnVal = in join()
786 joinValues(Func->getReturnType(), EnvA.ReturnVal, EnvA, EnvB.ReturnVal, in join()
1186 if (ReturnVal == nullptr) in dump()
1189 OS << "ReturnVal: " << *ReturnVal << "\n"; in dump()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h391 return ReturnVal; in getReturnValue()
415 ReturnVal = Val; in setReturnValue()
783 Value *ReturnVal = nullptr; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp746 SDValue ReturnVal; in LowerAsSTATEPOINT() local
748 std::tie(ReturnVal, CallNode) = lowerCallFromStatepointLoweringInfo(SI, *this); in LowerAsSTATEPOINT()
992 return ReturnVal; in LowerAsSTATEPOINT()
1168 if (SDValue ReturnVal = LowerAsSTATEPOINT(SI)) { in LowerCallSiteWithDeoptBundleImpl() local
1169 ReturnVal = lowerRangeToAssertZExt(DAG, *Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl()
1170 setValue(Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl()
H A DLegalizeFloatTypes.cpp740 auto [ReturnVal, Chain] = TLI.makeLibCall(DAG, LC, NVT0, Ops, CallOptions, DL, in SoftenFloatRes_FFREXP()
749 return ReturnVal; in SoftenFloatRes_FFREXP()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp395 Value *ReturnVal = ConstantInt::get(ReturnTy, 0); in addCygMingExtraModule() local
396 Builder.CreateRet(ReturnVal); in addCygMingExtraModule()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3438 bool ReturnVal = false; in parseDirectiveAlign() local
3444 ReturnVal |= Error(AlignmentLoc, "invalid alignment value"); in parseDirectiveAlign()
3456 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2"); in parseDirectiveAlign()
3460 ReturnVal |= Error(AlignmentLoc, "alignment must be smaller than 2**32"); in parseDirectiveAlign()
3468 ReturnVal |= in parseDirectiveAlign()
3479 ReturnVal |= Error(MaxBytesLoc, in parseDirectiveAlign()
3507 return ReturnVal; in parseDirectiveAlign()
H A DMasmParser.cpp4742 bool ReturnVal = false; in parseDirectiveAlign() local
4749 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2; was " + in parseDirectiveAlign()
4753 ReturnVal |= addErrorSuffix(" in align directive"); in parseDirectiveAlign()
4755 return ReturnVal; in parseDirectiveAlign()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp548 int32_t ReturnVal = static_cast<int32_t>(ResultClass); in interp__builtin_classify_type() local
549 pushInteger(S, ReturnVal, Call->getType()); in interp__builtin_classify_type()