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.cpp679 if (CalleeEnv.ReturnVal != nullptr) in popCall()
680 setValue(*Call, *CalleeEnv.ReturnVal); in popCall()
695 if (ReturnVal != Other.ReturnVal) in equivalentTo()
725 assert(ReturnVal == PrevEnv.ReturnVal); in widen()
782 JoinedEnv.ReturnVal = nullptr; in join()
784 JoinedEnv.ReturnVal = in join()
785 joinValues(Func->getReturnType(), EnvA.ReturnVal, EnvA, EnvB.ReturnVal, in join()
1185 if (ReturnVal == nullptr) in dump()
1188 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.cpp745 SDValue ReturnVal; in LowerAsSTATEPOINT() local
747 std::tie(ReturnVal, CallNode) = lowerCallFromStatepointLoweringInfo(SI, *this); in LowerAsSTATEPOINT()
996 return ReturnVal; in LowerAsSTATEPOINT()
1172 if (SDValue ReturnVal = LowerAsSTATEPOINT(SI)) { in LowerCallSiteWithDeoptBundleImpl() local
1173 ReturnVal = lowerRangeToAssertZExt(DAG, *Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl()
1174 setValue(Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl()
H A DLegalizeFloatTypes.cpp785 auto [ReturnVal, Chain] = TLI.makeLibCall(DAG, LC, NVT0, Ops, CallOptions, DL, in SoftenFloatRes_FFREXP()
794 return ReturnVal; in SoftenFloatRes_FFREXP()
834 auto [ReturnVal, Chain] = TLI.makeLibCall(DAG, LC, NVT, Ops, CallOptions, DL, in SoftenFloatRes_UnaryWithTwoFPResults()
846 SetSoftenedFloat(SDValue(N, ResNum), ReturnVal); in SoftenFloatRes_UnaryWithTwoFPResults()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp396 Value *ReturnVal = ConstantInt::get(ReturnTy, 0); in addCygMingExtraModule() local
397 Builder.CreateRet(ReturnVal); in addCygMingExtraModule()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3383 bool ReturnVal = false; in parseDirectiveAlign() local
3389 ReturnVal |= Error(AlignmentLoc, "invalid alignment value"); in parseDirectiveAlign()
3401 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2"); in parseDirectiveAlign()
3405 ReturnVal |= Error(AlignmentLoc, "alignment must be smaller than 2**32"); in parseDirectiveAlign()
3413 ReturnVal |= Error(MaxBytesLoc, in parseDirectiveAlign()
3430 ReturnVal |= in parseDirectiveAlign()
3448 return ReturnVal; in parseDirectiveAlign()
H A DMasmParser.cpp4266 bool ReturnVal = false; in parseDirectiveAlign() local
4273 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2; was " + in parseDirectiveAlign()
4277 ReturnVal |= addErrorSuffix(" in align directive"); in parseDirectiveAlign()
4279 return ReturnVal; in parseDirectiveAlign()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp681 int32_t ReturnVal = static_cast<int32_t>(ResultClass); in interp__builtin_classify_type() local
682 pushInteger(S, ReturnVal, Call->getType()); in interp__builtin_classify_type()