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
|
/***************************************************************************
* 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 DISASSEMBLER_H
#define DISASSEMBLER_H
#include "common/common/purl_base.h"
#include "devices/pic/base/pic_config.h"
namespace Device { class Data; class Memory; }
namespace Pic { class Data; class Memory; }
//-----------------------------------------------------------------------------
namespace SourceLine
{
enum Type { Indented, NotIndented, Title, Separator, Empty };
class Data {
public:
Data(Type _type = Empty, const TQString &_code = TQString(), const TQString &_comment = TQString())
: type(_type), code(_code), comment(_comment) {}
Type type;
TQString code, comment;
};
class List : public TQValueList<Data>
{
public:
List() {}
void appendSeparator() { append(Separator); }
void appendEmpty() { append(Empty); }
void appendTitle(const TQString &text) { append(Data(Title, TQString(), text)); }
void appendIndentedCode(const TQString &code, const TQString &comment = TQString()) { append(Data(Indented, code, comment)); }
void appendNotIndentedCode(const TQString &code, const TQString &comment = TQString()) { append(Data(NotIndented, code, comment)); }
};
extern TQString comment(PURL::SourceFamily family, const TQString &text);
extern TQStringList lines(PURL::SourceFamily family, const List &list, uint nbSpaces);
extern TQString text(PURL::SourceFamily family, const List &list, uint nbSpaces);
extern TQString transformConfigName(const Pic::Data &data, uint wordIndex, const TQString &name);
extern TQStringList ignoredConfigNames(const Pic::Data &data, uint wordIndex);
extern TQStringList extraConfigNames(const Pic::Data &data, uint wordIndex, const Pic::Config::Value &value);
extern TQStringList configNames(Pic::ConfigNameType type, const Pic::Memory &memory, uint word, bool &ok);
} // namespace
//-----------------------------------------------------------------------------
namespace GPUtils
{
extern TQString toDeviceName(const TQString &device);
extern SourceLine::List includeLines(const Device::Data &data);
extern SourceLine::List generateConfigLines(const Pic::Memory &memory, bool &ok);
extern SourceLine::List disassemble(const Pic::Memory &memory);
} // namespace
//-----------------------------------------------------------------------------
namespace Tool
{
class SourceGenerator
{
public:
SourceGenerator() {}
virtual ~SourceGenerator() {}
virtual SourceLine::List configLines(PURL::ToolType type, const Device::Memory &memory, bool &ok) const = 0;
SourceLine::List templateSourceFile(PURL::ToolType type, const Device::Data &data, bool &ok) const;
virtual SourceLine::List sourceFileContent(PURL::ToolType type, const Device::Data &data, bool &ok) const = 0;
virtual SourceLine::List includeLines(PURL::ToolType type, const Device::Data &data) const = 0;
};
} // namespace
#endif
|