Home
last modified time | relevance | path

Searched refs:OpStart (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp850 unsigned OpStart; in changeLoad() local
863 OpStart = 4; in changeLoad()
875 OpStart = 3; in changeLoad()
890 OpStart = 4; in changeLoad()
898 for (unsigned i = OpStart; i < OpEnd; ++i) in changeLoad()
907 unsigned OpStart = 0; in changeStore() local
923 OpStart = 4; in changeStore()
933 OpStart = 3; in changeStore()
942 OpStart = 3; in changeStore()
949 for (unsigned i = OpStart; i < OpEnd; ++i) in changeStore()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp6736 uint64_t OpStart = MI.getOperand(2).getImm(); in narrowScalarExtract() local
6741 if (SrcStart + NarrowSize <= OpStart || SrcStart >= OpStart + OpSize) { in narrowScalarExtract()
6744 } else if (SrcStart == OpStart && NarrowTy == MRI.getType(OpReg)) { in narrowScalarExtract()
6754 if (OpStart < SrcStart) { in narrowScalarExtract()
6756 SegSize = std::min(NarrowSize, OpStart + OpSize - SrcStart); in narrowScalarExtract()
6758 ExtractOffset = OpStart - SrcStart; in narrowScalarExtract()
6759 SegSize = std::min(SrcStart + NarrowSize - OpStart, OpSize); in narrowScalarExtract()
6800 uint64_t OpStart = MI.getOperand(3).getImm(); in narrowScalarInsert() local
6805 if (DstStart == OpStart && NarrowTy == MRI.getType(OpReg)) { in narrowScalarInsert()
6819 if (DstStart + NarrowSize <= OpStart || DstStart >= OpStart + OpSize) { in narrowScalarInsert()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp14991 const SCEV *OpStart = Op->AR->getStart(); in implies() local
14992 if (Start->getType()->isPointerTy() != OpStart->getType()->isPointerTy()) in implies()
14996 if (Start->getType()->isPointerTy() && Start->getType() != OpStart->getType()) in implies()
15011 OpStart = IsNUW ? SE.getNoopOrZeroExtend(OpStart, WiderTy) in implies()
15012 : SE.getNoopOrSignExtend(OpStart, WiderTy); in implies()
15017 SE.isKnownPredicate(Pred, OpStart, Start); in implies()