Searched refs:ExitValue (Results 1 – 11 of 11) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Interpreter.cpp | 57 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in Interpreter() 101 return ExitValue; in runFunction()
|
| H A D | Interpreter.h | 75 GenericValue ExitValue; // The return value of the called function variable
|
| H A D | Execution.cpp | 863 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 D | IndVarSimplify.cpp | 261 int64_t ExitValue; in handleFloatingPointIV() local 263 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV() 291 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 302 if (InitValue >= ExitValue) in handleFloatingPointIV() 305 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 323 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 328 if (InitValue <= ExitValue) in handleFloatingPointIV() 331 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 349 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 370 ConstantInt::getSigned(Int32Ty, ExitValue), Compare->getName()); in handleFloatingPointIV()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1652 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); in rewriteLoopExitValues() local 1653 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues() 1654 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues() 1655 !Rewriter.isSafeToExpand(ExitValue)) { in rewriteLoopExitValues() 1665 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE); in rewriteLoopExitValues() 1666 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues() 1667 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues() 1668 !Rewriter.isSafeToExpand(ExitValue)) in rewriteLoopExitValues() 1677 if (ReplaceExitValue != AlwaysRepl && !isa<SCEVConstant>(ExitValue) && in rewriteLoopExitValues() 1678 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineVerifier.cpp | 3935 : EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB() 3940 int ExitValue = 0; member 3973 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame() 3975 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame() 3996 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame() 4004 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame() 4005 BBState.ExitValue; in verifyStackFrame() 4014 BBState.ExitValue += Size; in verifyStackFrame() 4024 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame() 4028 << SPState[Pred->getNumber()].ExitValue << ", " in verifyStackFrame() [all …]
|
| /freebsd/crypto/krb5/src/util/et/ |
| H A D | et_h.pl | 228 exit $ExitValue;
|
| H A D | et_c.pl | 283 exit $ExitValue;
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 104 std::optional<std::string> ExitValue; member 2106 Info.ExitValue = ""; in parseStatement() 2107 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement() 2109 Info.ExitValue = ""; in parseStatement() 2821 std::string ExitValue; in handleMacroInvocation() local 2827 if (!HasError && Info.ExitValue) { in handleMacroInvocation() 2828 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation() 2849 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanRecipes.cpp | 1333 VPValue *ExitValue = Op; in execute() local 1334 auto Lane = vputils::isSingleScalar(ExitValue) in execute() 1343 Value *V = State.get(ExitValue, VPLane(Lane)); in execute()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 13542 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local 13547 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange() 13556 return SE.getConstant(ExitValue); in getNumIterationsInRange() 13977 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local 13978 if (!SE.isLoopInvariant(ExitValue, L)) { in print() 13981 OS << *ExitValue; in print()
|