Searched refs:ExitValue (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/llvm/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 | 899 ExitValue = Result; // Capture the exit value of the program in popStackAndReturnValueToCaller() 901 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in popStackAndReturnValueToCaller()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1356 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); in rewriteLoopExitValues() local 1357 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues() 1358 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues() 1359 !Rewriter.isSafeToExpand(ExitValue)) { in rewriteLoopExitValues() 1369 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE); in rewriteLoopExitValues() 1370 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues() 1371 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues() 1372 !Rewriter.isSafeToExpand(ExitValue)) in rewriteLoopExitValues() 1381 if (ReplaceExitValue != AlwaysRepl && !isa<SCEVConstant>(ExitValue) && in rewriteLoopExitValues() 1382 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 270 int64_t ExitValue; in handleFloatingPointIV() local 272 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV() 300 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 311 if (InitValue >= ExitValue) in handleFloatingPointIV() 314 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 332 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 337 if (InitValue <= ExitValue) in handleFloatingPointIV() 340 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 358 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 375 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | MachineVerifier.cpp | 3344 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB() 3349 int ExitValue = 0; member 3382 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame() 3384 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame() 3393 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame() 3401 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame() 3402 BBState.ExitValue; in verifyStackFrame() 3408 BBState.ExitValue += Size; in verifyStackFrame() 3418 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame() 3422 << " has exit state (" << SPState[Pred->getNumber()].ExitValue in verifyStackFrame() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanRecipes.cpp | 139 VPValue *ExitValue = getOperand(0); in fixPhi() local 140 if (vputils::isUniformAfterVectorization(ExitValue)) in fixPhi() 142 Phi->addIncoming(State.get(ExitValue, VPIteration(State.UF - 1, Lane)), in fixPhi()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 109 std::optional<std::string> ExitValue; member 2489 Info.ExitValue = ""; in parseStatement() 2490 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement() 2492 Info.ExitValue = ""; in parseStatement() 3314 std::string ExitValue; in handleMacroInvocation() local 3320 if (!Parsed && Info.ExitValue) { in handleMacroInvocation() 3321 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation() 3347 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 13303 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local 13308 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange() 13317 return SE.getConstant(ExitValue); in getNumIterationsInRange() 13637 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local 13638 if (!SE.isLoopInvariant(ExitValue, L)) { in print() 13641 OS << *ExitValue; in print()
|