Home
last modified time | relevance | path

Searched refs:isPre (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
H A DAVRISelDAGToDAG.cpp135 bool isPre = (AM == ISD::PRE_DEC); in selectIndexedLoad() local
140 if ((!isPre && Offs != 1) || (isPre && Offs != -1)) { in selectIndexedLoad()
144 Opcode = (isPre) ? AVR::LDRdPtrPd : AVR::LDRdPtrPi; in selectIndexedLoad()
148 if ((!isPre && Offs != 2) || (isPre && Offs != -2)) { in selectIndexedLoad()
152 Opcode = (isPre) ? AVR::LDWRdPtrPd : AVR::LDWRdPtrPi; in selectIndexedLoad()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp1582 bool isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC); in tryARMIndexedLoad() local
1585 if (LoadedVT == MVT::i32 && isPre && in tryARMIndexedLoad()
1589 } else if (LoadedVT == MVT::i32 && !isPre && in tryARMIndexedLoad()
1595 Opcode = isPre ? ARM::LDR_PRE_REG : ARM::LDR_POST_REG; in tryARMIndexedLoad()
1602 ? (isPre ? ARM::LDRSH_PRE : ARM::LDRSH_POST) in tryARMIndexedLoad()
1603 : (isPre ? ARM::LDRH_PRE : ARM::LDRH_POST); in tryARMIndexedLoad()
1608 Opcode = isPre ? ARM::LDRSB_PRE : ARM::LDRSB_POST; in tryARMIndexedLoad()
1611 if (isPre && in tryARMIndexedLoad()
1615 } else if (!isPre && in tryARMIndexedLoad()
1621 Opcode = isPre ? ARM::LDRB_PRE_REG : ARM::LDRB_POST_REG; in tryARMIndexedLoad()
[all …]
H A DARMInstrFormats.td778 class AI2ldstidx<bit isLd, bit isByte, bit isPre, dag oops, dag iops,
785 let Inst{24} = isPre; // P bit
787 let Inst{21} = isPre; // W bit
791 class AI2stridx_reg<bit isByte, bit isPre, dag oops, dag iops,
794 : AI2ldstidx<0, isByte, isPre, oops, iops, im, f, itin, opc, asm, cstr,
809 class AI2stridx_imm<bit isByte, bit isPre, dag oops, dag iops,
812 : AI2ldstidx<0, isByte, isPre, oops, iops, im, f, itin, opc, asm, cstr,
828 class AI2stridxT<bit isByte, bit isPre, dag oops, dag iops,
831 : AI2ldstidx<0, isByte, isPre, oops, iops, im, f, itin, opc, asm, cstr,
867 class AI3ldstidx<bits<4> op, bit op20, bit isPre, dag oops, dag iops,
[all …]
H A DARMBaseInstrInfo.cpp185 bool isPre = false; in convertToThreeAddress() local
189 isPre = true; in convertToThreeAddress()
274 if (isPre) { in convertToThreeAddress()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp605 bool isInc, bool isPre);
2446 bool isInc, bool isPre) { in EmitScalarPrePostIncDec() argument
2460 if (isPre) { in EmitScalarPrePostIncDec()
2488 return isPre ? Builder.CreateBinOp(op, old, amt) : old; in EmitScalarPrePostIncDec()
2733 return isPre ? value : input; in EmitScalarPrePostIncDec()
2744 return isPre ? value : input; in EmitScalarPrePostIncDec()
4826 bool isInc, bool isPre) { in EmitScalarPrePostIncDec() argument
4827 return ScalarExprEmitter(*this).EmitScalarPrePostIncDec(E, LV, isInc, isPre); in EmitScalarPrePostIncDec()
H A DCGExprComplex.cpp192 bool isInc, bool isPre) { in VisitPrePostIncDec() argument
194 return CGF.EmitComplexPrePostIncDec(E, LV, isInc, isPre); in VisitPrePostIncDec()
H A DCodeGenFunction.h2956 bool isInc, bool isPre);
2958 bool isInc, bool isPre);
H A DCGExpr.cpp1022 bool isInc, bool isPre) { in EmitComplexPrePostIncDec() argument
1053 return isPre ? IncVal : InVal; in EmitComplexPrePostIncDec()