OpenASIP
2.2
Loading...
Searching...
No Matches
src
applibs
Simulator
SimulatorInterpreter.cc
Go to the documentation of this file.
1
/*
2
Copyright (c) 2002-2010 Tampere University.
3
4
This file is part of TTA-Based Codesign Environment (TCE).
5
6
Permission is hereby granted, free of charge, to any person obtaining a
7
copy of this software and associated documentation files (the "Software"),
8
to deal in the Software without restriction, including without limitation
9
the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
and/or sell copies of the Software, and to permit persons to whom the
11
Software is furnished to do so, subject to the following conditions:
12
13
The above copyright notice and this permission notice shall be included in
14
all copies or substantial portions of the Software.
15
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
DEALINGS IN THE SOFTWARE.
23
*/
24
/**
25
* @file SimulatorInterpreter.cc
26
*
27
* Implementation of SimulatorInterpreter class
28
*
29
* @author Pekka Jääskeläinen 2005-2010
30
* @note rating: red
31
*/
32
33
#include "
SimulatorInterpreter.hh
"
34
#include "
TclInterpreter.hh
"
35
36
// commands of the simulator control language
37
#include "
HelpCommand.hh
"
38
#include "
ProgCommand.hh
"
39
#include "
MachCommand.hh
"
40
#include "
ConfCommand.hh
"
41
#include "
QuitCommand.hh
"
42
#include "
RunCommand.hh
"
43
#include "
StepiCommand.hh
"
44
#include "
DisassembleCommand.hh
"
45
#include "
UntilCommand.hh
"
46
#include "
SettingCommand.hh
"
47
#include "
ResumeCommand.hh
"
48
#include "
InfoCommand.hh
"
49
#include "
BPCommand.hh
"
50
#include "
TBPCommand.hh
"
51
#include "
ConditionCommand.hh
"
52
#include "
IgnoreCommand.hh
"
53
#include "
DeleteBPCommand.hh
"
54
#include "
EnableBPCommand.hh
"
55
#include "
DisableBPCommand.hh
"
56
#include "
NextiCommand.hh
"
57
#include "
KillCommand.hh
"
58
#include "
MemDumpCommand.hh
"
59
#include "
WatchCommand.hh
"
60
#include "
CommandsCommand.hh
"
61
#include "
SymbolAddressCommand.hh
"
62
#include "
BackTraceCommand.hh
"
63
#include "
MemWriteCommand.hh
"
64
65
/**
66
* Constructor.
67
*
68
* Initializes the interpreter. argc and argv variables are set to be
69
* visible as interpreter variables.
70
*
71
* @param argc The number of command line arguments.
72
* @param argv The command line arguments.
73
* @param context The context data for the interpreter.
74
* @param reader LineReader used by the interpreter.
75
*/
76
SimulatorInterpreter::SimulatorInterpreter
(
77
int
argc,
78
char
* argv[],
79
SimulatorInterpreterContext
& context,
80
LineReader
& reader) :
TclInterpreter
(), quitted_(
false
) {
81
82
initialize
(argc, argv, &
context
, &reader);
83
84
addCustomCommand
(
new
HelpCommand
());
85
addCustomCommand
(
new
ProgCommand
());
86
addCustomCommand
(
new
MachCommand
());
87
addCustomCommand
(
new
ConfCommand
());
88
addCustomCommand
(
new
QuitCommand
(
"quit"
));
89
addCustomCommand
(
new
QuitCommand
(
"exit"
));
90
addCustomCommand
(
new
RunCommand
());
91
addCustomCommand
(
new
StepiCommand
());
92
addCustomCommand
(
new
DisassembleCommand
());
93
addCustomCommand
(
new
UntilCommand
());
94
addCustomCommand
(
new
SettingCommand
());
95
addCustomCommand
(
new
ResumeCommand
());
96
addCustomCommand
(
new
InfoCommand
(
97
context
.simulatorFrontend().isCompiledSimulation()));
98
addCustomCommand
(
new
BPCommand
());
99
addCustomCommand
(
new
TBPCommand
());
100
addCustomCommand
(
new
ConditionCommand
());
101
addCustomCommand
(
new
IgnoreCommand
());
102
addCustomCommand
(
new
DeleteBPCommand
());
103
addCustomCommand
(
new
EnableBPCommand
());
104
addCustomCommand
(
new
DisableBPCommand
());
105
addCustomCommand
(
new
NextiCommand
());
106
addCustomCommand
(
new
KillCommand
());
107
addCustomCommand
(
new
MemDumpCommand
());
108
addCustomCommand
(
new
MemWriteCommand
());
109
addCustomCommand
(
new
WatchCommand
());
110
addCustomCommand
(
new
CommandsCommand
());
111
addCustomCommand
(
new
SymbolAddressCommand
());
112
113
addCustomCommand
(
new
BackTraceCommand
());
114
115
context
.simulatorFrontend().setOutputStream(
lineReader
()->outputStream());
116
}
117
118
/**
119
* Destructor.
120
*
121
* Finalizes the internal structures of the interpreter.
122
*/
123
SimulatorInterpreter::~SimulatorInterpreter
() {
124
finalize
();
125
}
126
127
128
/**
129
* Returns true in case interpreter has received the quit command.
130
*
131
* @param True if quite command has been given.
132
*/
133
bool
134
SimulatorInterpreter::isQuitCommandGiven
()
const
{
135
return
quitted_
;
136
}
137
138
/**
139
* Sets the quit command to be given.
140
*/
141
void
142
SimulatorInterpreter::setQuitCommandGiven
() {
143
quitted_
=
true
;
144
}
BPCommand.hh
BackTraceCommand.hh
CommandsCommand.hh
ConditionCommand.hh
ConfCommand.hh
DeleteBPCommand.hh
DisableBPCommand.hh
DisassembleCommand.hh
EnableBPCommand.hh
HelpCommand.hh
IgnoreCommand.hh
InfoCommand.hh
false
find Finds info of the inner loops in the false
Definition
InnerLoopFinder.cc:81
KillCommand.hh
MachCommand.hh
MemDumpCommand.hh
MemWriteCommand.hh
NextiCommand.hh
ProgCommand.hh
QuitCommand.hh
ResumeCommand.hh
RunCommand.hh
SettingCommand.hh
SimulatorInterpreter.hh
StepiCommand.hh
SymbolAddressCommand.hh
TBPCommand.hh
TclInterpreter.hh
UntilCommand.hh
WatchCommand.hh
BPCommand
Definition
BPCommand.hh:47
BackTraceCommand
Definition
BackTraceCommand.hh:47
CommandsCommand
Definition
CommandsCommand.hh:47
ConditionCommand
Definition
ConditionCommand.hh:47
ConfCommand
Definition
ConfCommand.hh:46
DeleteBPCommand
Definition
DeleteBPCommand.hh:47
DisableBPCommand
Definition
DisableBPCommand.hh:47
DisassembleCommand
Definition
DisassembleCommand.hh:48
EnableBPCommand
Definition
EnableBPCommand.hh:47
HelpCommand
Definition
HelpCommand.hh:45
IgnoreCommand
Definition
IgnoreCommand.hh:47
InfoCommand
Definition
InfoCommand.hh:48
KillCommand
Definition
KillCommand.hh:46
LineReader
Definition
LineReader.hh:52
MachCommand
Definition
MachCommand.hh:46
MemDumpCommand
Definition
MemDumpCommand.hh:47
MemWriteCommand
Definition
MemWriteCommand.hh:48
NextiCommand
Definition
NextiCommand.hh:47
ProgCommand
Definition
ProgCommand.hh:46
QuitCommand
Definition
QuitCommand.hh:46
ResumeCommand
Definition
ResumeCommand.hh:47
RunCommand
Definition
RunCommand.hh:47
ScriptInterpreter::lineReader
virtual LineReader * lineReader() const
Definition
ScriptInterpreter.cc:367
ScriptInterpreter::finalize
virtual void finalize()
Definition
ScriptInterpreter.cc:329
ScriptInterpreter::addCustomCommand
virtual void addCustomCommand(CustomCommand *command)
Definition
ScriptInterpreter.cc:78
SettingCommand
Definition
SettingCommand.hh:51
SimulatorInterpreterContext
Definition
SimulatorInterpreterContext.hh:45
SimulatorInterpreter::quitted_
bool quitted_
Definition
SimulatorInterpreter.hh:62
SimulatorInterpreter::setQuitCommandGiven
void setQuitCommandGiven()
Definition
SimulatorInterpreter.cc:142
SimulatorInterpreter::SimulatorInterpreter
SimulatorInterpreter(int argc, char *argv[], SimulatorInterpreterContext &context, LineReader &reader)
Definition
SimulatorInterpreter.cc:76
SimulatorInterpreter::isQuitCommandGiven
bool isQuitCommandGiven() const
Definition
SimulatorInterpreter.cc:134
SimulatorInterpreter::~SimulatorInterpreter
virtual ~SimulatorInterpreter()
Definition
SimulatorInterpreter.cc:123
StepiCommand
Definition
StepiCommand.hh:47
SymbolAddressCommand
Definition
SymbolAddressCommand.hh:48
TBPCommand
Definition
TBPCommand.hh:47
TclInterpreter
Definition
TclInterpreter.hh:52
TclInterpreter::context
virtual InterpreterContext & context() const
Definition
TclInterpreter.cc:298
TclInterpreter::initialize
virtual void initialize(int argc, char *argv[], InterpreterContext *context, LineReader *reader)
Definition
TclInterpreter.cc:72
UntilCommand
Definition
UntilCommand.hh:47
WatchCommand
Definition
WatchCommand.hh:47
Generated by
1.9.8