OpenASIP
2.0
src
base
tpef
DebugElement.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 DebugElement.cc
26
*
27
* Non-inline definitions of DebugElement class.
28
*
29
* @author Mikael Lepistö 2006 (tmlepist-no.spam-cs.tut.fi)
30
*
31
* @note rating: yellow
32
*/
33
34
#include "
DebugElement.hh
"
35
#include "
SafePointer.hh
"
36
#include "
Chunk.hh
"
37
38
namespace
TPEF
{
39
40
/**
41
* Constructor.
42
*/
43
DebugElement::DebugElement
() :
SectionElement
() {
44
}
45
46
/**
47
* Destructor.
48
*/
49
DebugElement::~DebugElement
() {
50
}
51
52
/**
53
* Returns the debug string.
54
*
55
* @return Debug string.
56
*/
57
Chunk
*
58
DebugElement::debugString
()
const
{
59
return
dynamic_cast<
Chunk
*
>
(
debugString_
->
pointer
());
60
}
61
62
/**
63
* Sets the debug string.
64
*
65
* @param aString Debug string to set.
66
*/
67
void
68
DebugElement::setDebugString
(
const
ReferenceManager::SafePointer
* aString) {
69
debugString_
= aString;
70
}
71
72
/**
73
* Sets the debug string.
74
*
75
* @param aString The debug string.
76
*/
77
void
78
DebugElement::setDebugString
(
Chunk
* aString) {
79
using namespace
ReferenceManager;
80
debugString_
=
SafePointer::replaceReference
(
debugString_
, aString);
81
}
82
83
}
// namespace TPEF
TPEF::ReferenceManager::SafePointer::replaceReference
static const SafePointer * replaceReference(const SafePointer *old, SafePointable *obj)
TPEF::DebugElement::DebugElement
DebugElement()
Definition:
DebugElement.cc:43
SafePointer.hh
TPEF::DebugElement::~DebugElement
virtual ~DebugElement()
Definition:
DebugElement.cc:49
TPEF::ReferenceManager::SafePointer
Definition:
SafePointer.hh:188
TPEF::ReferenceManager::SafePointer::pointer
SafePointable * pointer() const
TPEF::SectionElement
Definition:
SectionElement.hh:44
TPEF::DebugElement::debugString_
const ReferenceManager::SafePointer * debugString_
String of debug element.
Definition:
DebugElement.hh:78
Chunk.hh
TPEF::DebugElement::debugString
Chunk * debugString() const
Definition:
DebugElement.cc:58
DebugElement.hh
TPEF::Chunk
Definition:
Chunk.hh:45
TPEF
Definition:
Assembler.hh:43
TPEF::DebugElement::setDebugString
void setDebugString(const ReferenceManager::SafePointer *aString)
Definition:
DebugElement.cc:68
Generated by
1.8.17