Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 in operator ==()
[all...]
H A DHexagonMCInstrInfo.h51 MCInst::const_iterator DuplexCurrent; variable