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

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp53 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
100 return ExitValue;
H A DInterpreter.h84 GenericValue ExitValue; // The return value of the called function member in class:llvm::Interpreter
H A DExecution.cpp830 /// result variable may be the ExitValue, or the Value of the calling
843 ExitValue = Result; // Capture the exit value of the program
845 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp304 int64_t ExitValue; local
306 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
334 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
345 if (InitValue >= ExitValue)
348 uint32_t Range = uint32_t(ExitValue-InitValue);
366 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
372 if (InitValue <= ExitValue)
375 uint32_t Range = uint32_t(InitValue-ExitValue);
393 if (Leftover != 0 && int32_t(ExitValue
553 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); local
[all...]
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp1627 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false),
1630 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
1634 int ExitValue; member in struct:__anon25779::StackStateOfBB
1664 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1666 BBState.ExitValue = BBState.EntryValue;
1680 BBState.ExitValue -= Size;
1692 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
1693 BBState.ExitValue;
1699 BBState.ExitValue
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp6817 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
6822 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
6831 return SE.getConstant(ExitValue);
7754 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
7755 if (!SE.isLoopInvariant(ExitValue, L)) {
7758 OS << *ExitValue;

Completed in 2965 milliseconds