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

  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.h 33 // InITBlock - Returns true if we're inside an IT Block.
34 bool InITBlock();
190 // InITBlock - Returns true if we're in Thumb mode and inside an IT Block.
191 bool InITBlock();
EmulateInstructionARM.cpp 104 bool ITSession::InITBlock()
118 if (InITBlock())
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())
754 if (InITBlock())
832 setflags = !InITBlock();
943 // d = UInt(Rdm); n = UInt(Rn); m = UInt(Rdm); setflags = !InITBlock();
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 564 static void AddThumb1SBit(MCInst &MI, bool InITBlock) {
572 MI.insert(I, MCOperand::CreateReg(InITBlock ? 0 : ARM::CPSR));
577 MI.insert(I, MCOperand::CreateReg(InITBlock ? 0 : ARM::CPSR));
    [all...]

Completed in 78 milliseconds