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

/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp50 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
97 return ExitValue;
H A DInterpreter.h84 GenericValue ExitValue; // The return value of the called function member in class:llvm::Interpreter
H A DExecution.cpp829 /// result variable may be the ExitValue, or the Value of the calling
842 ExitValue = Result; // Capture the exit value of the program
844 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp300 int64_t ExitValue; local
302 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
330 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
341 if (InitValue >= ExitValue)
344 uint32_t Range = uint32_t(ExitValue-InitValue);
362 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
368 if (InitValue <= ExitValue)
371 uint32_t Range = uint32_t(InitValue-ExitValue);
389 if (Leftover != 0 && int32_t(ExitValue
534 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineVerifier.cpp1633 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false),
1636 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
1640 int ExitValue; member in struct:__anon2157::StackStateOfBB
1670 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1672 BBState.ExitValue = BBState.EntryValue;
1687 BBState.ExitValue -= Size;
1699 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
1700 BBState.ExitValue;
1706 BBState.ExitValue
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp6609 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
6614 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
6623 return SE.getConstant(ExitValue);
7381 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
7382 if (!SE.isLoopInvariant(ExitValue, L)) {
7385 OS << *ExitValue;

Completed in 70 milliseconds