Searched refs:ExitValue (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp57 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
101 return ExitValue;
H A DInterpreter.h76 GenericValue ExitValue; // The return value of the called function member in class:llvm::Interpreter
H A DExecution.cpp884 /// result variable may be the ExitValue, or the Value of the calling
897 ExitValue = Result; // Capture the exit value of the program
899 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp364 int64_t ExitValue; local
366 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
394 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
405 if (InitValue >= ExitValue)
408 uint32_t Range = uint32_t(ExitValue-InitValue);
426 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
431 if (InitValue <= ExitValue)
434 uint32_t Range = uint32_t(InitValue-ExitValue);
452 if (Leftover != 0 && int32_t(ExitValue
644 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp2755 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
2760 int ExitValue = 0; member in struct:__anon1774::StackStateOfBB
2793 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
2795 BBState.ExitValue = BBState.EntryValue;
2804 BBState.ExitValue -= TII->getFrameTotalSize(I);
2812 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
2813 BBState.ExitValue;
2819 BBState.ExitValue += Size;
2830 (SPState[(*I)->getNumber()].ExitValue !
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp10904 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
10909 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
10918 return SE.getConstant(ExitValue);
11659 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
11660 if (!SE.isLoopInvariant(ExitValue, L)) {
11663 OS << *ExitValue;

Completed in 192 milliseconds