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

  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 577 static void AddThumb1SBit(MCInst &MI, bool InITBlock) {
585 MI.insert(I, MCOperand::CreateReg(InITBlock ? 0 : ARM::CPSR));
590 MI.insert(I, MCOperand::CreateReg(InITBlock ? 0 : ARM::CPSR));
    [all...]
  /external/lldb/source/Plugins/Instruction/ARM/
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...]

Completed in 739 milliseconds