Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp43 BundleEnd(Inst.end()), DuplexCurrent(Inst.end()), DuplexEnd(Inst.end()) {} in PacketIterator()
48 DuplexCurrent(Inst.end()), DuplexEnd(Inst.end()) {} in PacketIterator()
51 if (DuplexCurrent != DuplexEnd) { in operator ++()
52 ++DuplexCurrent; in operator ++()
53 if (DuplexCurrent == DuplexEnd) { in operator ++()
54 DuplexCurrent = BundleEnd; in operator ++()
64 DuplexCurrent = Inst.begin(); in operator ++()
72 if (DuplexCurrent != DuplexEnd) in operator *()
73 return *DuplexCurrent->getInst(); in operator *()
79 DuplexCurrent == Other.DuplexCurrent && DuplexEnd == Other.DuplexEnd; in operator ==()
H A DHexagonMCInstrInfo.h51 MCInst::const_iterator DuplexCurrent; variable