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

References

tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
 1070   if (wp_index >= NumSupportedHardwareWatchpoints())
 1087   Status error = IsWatchpointVacant(wp_index, is_vacant);
 1099   uint64_t enable_bit = 1 << (2 * wp_index);
 1103   uint64_t rw_bits = watch_flags << (16 + 4 * wp_index);
 1108   uint64_t size_bits = (size == 8 ? 0x2 : size - 1) << (18 + 4 * wp_index);
 1110   uint64_t bit_mask = (0x3 << (2 * wp_index)) | (0xF << (16 + 4 * wp_index));
 1110   uint64_t bit_mask = (0x3 << (2 * wp_index)) | (0xF << (16 + 4 * wp_index));
 1116   error = WriteRegisterRaw(m_reg_info.first_dr + wp_index, RegisterValue(addr));