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

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp54 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
98 return ExitValue;
H A DInterpreter.h96 GenericValue ExitValue; // The return value of the called function member in class:llvm::Interpreter
H A DExecution.cpp831 /// result variable may be the ExitValue, or the Value of the calling
844 ExitValue = Result; // Capture the exit value of the program
846 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
/external/swiftshader/third_party/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.cpp582 /// result variable may be the ExitValue, or the Value of the calling
595 ExitValue = Result; // Capture the exit value of the program
597 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped));
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp312 int64_t ExitValue; local
314 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
342 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
353 if (InitValue >= ExitValue)
356 uint32_t Range = uint32_t(ExitValue-InitValue);
374 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
380 if (InitValue <= ExitValue)
383 uint32_t Range = uint32_t(InitValue-ExitValue);
401 if (Leftover != 0 && int32_t(ExitValue
551 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp303 int64_t ExitValue; local
305 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
333 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
344 if (InitValue >= ExitValue)
347 uint32_t Range = uint32_t(ExitValue-InitValue);
365 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
371 if (InitValue <= ExitValue)
374 uint32_t Range = uint32_t(InitValue-ExitValue);
392 if (Leftover != 0 && int32_t(ExitValue
562 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); local
[all...]
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp1931 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false),
1934 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup),
1938 int ExitValue; member in struct:__anon12714::StackStateOfBB
1968 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue;
1970 BBState.ExitValue = BBState.EntryValue;
1984 BBState.ExitValue -= Size;
1996 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue :
1997 BBState.ExitValue;
2003 BBState.ExitValue
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolution.cpp6249 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
6254 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
6263 return SE.getConstant(ExitValue);
6490 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
6491 if (!SE.isLoopInvariant(ExitValue, L)) {
6494 OS << *ExitValue;
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp8836 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
8841 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
8850 return SE.getConstant(ExitValue);
9642 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
9643 if (!SE.isLoopInvariant(ExitValue, L)) {
9646 OS << *ExitValue;

Completed in 343 milliseconds