Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp54 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in Interpreter()
98 return ExitValue; in runFunction()
DInterpreter.h96 GenericValue ExitValue; // The return value of the called function variable
DExecution.cpp844 ExitValue = Result; // Capture the exit value of the program in popStackAndReturnValueToCaller()
846 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in popStackAndReturnValueToCaller()
/external/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp337 int64_t ExitValue; in handleFloatingPointIV() local
339 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV()
367 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV()
378 if (InitValue >= ExitValue) in handleFloatingPointIV()
381 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV()
399 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
405 if (InitValue <= ExitValue) in handleFloatingPointIV()
408 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV()
426 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
443 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
[all …]
/external/llvm/lib/CodeGen/
DMachineVerifier.cpp1760 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false), in StackStateOfBB()
1763 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB()
1767 int ExitValue; member
1797 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
1799 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
1813 BBState.ExitValue -= Size; in verifyStackFrame()
1825 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()
1826 BBState.ExitValue; in verifyStackFrame()
1832 BBState.ExitValue += Size; in verifyStackFrame()
1843 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame()
[all …]
/external/llvm/lib/Analysis/
DScalarEvolution.cpp8413 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local
8418 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange()
8427 return SE.getConstant(ExitValue); in getNumIterationsInRange()
9178 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local
9179 if (!SE.isLoopInvariant(ExitValue, L)) { in print()
9182 OS << *ExitValue; in print()