1 //===-- NativeBreakpointList.h ----------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef liblldb_NativeBreakpointList_h_ 11 #define liblldb_NativeBreakpointList_h_ 12 13 #include "lldb/lldb-private-forward.h" 14 #include "lldb/lldb-types.h" 15 #include <map> 16 17 namespace lldb_private { 18 19 struct HardwareBreakpoint { 20 lldb::addr_t m_addr; 21 size_t m_size; 22 }; 23 24 using HardwareBreakpointMap = std::map<lldb::addr_t, HardwareBreakpoint>; 25 } 26 27 #endif // ifndef liblldb_NativeBreakpointList_h_ 28