Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp568 unsigned OpStart; in changeLoad() local
581 OpStart = 4; in changeLoad()
593 OpStart = 3; in changeLoad()
608 OpStart = 4; in changeLoad()
616 for (unsigned i = OpStart; i < OpEnd; ++i) in changeLoad()
625 unsigned OpStart = 0; in changeStore() local
641 OpStart = 4; in changeStore()
651 OpStart = 3; in changeStore()
660 OpStart = 3; in changeStore()
667 for (unsigned i = OpStart; i < OpEnd; ++i) in changeStore()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp6044 uint64_t OpStart = MI.getOperand(2).getImm(); in narrowScalarExtract() local
6049 if (SrcStart + NarrowSize <= OpStart || SrcStart >= OpStart + OpSize) { in narrowScalarExtract()
6052 } else if (SrcStart == OpStart && NarrowTy == MRI.getType(OpReg)) { in narrowScalarExtract()
6062 if (OpStart < SrcStart) { in narrowScalarExtract()
6064 SegSize = std::min(NarrowSize, OpStart + OpSize - SrcStart); in narrowScalarExtract()
6066 ExtractOffset = OpStart - SrcStart; in narrowScalarExtract()
6067 SegSize = std::min(SrcStart + NarrowSize - OpStart, OpSize); in narrowScalarExtract()
6110 uint64_t OpStart = MI.getOperand(3).getImm(); in narrowScalarInsert() local
6115 if (DstStart == OpStart && NarrowTy == MRI.getType(OpReg)) { in narrowScalarInsert()
6129 if (DstStart + NarrowSize <= OpStart || DstStart >= OpStart + OpSize) { in narrowScalarInsert()
[all …]