OpenASIP
2.0
src
applibs
PIG
ArrayProgramImageWriter.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 ArrayProgramImageWriter.cc
26
*
27
* Implementation of ArrayProgramImageWriter class.
28
*
29
* @author Lasse Laasonen 2006 (lasse.laasonen-no.spam-tut.fi)
30
* @note rating: red
31
*/
32
33
#include "
ArrayProgramImageWriter.hh
"
34
#include "
InstructionBitVector.hh
"
35
#include "
Application.hh
"
36
37
/**
38
* The constructor.
39
*
40
* @param bits The program image to write.
41
*/
42
ArrayProgramImageWriter::ArrayProgramImageWriter
(
43
const
InstructionBitVector
& bits) :
ArrayImageWriter
(bits, 0) {
44
}
45
46
47
/**
48
* The destructor.
49
*/
50
ArrayProgramImageWriter::~ArrayProgramImageWriter
() {
51
}
52
53
54
/**
55
* Writes the program image to the given output stream.
56
*
57
* @param stream The output stream.
58
*/
59
void
60
ArrayProgramImageWriter::writeImage
(std::ostream& stream)
const
{
61
62
const
BitVector
&
bits
= this->
bits
();
63
const
InstructionBitVector
* programBits =
64
dynamic_cast<
const
InstructionBitVector
*
>
(&
bits
);
65
assert
(programBits != NULL);
66
67
unsigned
int
previousBoundary(0);
68
for
(
unsigned
int
i = 1; i < programBits->
instructionCount
(); i++) {
69
unsigned
int
instructionBoundary =
70
programBits->
instructionStartingPoint
(i);
71
stream <<
"\""
;
72
writeSequence
(stream, instructionBoundary - previousBoundary);
73
stream <<
"\","
<< std::endl;
74
previousBoundary = instructionBoundary;
75
}
76
stream <<
"\""
;
77
writeSequence
(stream,
bits
.size() - previousBoundary);
78
stream <<
"\""
;
79
}
80
81
InstructionBitVector.hh
BitVector
Definition:
BitVector.hh:44
ArrayProgramImageWriter::writeImage
virtual void writeImage(std::ostream &stream) const
Definition:
ArrayProgramImageWriter.cc:60
AsciiImageWriter::writeSequence
void writeSequence(std::ostream &stream, int length, bool padEnd=false) const
Definition:
AsciiImageWriter.cc:129
ArrayProgramImageWriter.hh
assert
#define assert(condition)
Definition:
Application.hh:86
InstructionBitVector::instructionStartingPoint
unsigned int instructionStartingPoint(unsigned int index) const
Definition:
InstructionBitVector.cc:269
ArrayProgramImageWriter::~ArrayProgramImageWriter
virtual ~ArrayProgramImageWriter()
Definition:
ArrayProgramImageWriter.cc:50
InstructionBitVector::instructionCount
unsigned int instructionCount() const
Definition:
InstructionBitVector.cc:254
Application.hh
ArrayProgramImageWriter::ArrayProgramImageWriter
ArrayProgramImageWriter(const InstructionBitVector &bits)
Definition:
ArrayProgramImageWriter.cc:42
ArrayImageWriter
Definition:
ArrayImageWriter.hh:43
AsciiImageWriter::bits
const BitVector & bits() const
Definition:
AsciiImageWriter.cc:101
InstructionBitVector
Definition:
InstructionBitVector.hh:50
Generated by
1.8.17