OpenASIP 2.2
Loading...
Searching...
No Matches
KoskiIntegrator.hh
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 KoskiIntegrator.hh
26 *
27 * Declaration of KoskiIntegrator class.
28 *
29 * @author Otto Esko 2010 (otto.esko-no.spam-tut.fi)
30 * @note rating: red
31 */
32
33#ifndef TTA_KOSKI_INTEGRATOR_HH
34#define TTA_KOSKI_INTEGRATOR_HH
35
36#include <map>
37#include "AlteraIntegrator.hh"
38
39
41public:
43
47 ProGe::HDL hdl,
48 TCEString progeOutputDir,
50 TCEString outputDir,
52 int targetClockFreq,
53 std::ostream& warningStream,
54 std::ostream& errorStream,
55 const MemInfo& imem,
56 MemType dmemType);
57
58 virtual ~KoskiIntegrator();
59
60 virtual TCEString deviceFamily() const;
61
62 virtual void setDeviceFamily(TCEString devFamily);
63
64 virtual TCEString devicePackage() const;
65
66 virtual TCEString deviceSpeedClass() const;
67
68 virtual int targetClockFrequency() const;
69
70 virtual void printInfo(std::ostream& stream) const;
71
72protected:
73
74 virtual TCEString pinTag() const;
75
76 virtual bool chopTaggedSignals() const;
77
79
81 MemInfo dmem,
83 std::vector<std::string> lsuPorts);
84
85private:
86
88
90
92
93 static const TCEString PIN_TAG_;
95};
96
97
98#endif
MemoryGenerator * dmemGen_
virtual void printInfo(std::ostream &stream) const
virtual TCEString pinTag() const
virtual int targetClockFrequency() const
static const TCEString DEFAULT_DEVICE_FAMILY_
TCEString deviceFamily_
virtual TCEString deviceFamily() const
virtual TCEString deviceSpeedClass() const
static const TCEString PIN_TAG_
ProjectFileGenerator * ipXactGen_
virtual ~KoskiIntegrator()
virtual bool chopTaggedSignals() const
virtual TCEString devicePackage() const
virtual void setDeviceFamily(TCEString devFamily)
virtual ProjectFileGenerator * projectFileGenerator() const
virtual MemoryGenerator & dmemInstance(MemInfo dmem, TTAMachine::FunctionUnit &lsuArch, std::vector< std::string > lsuPorts)
const TTAMachine::Machine * machine() const
std::ostream & warningStream() const
const IDF::MachineImplementation * idf() const
TCEString programName() const
std::ostream & errorStream() const
TCEString coreEntityName() const
HDL
HDLs supported by ProGe.
Definition ProGeTypes.hh:40