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

  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.h 36 // LastInITBlock - Returns true if we're the last instruction inside an IT Block.
37 bool LastInITBlock();
193 // LastInITBlock - Returns true if we're in Thumb mode and the last instruction inside an IT Block.
194 bool LastInITBlock();
EmulateInstructionARM.cpp 110 bool ITSession::LastInITBlock()
507 // if registers<15> == '1' && InITBlock() && !LastInITBlock() then UNPREDICTABLE;
508 if (BitIsSet(registers, 15) && InITBlock() && !LastInITBlock())
513 // if t == 13 || (t == 15 && InITBlock() && !LastInITBlock()) then UNPREDICTABLE;
516 if (Rt == 15 && InITBlock() && !LastInITBlock())
747 if (Rd == 15 && InITBlock() && !LastInITBlock())
    [all...]

Completed in 1423 milliseconds