Searched refs:ITCounter (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h22 ITSession() : ITCounter(0), ITState(0) {}
25 // InitIT - Initializes ITCounter/ITState.
28 // ITAdvance - Updates ITCounter/ITState as IT Block progresses.
42 uint32_t ITCounter; // Possible values: 0, 1, 2, 3, 4. member in class:lldb_private::ITSession
H A DEmulateInstructionARM.cpp616 ITCounter = CountITSize(Bits32(bits7_0, 3, 0));
617 if (ITCounter == 0)
628 if (FirstCond == 0xE && ITCounter != 1) {
641 // assert(ITCounter);
642 --ITCounter;
643 if (ITCounter == 0)
652 bool ITSession::InITBlock() { return ITCounter != 0; }
655 bool ITSession::LastInITBlock() { return ITCounter == 1; }

Completed in 171 milliseconds