Searched defs:ExitValue (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h84 GenericValue ExitValue; // The return value of the called function member in class:llvm::Interpreter
/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/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...]

Completed in 467 milliseconds