Searched refs:ExitValue (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1357 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); in rewriteLoopExitValues() local 1358 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues() 1359 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues() 1360 !Rewriter.isSafeToExpand(ExitValue)) { in rewriteLoopExitValues() 1370 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE); in rewriteLoopExitValues() 1371 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues() 1372 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues() 1373 !Rewriter.isSafeToExpand(ExitValue)) in rewriteLoopExitValues() 1383 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues() 1388 ExitValue, L, SCEVCheapExpansionBudget, TTI, Inst); in rewriteLoopExitValues() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 271 int64_t ExitValue; in handleFloatingPointIV() local 273 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV() 301 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 312 if (InitValue >= ExitValue) in handleFloatingPointIV() 315 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 333 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 338 if (InitValue <= ExitValue) in handleFloatingPointIV() 341 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 359 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 376 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachineVerifier.cpp | 3250 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB() 3255 int ExitValue = 0; member 3288 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame() 3290 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame() 3299 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame() 3307 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame() 3308 BBState.ExitValue; in verifyStackFrame() 3314 BBState.ExitValue += Size; in verifyStackFrame() 3324 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame() 3339 (SPState[Succ->getNumber()].EntryValue != BBState.ExitValue || in verifyStackFrame() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanRecipes.cpp | 134 VPValue *ExitValue = getOperand(0); in fixPhi() local 135 if (Plan.isUniformAfterVectorization(ExitValue)) in fixPhi() 137 Phi->addIncoming(State.get(ExitValue, VPIteration(State.UF - 1, Lane)), in fixPhi()
|
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 112 Optional<std::string> ExitValue; member 2474 Info.ExitValue = ""; in parseStatement() 2475 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement() 2477 Info.ExitValue = ""; in parseStatement() 3299 std::string ExitValue; in handleMacroInvocation() local 3305 if (!Parsed && Info.ExitValue) { in handleMacroInvocation() 3306 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation() 3332 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 12955 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local 12960 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange() 12969 return SE.getConstant(ExitValue); in getNumIterationsInRange() 13281 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local 13282 if (!SE.isLoopInvariant(ExitValue, L)) { in print() 13285 OS << *ExitValue; in print()
|