HomeSort by relevance Sort by last modified time
    Searched defs:ITState (Results 1 - 2 of 2) sorted by null

  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.h 24 ITSession() : ITCounter(0), ITState(0) {}
27 // InitIT - Initializes ITCounter/ITState.
30 // ITAdvance - Updates ITCounter/ITState as IT Block progresses.
44 uint32_t ITState; // A2.5.2 Consists of IT[7:5] and IT[4:0] initially.
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 165 } ITState;
166 bool inITBlock() { return ITState.CurPosition != ~0U;}
171 unsigned TZ = countTrailingZeros(ITState.Mask);
172 if (++ITState.CurPosition == 5 - TZ)
173 ITState.CurPosition = ~0U; // Done with the IT block after this.
345 ITState.CurPosition = ~0U;
    [all...]

Completed in 3562 milliseconds