Searched refs:firstcond (Results 1 - 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp742 unsigned firstcond = MI.getOperand(0).getImm(); local
750 ITBlock.insert(ITBlock.begin(), firstcond);
752 ITBlock.insert(ITBlock.begin(), firstcond ^ 1);
755 ITBlock.push_back(firstcond);
/external/valgrind/VEX/priv/
H A Dguest_arm_toIR.c2613 /* Thumb16 only. Given the firstcond and mask fields from an IT
2617 disassembly printing. Returns False if firstcond or mask
2621 conditionalised depend on firstcond and mask:
2639 UInt firstcond, UInt mask )
2641 vassert(firstcond <= 0xF);
2648 if (firstcond == 0xF)
2650 if (firstcond == 0xE && popcount32(mask) != 1)
2651 return False; /* if firstcond is AL then all the rest must be too */
2658 UInt fc = (firstcond << 4) | 1/*in-IT-block*/;
2670 *ch1 = m3 == (firstcond
2635 compute_ITSTATE( UInt* itstate, HChar* ch1, HChar* ch2, HChar* ch3, UInt firstcond, UInt mask ) argument
18441 UInt firstcond = INSN0(7,4); local
[all...]
/external/vixl/src/aarch32/
H A Ddisasm-aarch32.cc8330 unsigned firstcond = (instr >> 20) & 0xf; local
8333 SetIT(Condition(firstcond), mask);
8334 it(Condition(firstcond), mask);
8335 if (wasInITBlock || (firstcond == 15) ||
8336 ((firstcond == al) &&
[all...]

Completed in 362 milliseconds