Home
last modified time | relevance | path

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

/freebsd/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.cpp863 ExitValue = Result; // Capture the exit value of the program in popStackAndReturnValueToCaller()
865 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in popStackAndReturnValueToCaller()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp263 int64_t ExitValue; in handleFloatingPointIV() local
265 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV()
293 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV()
304 if (InitValue >= ExitValue) in handleFloatingPointIV()
307 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV()
325 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
330 if (InitValue <= ExitValue) in handleFloatingPointIV()
333 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV()
351 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
372 ConstantInt::get(Int32Ty, ExitValue), Compare->getName()); in handleFloatingPointIV()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1586 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); in rewriteLoopExitValues() local
1587 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues()
1588 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues()
1589 !Rewriter.isSafeToExpand(ExitValue)) { in rewriteLoopExitValues()
1599 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE); in rewriteLoopExitValues()
1600 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues()
1601 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues()
1602 !Rewriter.isSafeToExpand(ExitValue)) in rewriteLoopExitValues()
1611 if (ReplaceExitValue != AlwaysRepl && !isa<SCEVConstant>(ExitValue) && in rewriteLoopExitValues()
1612 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp3783 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB()
3788 int ExitValue = 0; member
3821 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
3823 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
3844 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()
3852 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()
3853 BBState.ExitValue; in verifyStackFrame()
3862 BBState.ExitValue += Size; in verifyStackFrame()
3872 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame()
3876 << " has exit state (" << SPState[Pred->getNumber()].ExitValue in verifyStackFrame()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp109 std::optional<std::string> ExitValue; member
2458 Info.ExitValue = ""; in parseStatement()
2459 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement()
2461 Info.ExitValue = ""; in parseStatement()
3283 std::string ExitValue; in handleMacroInvocation() local
3289 if (!Parsed && Info.ExitValue) { in handleMacroInvocation()
3290 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation()
3316 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp196 VPValue *ExitValue = getOperand(0); in fixPhi() local
197 auto Lane = vputils::isUniformAfterVectorization(ExitValue) in fixPhi()
202 VPRecipeBase *ExitingRecipe = ExitValue->getDefiningRecipe(); in fixPhi()
213 Value *V = State.get(ExitValue, VPIteration(State.UF - 1, Lane)); in fixPhi()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp13401 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local
13406 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange()
13415 return SE.getConstant(ExitValue); in getNumIterationsInRange()
13785 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local
13786 if (!SE.isLoopInvariant(ExitValue, L)) { in print()
13789 OS << *ExitValue; in print()