OpenASIP
2.0
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
Functions
a
b
c
d
f
g
i
l
m
n
o
p
s
Variables
Typedefs
a
b
c
d
e
f
i
n
p
r
s
t
Enumerations
Enumerator
b
c
f
g
h
i
l
m
o
r
s
t
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
i
l
m
n
o
p
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
z
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
x
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
f
i
j
l
m
n
o
p
r
s
t
u
w
Enumerations
Enumerator
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
applibs
Simulator
SimulatorCmdLineOptions.hh
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 SimulatorCmdLineOptions.hh
26
*
27
* Declaration of SimulatorCmdLineOptions.
28
*
29
* @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
30
* @author Viljami Korhonen 2007 (viljami.korhonen-no.spam-tut.fi)
31
* @note rating: red
32
*/
33
34
#ifndef TTA_SIM_CMDLINE_OPTIONS_HH
35
#define TTA_SIM_CMDLINE_OPTIONS_HH
36
37
#include <string>
38
39
#include "
CmdLineOptions.hh
"
40
#include "
SimulatorFrontend.hh
"
41
42
/**
43
* Command line option class for Simulator.
44
*/
45
class
SimulatorCmdLineOptions
:
public
CmdLineOptions
{
46
public
:
47
SimulatorCmdLineOptions
();
48
virtual
~SimulatorCmdLineOptions
();
49
50
virtual
void
printVersion
()
const
;
51
virtual
void
printHelp
()
const
;
52
53
bool
debugMode
();
54
std::string
scriptString
();
55
56
std::string
machineFile
();
57
std::string
programFile
();
58
SimulatorFrontend::SimulationType
backendType
();
59
60
private
:
61
/// Copying not allowed.
62
SimulatorCmdLineOptions
(
const
SimulatorCmdLineOptions
&);
63
/// Assignment not allowed.
64
SimulatorCmdLineOptions
&
operator=
(
const
SimulatorCmdLineOptions
&);
65
};
66
67
#endif
SimulatorCmdLineOptions::machineFile
std::string machineFile()
Definition:
SimulatorCmdLineOptions.cc:186
SimulatorCmdLineOptions
Definition:
SimulatorCmdLineOptions.hh:45
CmdLineOptions.hh
SimulatorCmdLineOptions::backendType
SimulatorFrontend::SimulationType backendType()
Definition:
SimulatorCmdLineOptions.cc:209
SimulatorCmdLineOptions::printVersion
virtual void printVersion() const
Definition:
SimulatorCmdLineOptions.cc:131
SimulatorCmdLineOptions::programFile
std::string programFile()
Definition:
SimulatorCmdLineOptions.cc:196
SimulatorCmdLineOptions::scriptString
std::string scriptString()
Definition:
SimulatorCmdLineOptions.cc:173
SimulatorCmdLineOptions::operator=
SimulatorCmdLineOptions & operator=(const SimulatorCmdLineOptions &)
Assignment not allowed.
SimulatorFrontend::SimulationType
SimulationType
Which type of simulation this SimulatorFrontend controls or connects to.
Definition:
SimulatorFrontend.hh:101
CmdLineOptions
Definition:
CmdLineOptions.hh:54
SimulatorCmdLineOptions::~SimulatorCmdLineOptions
virtual ~SimulatorCmdLineOptions()
Definition:
SimulatorCmdLineOptions.cc:124
SimulatorFrontend.hh
SimulatorCmdLineOptions::debugMode
bool debugMode()
Definition:
SimulatorCmdLineOptions.cc:158
SimulatorCmdLineOptions::SimulatorCmdLineOptions
SimulatorCmdLineOptions()
Definition:
SimulatorCmdLineOptions.cc:82
SimulatorCmdLineOptions::printHelp
virtual void printHelp() const
Definition:
SimulatorCmdLineOptions.cc:142
Generated by
1.8.17