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

  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 366 int64_t iv_value = (short) IV_DefInstr->getOperand(2).getImm(); local
387 if ((count % iv_value) != 0) {
390 return new CountValue(count/iv_value);
397 if ((count % iv_value) != 0) {
400 return new CountValue(count/iv_value);
401 } else if (iv_value == 1 || iv_value == -1) {
404 return new CountValue(InitialValueReg, iv_value > 0);
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 344 int64_t iv_value = IV_DefInstr->getOperand(2).getImm(); local
348 if (iv_value != 1 && iv_value != -1) {
351 return new CountValue(InitialValue->getReg(), iv_value > 0);
357 if ((count % iv_value) != 0) {
360 return new CountValue(count/iv_value);

Completed in 56 milliseconds