HomeSort by: relevance | last modified time | path
    Searched defs:isPre (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRISelDAGToDAG.cpp 135 bool isPre = (AM == ISD::PRE_DEC);
140 if ((!isPre && Offs != 1) || (isPre && Offs != -1)) {
144 Opcode = (isPre) ? AVR::LDRdPtrPd : AVR::LDRdPtrPi;
148 if ((!isPre && Offs != 2) || (isPre && Offs != -2)) {
152 Opcode = (isPre) ? AVR::LDWRdPtrPd : AVR::LDWRdPtrPi;
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 185 bool isPre = false;
189 isPre = true;
274 if (isPre) {
ARMISelDAGToDAG.cpp 1582 bool isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC);
1585 if (LoadedVT == MVT::i32 && isPre &&
1589 } else if (LoadedVT == MVT::i32 && !isPre &&
1595 Opcode = isPre ? ARM::LDR_PRE_REG : ARM::LDR_POST_REG;
1602 ? (isPre ? ARM::LDRSH_PRE : ARM::LDRSH_POST)
1603 : (isPre ? ARM::LDRH_PRE : ARM::LDRH_POST);
1608 Opcode = isPre ? ARM::LDRSB_PRE : ARM::LDRSB_POST;
1611 if (isPre &&
1615 } else if (!isPre &&
1621 Opcode = isPre ? ARM::LDRB_PRE_REG : ARM::LDRB_POST_REG
    [all...]

Completed in 40 milliseconds