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

/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp542 // - We don't want the callee's `DeclCtx`, `ReturnVal`, `ReturnLoc` or
554 if (CalleeEnv.ReturnVal != nullptr)
555 setValue(*Call, *CalleeEnv.ReturnVal);
574 if (ReturnVal != Other.ReturnVal)
601 assert(ReturnVal == PrevEnv.ReturnVal);
643 if (EnvA.ReturnVal == nullptr || EnvB.ReturnVal == nullptr) {
644 // `ReturnVal` migh
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h358 return ReturnVal;
380 ReturnVal = Val;
680 // FIXME: move the fields `CallStack`, `ReturnVal`, `ReturnLoc` and
689 Value *ReturnVal = nullptr; member in class:clang::dataflow::Environment
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp743 SDValue ReturnVal; local
745 std::tie(ReturnVal, CallNode) = lowerCallFromStatepointLoweringInfo(SI, *this);
989 return ReturnVal;
1165 if (SDValue ReturnVal = LowerAsSTATEPOINT(SI)) {
1166 ReturnVal = lowerRangeToAssertZExt(DAG, *Call, ReturnVal);
1167 setValue(Call, ReturnVal);
H A DLegalizeFloatTypes.cpp696 auto [ReturnVal, Chain] = TLI.makeLibCall(DAG, LC, NVT0, Ops, CallOptions, DL,
705 return ReturnVal;
/freebsd-current/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp559 int32_t ReturnVal = static_cast<int32_t>(ResultClass); local
560 pushInt(S, ReturnVal);
/freebsd-current/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp397 Value *ReturnVal = ConstantInt::get(ReturnTy, 0); local
398 Builder.CreateRet(ReturnVal);
/freebsd-current/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3436 bool ReturnVal = false;
3442 ReturnVal |= Error(AlignmentLoc, "invalid alignment value");
3454 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2");
3458 ReturnVal |= Error(AlignmentLoc, "alignment must be smaller than 2**32");
3466 ReturnVal |=
3477 ReturnVal |= Error(MaxBytesLoc,
3505 return ReturnVal;
H A DMasmParser.cpp4741 bool ReturnVal = false;
4748 ReturnVal |= Error(AlignmentLoc, "alignment must be a power of 2; was " +
4752 ReturnVal |= addErrorSuffix(" in align directive");
4754 return ReturnVal;

Completed in 249 milliseconds