Home
last modified time | relevance | path

Searched refs:ExitValue (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp57 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in Interpreter()
101 return ExitValue; in runFunction()
H A DInterpreter.h75 GenericValue ExitValue; // The return value of the called function variable
H A DExecution.cpp899 ExitValue = Result; // Capture the exit value of the program in popStackAndReturnValueToCaller()
901 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in popStackAndReturnValueToCaller()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp258 int64_t ExitValue; in handleFloatingPointIV() local
260 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV()
288 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV()
299 if (InitValue >= ExitValue) in handleFloatingPointIV()
302 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV()
320 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
325 if (InitValue <= ExitValue) in handleFloatingPointIV()
328 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV()
346 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
363 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1441 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); in rewriteLoopExitValues() local
1442 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues()
1443 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues()
1444 !Rewriter.isSafeToExpand(ExitValue)) { in rewriteLoopExitValues()
1454 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE); in rewriteLoopExitValues()
1455 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues()
1456 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues()
1457 !Rewriter.isSafeToExpand(ExitValue)) in rewriteLoopExitValues()
1467 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues()
1472 ExitValue, L, SCEVCheapExpansionBudget, TTI, Inst); in rewriteLoopExitValues()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp3474 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB()
3479 int ExitValue = 0; member
3512 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
3514 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
3532 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()
3540 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()
3541 BBState.ExitValue; in verifyStackFrame()
3547 BBState.ExitValue += Size; in verifyStackFrame()
3557 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame()
3572 (SPState[Succ->getNumber()].EntryValue != BBState.ExitValue || in verifyStackFrame()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp174 VPValue *ExitValue = getOperand(0); in fixPhi() local
175 if (vputils::isUniformAfterVectorization(ExitValue)) in fixPhi()
182 Phi->addIncoming(State.get(ExitValue, VPIteration(State.UF - 1, Lane)), in fixPhi()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp109 std::optional<std::string> ExitValue; member
2457 Info.ExitValue = ""; in parseStatement()
2458 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement()
2460 Info.ExitValue = ""; in parseStatement()
3282 std::string ExitValue; in handleMacroInvocation() local
3288 if (!Parsed && Info.ExitValue) { in handleMacroInvocation()
3289 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation()
3315 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp13275 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local
13280 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange()
13289 return SE.getConstant(ExitValue); in getNumIterationsInRange()
13623 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local
13624 if (!SE.isLoopInvariant(ExitValue, L)) { in print()
13627 OS << *ExitValue; in print()