reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
  270   return bits(val, msbit, msbit);
  282   uint32_t imm = bits(opcode, 7, 0);      // immediate value
  283   uint32_t amt = 2 * bits(opcode, 11, 8); // rotate amount
  307   const uint32_t imm3 = bits(opcode, 14, 12);
  308   const uint32_t abcdefgh = bits(opcode, 7, 0);
  311   if (bits(imm12, 11, 10) == 0) {
  312     switch (bits(imm12, 9, 8)) {
  332     const uint32_t unrotated_value = 0x80 | bits(imm12, 6, 0);
  333     imm32 = ror(unrotated_value, 32, bits(imm12, 11, 7));
  350   const uint32_t imm3 = bits(opcode, 14, 12);
  351   const uint32_t imm8 = bits(opcode, 7, 0);
  358   const uint32_t imm7 = bits(opcode, 6, 0);
  364   const uint32_t imm8 = bits(opcode, 7, 0);