OpenASIP
2.0
src
applibs
Simulator
MemoryAccessingFUState.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 MemoryAccessingFUState.hh
26
*
27
* Declaration of MemoryAccessingFUState class.
28
*
29
* @author Jussi Nykänen 2004 (nykanen-no.spam-cs.tut.fi)
30
* @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
31
* @note rating: red
32
*/
33
34
#ifndef TTA_MEMORY_ACCESSING_FU_STATE_HH
35
#define TTA_MEMORY_ACCESSING_FU_STATE_HH
36
37
#include "
FUState.hh
"
38
39
class
Memory
;
40
41
/**
42
* Models function unit that access memory.
43
*/
44
class
MemoryAccessingFUState
:
public
FUState
{
45
public
:
46
MemoryAccessingFUState
(
Memory
& memory);
47
MemoryAccessingFUState
(
const
TCEString
& name,
Memory
& memory);
48
virtual
~MemoryAccessingFUState
();
49
50
protected
:
51
virtual
OperationContext
&
context
();
52
53
private
:
54
/// Copying not allowed.
55
MemoryAccessingFUState
(
const
MemoryAccessingFUState
&);
56
/// Assignment not allowed.
57
MemoryAccessingFUState
&
operator=
(
const
MemoryAccessingFUState
&);
58
59
/// Memory wrapper instance.
60
Memory
&
memory_
;
61
62
/// The operation context for this FU.
63
OperationContext
operationContext_
;
64
65
};
66
67
#endif
MemoryAccessingFUState::operationContext_
OperationContext operationContext_
The operation context for this FU.
Definition:
MemoryAccessingFUState.hh:63
MemoryAccessingFUState::memory_
Memory & memory_
Memory wrapper instance.
Definition:
MemoryAccessingFUState.hh:60
OperationContext
Definition:
OperationContext.hh:56
FUState.hh
MemoryAccessingFUState::~MemoryAccessingFUState
virtual ~MemoryAccessingFUState()
Definition:
MemoryAccessingFUState.cc:73
FUState
Definition:
FUState.hh:58
MemoryAccessingFUState
Definition:
MemoryAccessingFUState.hh:44
MemoryAccessingFUState::context
virtual OperationContext & context()
Definition:
MemoryAccessingFUState.cc:85
MemoryAccessingFUState::MemoryAccessingFUState
MemoryAccessingFUState(Memory &memory)
Definition:
MemoryAccessingFUState.cc:47
TCEString
Definition:
TCEString.hh:53
MemoryAccessingFUState::operator=
MemoryAccessingFUState & operator=(const MemoryAccessingFUState &)
Assignment not allowed.
Memory
Definition:
Memory.hh:74
Generated by
1.8.17