Home
last modified time | relevance | path

Searched refs:ExitValue (Results 1 – 20 of 20) 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-project/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp57 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in Interpreter()
101 return ExitValue; in runFunction()
DInterpreter.h75 GenericValue ExitValue; // The return value of the called function variable
DExecution.cpp899 ExitValue = Result; // Capture the exit value of the program in popStackAndReturnValueToCaller()
901 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in popStackAndReturnValueToCaller()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp57 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in Interpreter()
101 return ExitValue; in runFunction()
DInterpreter.h76 GenericValue ExitValue; // The return value of the called function variable
DExecution.cpp897 ExitValue = Result; // Capture the exit value of the program in popStackAndReturnValueToCaller()
899 memset(&ExitValue.Untyped, 0, sizeof(ExitValue.Untyped)); in popStackAndReturnValueToCaller()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp364 int64_t ExitValue; in handleFloatingPointIV() local
366 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV()
394 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV()
405 if (InitValue >= ExitValue) in handleFloatingPointIV()
408 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV()
426 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
431 if (InitValue <= ExitValue) in handleFloatingPointIV()
434 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV()
452 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
469 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
[all …]
/external/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp303 int64_t ExitValue; in handleFloatingPointIV() local
305 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV()
333 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV()
344 if (InitValue >= ExitValue) in handleFloatingPointIV()
347 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV()
365 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
371 if (InitValue <= ExitValue) in handleFloatingPointIV()
374 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV()
392 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
409 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
[all …]
/external/llvm-project/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp268 int64_t ExitValue; in handleFloatingPointIV() local
270 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue)) in handleFloatingPointIV()
298 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV()
309 if (InitValue >= ExitValue) in handleFloatingPointIV()
312 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV()
330 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
335 if (InitValue <= ExitValue) in handleFloatingPointIV()
338 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV()
356 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
373 ConstantInt::get(Int32Ty, ExitValue), in handleFloatingPointIV()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLoopUtils.cpp1378 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop()); in rewriteLoopExitValues() local
1379 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues()
1380 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues()
1381 !isSafeToExpand(ExitValue, *SE)) { in rewriteLoopExitValues()
1391 ExitValue = AddRec->evaluateAtIteration(ExitCount, *SE); in rewriteLoopExitValues()
1392 if (isa<SCEVCouldNotCompute>(ExitValue) || in rewriteLoopExitValues()
1393 !SE->isLoopInvariant(ExitValue, L) || in rewriteLoopExitValues()
1394 !isSafeToExpand(ExitValue, *SE)) in rewriteLoopExitValues()
1403 if (ReplaceExitValue != AlwaysRepl && !isa<SCEVConstant>(ExitValue) && in rewriteLoopExitValues()
1404 !isa<SCEVUnknown>(ExitValue) && hasHardUserWithinLoop(L, Inst)) in rewriteLoopExitValues()
[all …]
/external/llvm/lib/CodeGen/
DMachineVerifier.cpp1931 StackStateOfBB() : EntryValue(0), ExitValue(0), EntryIsSetup(false), in StackStateOfBB()
1934 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB()
1938 int ExitValue; member
1968 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
1970 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
1984 BBState.ExitValue -= Size; in verifyStackFrame()
1996 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()
1997 BBState.ExitValue; in verifyStackFrame()
2003 BBState.ExitValue += Size; in verifyStackFrame()
2014 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame()
[all …]
/external/llvm-project/llvm/lib/CodeGen/
DMachineVerifier.cpp2971 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB()
2976 int ExitValue = 0; member
3009 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
3011 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
3020 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()
3028 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()
3029 BBState.ExitValue; in verifyStackFrame()
3035 BBState.ExitValue += Size; in verifyStackFrame()
3045 (SPState[Pred->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame()
3049 << " has exit state (" << SPState[Pred->getNumber()].ExitValue in verifyStackFrame()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineVerifier.cpp2755 EntryValue(EntryVal), ExitValue(ExitVal), EntryIsSetup(EntrySetup), in StackStateOfBB()
2760 int ExitValue = 0; member
2793 BBState.EntryValue = SPState[StackPred->getNumber()].ExitValue; in verifyStackFrame()
2795 BBState.ExitValue = BBState.EntryValue; in verifyStackFrame()
2804 BBState.ExitValue -= TII->getFrameTotalSize(I); in verifyStackFrame()
2812 int AbsSPAdj = BBState.ExitValue < 0 ? -BBState.ExitValue : in verifyStackFrame()
2813 BBState.ExitValue; in verifyStackFrame()
2819 BBState.ExitValue += Size; in verifyStackFrame()
2830 (SPState[(*I)->getNumber()].ExitValue != BBState.EntryValue || in verifyStackFrame()
2834 << " has exit state (" << SPState[(*I)->getNumber()].ExitValue in verifyStackFrame()
[all …]
/external/llvm-project/llvm/lib/MC/MCParser/
DMasmParser.cpp112 Optional<std::string> ExitValue; member
2382 Info.ExitValue = ""; in parseStatement()
2383 return parseDirectiveExitMacro(IDLoc, IDVal, *Info.ExitValue); in parseStatement()
2385 Info.ExitValue = ""; in parseStatement()
3172 std::string ExitValue; in handleMacroInvocation() local
3178 if (!Parsed && Info.ExitValue.hasValue()) { in handleMacroInvocation()
3179 ExitValue = std::move(*Info.ExitValue); in handleMacroInvocation()
3206 MemoryBuffer::getMemBufferCopy(ExitValue, "<macro-value>"); in handleMacroInvocation()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp8836 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local
8841 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange()
8850 return SE.getConstant(ExitValue); in getNumIterationsInRange()
9642 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local
9643 if (!SE.isLoopInvariant(ExitValue, L)) { in print()
9646 OS << *ExitValue; in print()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DScalarEvolution.cpp10904 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local
10909 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange()
10918 return SE.getConstant(ExitValue); in getNumIterationsInRange()
11659 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local
11660 if (!SE.isLoopInvariant(ExitValue, L)) { in print()
11663 OS << *ExitValue; in print()
/external/llvm-project/llvm/lib/Analysis/
DScalarEvolution.cpp11375 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal); in getNumIterationsInRange() local
11380 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE); in getNumIterationsInRange()
11389 return SE.getConstant(ExitValue); in getNumIterationsInRange()
12176 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop()); in print() local
12177 if (!SE.isLoopInvariant(ExitValue, L)) { in print()
12180 OS << *ExitValue; in print()