1254721Semaste//===-- StoppointLocation.cpp -----------------------------------*- C++ -*-===//
2254721Semaste//
3254721Semaste//                     The LLVM Compiler Infrastructure
4254721Semaste//
5254721Semaste// This file is distributed under the University of Illinois Open Source
6254721Semaste// License. See LICENSE.TXT for details.
7254721Semaste//
8254721Semaste//===----------------------------------------------------------------------===//
9254721Semaste
10254721Semaste#include "lldb/Breakpoint/StoppointLocation.h"
11254721Semaste
12254721Semaste// C Includes
13254721Semaste// C++ Includes
14254721Semaste// Other libraries and framework includes
15254721Semaste// Project includes
16254721Semaste
17254721Semasteusing namespace lldb;
18254721Semasteusing namespace lldb_private;
19254721Semaste
20254721Semaste//----------------------------------------------------------------------
21254721Semaste// StoppointLocation constructor
22254721Semaste//----------------------------------------------------------------------
23254721SemasteStoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware) :
24254721Semaste    m_loc_id(bid),
25254721Semaste    m_addr(addr),
26263363Semaste    m_hardware(hardware),
27263363Semaste    m_hardware_index(LLDB_INVALID_INDEX32),
28254721Semaste    m_byte_size(0),
29254721Semaste    m_hit_count(0)
30254721Semaste{
31254721Semaste}
32254721Semaste
33254721SemasteStoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) :
34254721Semaste    m_loc_id(bid),
35254721Semaste    m_addr(addr),
36263363Semaste    m_hardware(hardware),
37263363Semaste    m_hardware_index(LLDB_INVALID_INDEX32),
38254721Semaste    m_byte_size(byte_size),
39254721Semaste    m_hit_count(0)
40254721Semaste{
41254721Semaste}
42254721Semaste
43254721Semaste//----------------------------------------------------------------------
44254721Semaste// Destructor
45254721Semaste//----------------------------------------------------------------------
46254721SemasteStoppointLocation::~StoppointLocation()
47254721Semaste{
48254721Semaste}
49