1 //===-- StoppointLocation.cpp -----------------------------------*- 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 #include "lldb/Breakpoint/StoppointLocation.h" 11 12 // C Includes 13 // C++ Includes 14 // Other libraries and framework includes 15 // Project includes 16 17 using namespace lldb; 18 using namespace lldb_private; 19 20 //---------------------------------------------------------------------- 21 // StoppointLocation constructor 22 //---------------------------------------------------------------------- 23 StoppointLocation::StoppointLocation(break_id_t bid, addr_t addr, bool hardware) 24 : m_loc_id(bid), m_addr(addr), m_hardware(hardware), 25 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(0), m_hit_count(0) {} 26 27 StoppointLocation::StoppointLocation(break_id_t bid, addr_t addr, 28 uint32_t byte_size, bool hardware) 29 : m_loc_id(bid), m_addr(addr), m_hardware(hardware), 30 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(byte_size), 31 m_hit_count(0) {} 32 33 //---------------------------------------------------------------------- 34 // Destructor 35 //---------------------------------------------------------------------- 36 StoppointLocation::~StoppointLocation() {} 37 38 void StoppointLocation::DecrementHitCount() { 39 assert(m_hit_count > 0); 40 --m_hit_count; 41 } 42