1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
// Copyright (c) 2009-2011, Tor M. Aamodt
// The University of British Columbia
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution. Neither the name of
// The University of British Columbia nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include "mem_fetch.h"
#include "gpu-sim.h"
#include "mem_latency_stat.h"
#include "shader.h"
#include "visualizer.h"
unsigned mem_fetch::sm_next_mf_request_uid = 1;
mem_fetch::mem_fetch(const mem_access_t &access, const warp_inst_t *inst,
unsigned long long streamID, unsigned ctrl_size,
unsigned wid, unsigned sid, unsigned tpc,
const memory_config *config, unsigned long long cycle,
mem_fetch *m_original_mf, mem_fetch *m_original_wr_mf)
: m_access(access)
{
m_request_uid = sm_next_mf_request_uid++;
m_access = access;
if (inst) {
m_inst = *inst;
assert(wid == m_inst.warp_id());
}
m_streamID = streamID;
m_data_size = access.get_size();
m_ctrl_size = ctrl_size;
m_sid = sid;
m_tpc = tpc;
m_wid = wid;
config->m_address_mapping.addrdec_tlx(access.get_addr(), &m_raw_addr);
m_partition_addr =
config->m_address_mapping.partition_address(access.get_addr());
m_type = m_access.is_write() ? WRITE_REQUEST : READ_REQUEST;
m_timestamp = cycle;
m_timestamp2 = 0;
m_status = MEM_FETCH_INITIALIZED;
m_status_change = cycle;
m_mem_config = config;
icnt_flit_size = config->icnt_flit_size;
original_mf = m_original_mf;
original_wr_mf = m_original_wr_mf;
if (m_original_mf) {
m_raw_addr.chip = m_original_mf->get_tlx_addr().chip;
m_raw_addr.sub_partition = m_original_mf->get_tlx_addr().sub_partition;
}
}
mem_fetch::~mem_fetch() { m_status = MEM_FETCH_DELETED; }
#define MF_TUP_BEGIN(X) static const char *Status_str[] = {
#define MF_TUP(X) #X
#define MF_TUP_END(X) \
} \
;
#include "mem_fetch_status.tup"
#undef MF_TUP_BEGIN
#undef MF_TUP
#undef MF_TUP_END
void mem_fetch::print(FILE *fp, bool print_inst) const {
// if (this == NULL) { // doenst make sense!
// fprintf(fp, " <NULL mem_fetch pointer>\n");
// return;
// }
fprintf(fp, " mf: uid=%6u, sid%02u:w%02u, part=%u, ", m_request_uid, m_sid,
m_wid, m_raw_addr.chip);
m_access.print(fp);
if ((unsigned)m_status < NUM_MEM_REQ_STAT)
fprintf(fp, " status = %s (%llu), ", Status_str[m_status], m_status_change);
else
fprintf(fp, " status = %u??? (%llu), ", m_status, m_status_change);
if (!m_inst.empty() && print_inst)
m_inst.print(fp);
else
fprintf(fp, "\n");
}
void mem_fetch::set_status(enum mem_fetch_status status,
unsigned long long cycle) {
m_status = status;
m_status_change = cycle;
}
bool mem_fetch::isatomic() const {
if (m_inst.empty()) return false;
return m_inst.isatomic();
}
void mem_fetch::do_atomic() { m_inst.do_atomic(m_access.get_warp_mask()); }
bool mem_fetch::istexture() const {
if (m_inst.empty()) return false;
return m_inst.space.get_type() == tex_space;
}
bool mem_fetch::isconst() const {
if (m_inst.empty()) return false;
return (m_inst.space.get_type() == const_space) ||
(m_inst.space.get_type() == param_space_kernel);
}
/// Returns number of flits traversing interconnect. simt_to_mem specifies the
/// direction
unsigned mem_fetch::get_num_flits(bool simt_to_mem) {
unsigned sz = 0;
// If atomic, write going to memory, or read coming back from memory, size =
// ctrl + data. Else, only ctrl
if (isatomic() || (simt_to_mem && get_is_write()) ||
!(simt_to_mem || get_is_write()))
sz = size();
else
sz = get_ctrl_size();
return (sz / icnt_flit_size) + ((sz % icnt_flit_size) ? 1 : 0);
}
|