OpenASIP
2.0
src
applibs
Simulator
UntilCommand.cc
Go to the documentation of this file.
1
/*
2
Copyright (c) 2002-2009 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 UntilCommand.cc
26
*
27
* Implementation of UntilCommand class
28
*
29
* @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
30
* @note rating: red
31
*/
32
33
#include "
UntilCommand.hh
"
34
#include "
Application.hh
"
35
#include "
FileSystem.hh
"
36
#include "
SimulatorFrontend.hh
"
37
#include "
SimulatorInterpreterContext.hh
"
38
#include "
Exception.hh
"
39
#include "
SimulatorToolbox.hh
"
40
#include "
SimulatorTextGenerator.hh
"
41
#include "
SimControlLanguageCommand.hh
"
42
#include "
SimValue.hh
"
43
#include "
Procedure.hh
"
44
45
#include <iostream>
46
#include <boost/timer.hpp>
47
48
/**
49
* Constructor.
50
*
51
* Sets the name of the command to the base class.
52
*/
53
UntilCommand::UntilCommand
() :
SimControlLanguageCommand
(
"until"
) {
54
}
55
56
/**
57
* Destructor.
58
*
59
* Does nothing.
60
*/
61
UntilCommand::~UntilCommand
() {
62
}
63
64
/**
65
* Executes the "until" command.
66
*
67
* Run until the program location specified by arg is reached and stop
68
* before executing the instruction at specified address. Any valid
69
* argument that applies to command break is also a valid argument for until.
70
*
71
* @param arguments The count of steps (default is one step).
72
* @return True in case simulation is initialized and arguments are ok.
73
* @exception NumberFormatException Is never thrown by this command.
74
*/
75
bool
76
UntilCommand::execute
(
const
std::vector<DataObject>& arguments) {
77
boost::timer time;
78
79
const
int
argumentCount = arguments.size() - 1;
80
if
(!
checkArgumentCount
(argumentCount, 0, 1)) {
81
return
false
;
82
}
83
84
if
(!
checkSimulationInitialized
() && !
checkSimulationStopped
()) {
85
return
false
;
86
}
87
88
try
{
89
const
std::string argument =
90
((argumentCount == 1)?(arguments[1].stringValue()):(
""
));
91
92
const
int
instructionAddress =
93
parseInstructionAddressExpression
(argument);
94
simulatorFrontend
().
runUntil
(instructionAddress);
95
printNextInstruction
();
96
printSimulationTime
();
97
}
catch
(
const
IllegalParameters
&) {
98
return
false
;
99
}
100
return
true
;
101
}
102
103
/**
104
* Returns the help text for this command.
105
*
106
* Help text is searched from SimulatorTextGenerator.
107
*
108
* @return The help text.
109
*/
110
std::string
111
UntilCommand::helpText
()
const
{
112
return
SimulatorToolbox::textGenerator
().
text
(
113
Texts::TXT_INTERP_HELP_UNTIL
).str();
114
}
CustomCommand::checkArgumentCount
bool checkArgumentCount(int argumentCount, int minimum, int maximum)
Definition:
CustomCommand.cc:82
FileSystem.hh
SimControlLanguageCommand::checkSimulationStopped
bool checkSimulationStopped()
Definition:
SimControlLanguageCommand.cc:135
SimulatorInterpreterContext.hh
Exception.hh
UntilCommand::~UntilCommand
virtual ~UntilCommand()
Definition:
UntilCommand.cc:61
Procedure.hh
SimControlLanguageCommand::printNextInstruction
virtual void printNextInstruction()
Definition:
SimControlLanguageCommand.cc:228
UntilCommand::UntilCommand
UntilCommand()
Definition:
UntilCommand.cc:53
Texts::TextGenerator::text
virtual boost::format text(int textId)
Definition:
TextGenerator.cc:94
SimulatorToolbox.hh
IllegalParameters
Definition:
Exception.hh:113
UntilCommand.hh
SimControlLanguageCommand::parseInstructionAddressExpression
InstructionAddress parseInstructionAddressExpression(const std::string &expression)
Definition:
SimControlLanguageCommand.cc:378
Application.hh
SimulatorToolbox::textGenerator
static SimulatorTextGenerator & textGenerator()
Definition:
SimulatorToolbox.cc:75
SimulatorTextGenerator.hh
SimControlLanguageCommand::checkSimulationInitialized
bool checkSimulationInitialized()
Definition:
SimControlLanguageCommand.cc:88
UntilCommand::execute
virtual bool execute(const std::vector< DataObject > &arguments)
Definition:
UntilCommand.cc:76
SimulatorFrontend.hh
SimValue.hh
UntilCommand::helpText
virtual std::string helpText() const
Definition:
UntilCommand.cc:111
SimulatorFrontend::runUntil
virtual void runUntil(UIntWord address)
Definition:
SimulatorFrontend.cc:1014
Texts::TXT_INTERP_HELP_UNTIL
@ TXT_INTERP_HELP_UNTIL
Help text for command "stepi" of the CLI.
Definition:
SimulatorTextGenerator.hh:75
SimControlLanguageCommand
Definition:
SimControlLanguageCommand.hh:63
SimControlLanguageCommand.hh
SimControlLanguageCommand::simulatorFrontend
SimulatorFrontend & simulatorFrontend()
Definition:
SimControlLanguageCommand.cc:214
SimControlLanguageCommand::printSimulationTime
virtual void printSimulationTime()
Definition:
SimControlLanguageCommand.cc:322
Generated by
1.8.17