Searched refs:PRE_DEC (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGAddressAnalysis.cpp | 214 } else if (N->getAddressingMode() == ISD::PRE_DEC) { in matchLSNode() 247 if (LSBase->getAddressingMode() == ISD::PRE_DEC || in matchLSNode()
|
H A D | SelectionDAGDumper.cpp | 568 case ISD::PRE_DEC: return "<pre-dec>"; in getIndexedModeName()
|
H A D | DAGCombiner.cpp | 18455 if (!getCombineLoadStoreParts(N, ISD::PRE_INC, ISD::PRE_DEC, IsLoad, IsMasked, in CombineToPreIndexedLoadStore() 18635 int X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore() 18636 int Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore() 28267 : (LSN->getAddressingMode() == ISD::PRE_DEC) in mayAlias()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
H A D | AVRISelDAGToDAG.cpp | 150 (AM != ISD::POST_INC && AM != ISD::PRE_DEC)) { in selectIndexedLoad() 156 bool isPre = (AM == ISD::PRE_DEC); in selectIndexedLoad()
|
H A D | AVRISelLowering.cpp | 125 setIndexedLoadAction(ISD::PRE_DEC, MVT::i8, Legal); in AVRTargetLowering() 126 setIndexedLoadAction(ISD::PRE_DEC, MVT::i16, Legal); in AVRTargetLowering() 129 setIndexedStoreAction(ISD::PRE_DEC, MVT::i8, Legal); in AVRTargetLowering() 130 setIndexedStoreAction(ISD::PRE_DEC, MVT::i16, Legal); in AVRTargetLowering() 1116 AM = ISD::PRE_DEC; in getPreIndexedAddressParts()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 1523 enum MemIndexedMode { UNINDEXED = 0, PRE_INC, PRE_DEC, POST_INC, POST_DEC }; enumerator
|
H A D | BasicTTIImpl.h | 200 return ISD::PRE_DEC; in getISDIndexedMode()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelDAGToDAG.cpp | 1603 bool isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC); in tryARMIndexedLoad() 1710 bool isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC); in tryT2IndexedLoad() 1774 isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC); in tryMVEIndexedLoad() 1790 isPre = (AM == ISD::PRE_INC) || (AM == ISD::PRE_DEC); in tryMVEIndexedLoad()
|
H A D | ARMInstrMVE.td | 7117 return AM == ISD::PRE_INC || AM == ISD::PRE_DEC; 7201 return cast<MaskedStoreSDNode>(N)->isTruncatingStore() && (AM == ISD::PRE_INC || AM == ISD::PRE_DEC);
|
H A D | ARMISelLowering.cpp | 19979 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC; in getPreIndexedAddressParts()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetSelectionDAG.td | 1341 return AM == ISD::PRE_INC || AM == ISD::PRE_DEC; 1352 return AM == ISD::PRE_INC || AM == ISD::PRE_DEC;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelDAGToDAG.cpp | 1584 bool IsPre = AM == ISD::PRE_INC || AM == ISD::PRE_DEC; in tryIndexedLoad()
|