Searched refs:ExitValue (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 268 int64_t ExitValue; in handleFloatingPointIV() local 270 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV() 298 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 309 if (InitValue >= ExitValue) in handleFloatingPointIV() 312 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 330 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV() 335 if (InitValue <= ExitValue) in handleFloatingPointIV() 338 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 356 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV() 373 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
|
| /netbsd-src/external/apache2/llvm/dist/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 !isSafeToExpand(ExitValue, *SE)) { 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 !isSafeToExpand(ExitValue, *SE)) in rewriteLoopExitValues() 1382 if (ReplaceExitValue != AlwaysRepl && !isa<SCEVConstant>(ExitValue) && in rewriteLoopExitValues() 1383 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineVerifier.cpp | 3104 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB() 3109 int ExitValue = 0; member 3142 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame() 3144 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame() 3153 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame() 3161 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame() 3162 BBState.ExitValue; in verifyStackFrame() 3168 BBState.ExitValue += Size; in verifyStackFrame() 3178 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame() 3182 << " has exit state (" << SPState[Pred->getNumber()].ExitValue in verifyStackFrame() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 112 Optional<std::string> ExitValue; member 2390 Info.ExitValue = ""; in parseStatement() 2391 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement() 2393 Info.ExitValue = ""; in parseStatement() 3180 std::string ExitValue; in handleMacroInvocation() local 3186 if (!Parsed && Info.ExitValue.hasValue()) { in handleMacroInvocation() 3187 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation() 3214 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 11561 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local 11566 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange() 11575 return SE.getConstant(ExitValue); in getNumIterationsInRange() 12355 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local 12356 if (!SE.isLoopInvariant(ExitValue, L)) { in print() 12359 OS << *ExitValue; in print()
|