HomeSort by relevance Sort by last modified time
    Searched defs:ExitValue (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 84 GenericValue ExitValue; // The return value of the called function
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 300 int64_t ExitValue;
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+IncValue) > ExitValue
    [all...]

Completed in 119 milliseconds