Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.cpp42 BundleEnd(Inst.end()), DuplexCurrent(Inst.end()), DuplexEnd(Inst.end()) {} in PacketIterator()
47 DuplexCurrent(Inst.end()), DuplexEnd(Inst.end()) {} in PacketIterator()
50 if (DuplexCurrent != DuplexEnd) { in operator ++()
51 ++DuplexCurrent; in operator ++()
52 if (DuplexCurrent == DuplexEnd) { in operator ++()
53 DuplexCurrent = BundleEnd; in operator ++()
63 DuplexCurrent = Inst.begin(); in operator ++()
71 if (DuplexCurrent != DuplexEnd) in operator *()
72 return *DuplexCurrent->getInst(); in operator *()
78 DuplexCurrent == Other.DuplexCurrent && DuplexEnd == Other.DuplexEnd; in operator ==()
DHexagonMCInstrInfo.h47 MCInst::const_iterator DuplexCurrent; variable