blob: 48f9e6070504d20cfa8d43f098b01358a57b5a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/***************************************************************************
* Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef GENERIC_DEBUG_H
#define GENERIC_DEBUG_H
#include "common/common/purl_base.h"
#include "common/global/global.h"
#include "common/global/log.h"
#include "devices/base/register.h"
namespace Programmer { class Base; }
namespace Coff { class TextObject; }
namespace Debugger
{
class DeviceSpecific;
class Specific;
//----------------------------------------------------------------------------
class Base : public Log::Base
{
public:
Base(Programmer::Base &programmer);
virtual ~Base();
void init(DeviceSpecific *deviceSpecific, Specific *specific);
const Device::Data *device() const;
void setupInput(PURL::FileType type, const TQString &directory, const TQString &filename);
void setCoff(const Coff::TextObject *coff) { _coff = coff; }
TQString directory() const { return _directory; }
bool init();
bool update();
bool reset();
bool run();
bool halt();
bool step();
TQString statusString() const;
virtual bool setBreakpoints(const TQValueList<Address> &addresses) = 0;
BitValue pc() const;
Register::TypeData pcTypeData() const;
virtual bool readRegister(const Register::TypeData &data, BitValue &value) = 0;
virtual bool writeRegister(const Register::TypeData &data, BitValue value) = 0;
virtual bool updatePorttqStatus(uint index, TQMap<uint, Device::PortBitData> &bits) = 0;
protected:
Programmer::Base &_programmer;
DeviceSpecific *_deviceSpecific;
Specific *_specific;
PURL::FileType _inputType;
TQString _directory, _filename;
const Coff::TextObject *_coff;
virtual bool internalInit() = 0;
virtual bool internalRun() = 0;
virtual bool softHalt(bool &success) = 0;
virtual bool hardHalt() = 0;
virtual bool internalStep() = 0;
virtual bool internalReset() = 0;
virtual bool updateState() = 0;
};
//----------------------------------------------------------------------------
class DeviceSpecific : public Log::Base
{
public:
DeviceSpecific(Debugger::Base &base) : Log::Base(base), _base(base) {}
virtual bool updatetqStatus() = 0;
virtual TQString statusString() const = 0;
protected:
Debugger::Base &_base;
};
//----------------------------------------------------------------------------
class Specific : public Log::Base
{
public:
Specific(Debugger::Base &base) : Log::Base(base), _base(base) {}
protected:
Debugger::Base &_base;
};
} // namespace
#endif
|