gem5  v20.0.0.3
cl_driver.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2015 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its contributors
18  * may be used to endorse or promote products derived from this software
19  * without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  * Author: Anthony Gutierrez
34  */
35 
36 #include "gpu-compute/cl_driver.hh"
37 
38 #include <memory>
39 
40 #include "base/intmath.hh"
41 #include "cpu/thread_context.hh"
43 #include "gpu-compute/hsa_code.hh"
46 #include "params/ClDriver.hh"
47 #include "sim/process.hh"
48 #include "sim/syscall_emul_buf.hh"
49 
50 ClDriver::ClDriver(ClDriverParams *p)
51  : EmulatedDriver(p), hsaCode(0)
52 {
53  for (const auto &codeFile : p->codefile)
54  codeFiles.push_back(&codeFile);
55 
56  maxFuncArgsSize = 0;
57 
58  for (int i = 0; i < codeFiles.size(); ++i) {
60 
61  for (int k = 0; k < obj->numKernels(); ++k) {
62  assert(obj->getKernel(k));
63  kernels.push_back(obj->getKernel(k));
64  kernels.back()->setReadonlyData((uint8_t*)obj->readonlyData);
65  int kern_funcargs_size = kernels.back()->funcarg_size;
66  maxFuncArgsSize = maxFuncArgsSize < kern_funcargs_size ?
67  kern_funcargs_size : maxFuncArgsSize;
68  }
69  }
70 
71  int name_offs = 0;
72  int code_offs = 0;
73 
74  for (int i = 0; i < kernels.size(); ++i) {
75  kernelInfo.push_back(HsaKernelInfo());
76  HsaCode *k = kernels[i];
77 
79 
80  kernelInfo[i].name_offs = name_offs;
81  kernelInfo[i].code_offs = code_offs;
82 
83  name_offs += k->name().size() + 1;
84  code_offs += k->numInsts() * sizeof(TheGpuISA::RawMachInst);
85  }
86 }
87 
88 void
90 {
91  dispatcher = _dispatcher;
93 }
94 
95 int
96 ClDriver::open(ThreadContext *tc, int mode, int flags)
97 {
98  auto p = tc->getProcessPtr();
99  std::shared_ptr<DeviceFDEntry> fdp;
100  fdp = std::make_shared<DeviceFDEntry>(this, filename);
101  int tgt_fd = p->fds->allocFD(fdp);
102  return tgt_fd;
103 }
104 
105 int
106 ClDriver::ioctl(ThreadContext *tc, unsigned req, Addr buf_addr)
107 {
108  switch (req) {
109  case HSA_GET_SIZES:
110  {
111  TypedBufferArg<HsaDriverSizes> sizes(buf_addr);
112  sizes->num_kernels = kernels.size();
113  sizes->string_table_size = 0;
114  sizes->code_size = 0;
115  sizes->readonly_size = 0;
116 
117  if (kernels.size() > 0) {
118  // all kernels will share the same read-only memory
119  sizes->readonly_size =
121  // check our assumption
122  for (int i = 1; i<kernels.size(); ++i) {
123  assert(sizes->readonly_size ==
125  }
126  }
127 
128  for (int i = 0; i < kernels.size(); ++i) {
129  HsaCode *k = kernels[i];
130  // add one for terminating '\0'
131  sizes->string_table_size += k->name().size() + 1;
132  sizes->code_size +=
133  k->numInsts() * sizeof(TheGpuISA::RawMachInst);
134  }
135 
136  sizes.copyOut(tc->getVirtProxy());
137  }
138  break;
139 
140  case HSA_GET_KINFO:
141  {
143  kinfo(buf_addr, sizeof(HsaKernelInfo) * kernels.size());
144 
145  for (int i = 0; i < kernels.size(); ++i) {
146  HsaKernelInfo *ki = &kinfo[i];
147  ki->name_offs = kernelInfo[i].name_offs;
148  ki->code_offs = kernelInfo[i].code_offs;
149  ki->sRegCount = kernelInfo[i].sRegCount;
150  ki->dRegCount = kernelInfo[i].dRegCount;
151  ki->cRegCount = kernelInfo[i].cRegCount;
152  ki->static_lds_size = kernelInfo[i].static_lds_size;
153  ki->private_mem_size = kernelInfo[i].private_mem_size;
154  ki->spill_mem_size = kernelInfo[i].spill_mem_size;
155  }
156 
157  kinfo.copyOut(tc->getVirtProxy());
158  }
159  break;
160 
161  case HSA_GET_STRINGS:
162  {
163  int string_table_size = 0;
164  for (int i = 0; i < kernels.size(); ++i) {
165  HsaCode *k = kernels[i];
166  string_table_size += k->name().size() + 1;
167  }
168 
169  BufferArg buf(buf_addr, string_table_size);
170  char *bufp = (char*)buf.bufferPtr();
171 
172  for (int i = 0; i < kernels.size(); ++i) {
173  HsaCode *k = kernels[i];
174  const char *n = k->name().c_str();
175 
176  // idiomatic string copy
177  while ((*bufp++ = *n++));
178  }
179 
180  assert(bufp - (char *)buf.bufferPtr() == string_table_size);
181 
182  buf.copyOut(tc->getVirtProxy());
183  }
184  break;
185 
187  {
188  // we can pick any kernel --- they share the same
189  // readonly segment (this assumption is checked in GET_SIZES)
190  uint64_t size =
191  kernels.back()->getSize(HsaCode::MemorySegment::READONLY);
192  BufferArg data(buf_addr, size);
193  char *datap = (char *)data.bufferPtr();
194  memcpy(datap,
195  kernels.back()->readonly_data,
196  size);
197  data.copyOut(tc->getVirtProxy());
198  }
199  break;
200 
201  case HSA_GET_CODE:
202  {
203  // set hsaCode pointer
204  hsaCode = buf_addr;
205  int code_size = 0;
206 
207  for (int i = 0; i < kernels.size(); ++i) {
208  HsaCode *k = kernels[i];
209  code_size += k->numInsts() * sizeof(TheGpuISA::RawMachInst);
210  }
211 
212  TypedBufferArg<TheGpuISA::RawMachInst> buf(buf_addr, code_size);
213  TheGpuISA::RawMachInst *bufp = buf;
214 
215  int buf_idx = 0;
216 
217  for (int i = 0; i < kernels.size(); ++i) {
218  HsaCode *k = kernels[i];
219 
220  for (int j = 0; j < k->numInsts(); ++j) {
221  bufp[buf_idx] = k->insts()->at(j);
222  ++buf_idx;
223  }
224  }
225 
226  buf.copyOut(tc->getVirtProxy());
227  }
228  break;
229 
230  case HSA_GET_CU_CNT:
231  {
232  BufferArg buf(buf_addr, sizeof(uint32_t));
233  *((uint32_t*)buf.bufferPtr()) = dispatcher->getNumCUs();
234  buf.copyOut(tc->getVirtProxy());
235  }
236  break;
237 
238  case HSA_GET_VSZ:
239  {
240  BufferArg buf(buf_addr, sizeof(uint32_t));
241  *((uint32_t*)buf.bufferPtr()) = dispatcher->wfSize();
242  buf.copyOut(tc->getVirtProxy());
243  }
244  break;
246  {
247  BufferArg buf(buf_addr, sizeof(uint32_t));
248  *((uint32_t*)buf.bufferPtr()) = dispatcher->getStaticContextSize();
249  buf.copyOut(tc->getVirtProxy());
250  }
251  break;
252 
253  default:
254  fatal("ClDriver: bad ioctl %d\n", req);
255  }
256 
257  return 0;
258 }
259 
260 const char*
262 {
263  assert(hsaCode);
264  uint32_t code_offs = code_ptr - hsaCode;
265 
266  for (int i = 0; i < kernels.size(); ++i) {
267  if (code_offs == kernelInfo[i].code_offs) {
268  return kernels[i]->name().c_str();
269  }
270  }
271 
272  return nullptr;
273 }
274 
275 ClDriver*
276 ClDriverParams::create()
277 {
278  return new ClDriver(this);
279 }
This file defines buffer classes used to handle pointer arguments in emulated syscalls.
std::vector< TheGpuISA::RawMachInst > * insts()
Definition: hsa_code.hh:78
int maxFuncArgsSize
Definition: cl_driver.hh:72
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:171
Bitfield< 7 > i
uint32_t getStaticContextSize() const
Returns the size of the static hardware context of a wavefront.
Definition: dispatcher.cc:386
uint32_t spill_mem_size
uint32_t string_table_size
static const int HSA_GET_STRINGS
uint32_t code_offs
virtual void generateHsaKernelInfo(HsaKernelInfo *hsaKernelInfo) const =0
int numInsts() const
Definition: hsa_code.hh:77
virtual PortProxy & getVirtProxy()=0
virtual Process * getProcessPtr()=0
void handshake(GpuDispatcher *_dispatcher)
Definition: cl_driver.cc:89
void setFuncargsSize(int funcargs_size)
Definition: dispatcher.cc:380
static const int HSA_GET_KINFO
uint32_t name_offs
uint32_t readonly_size
Bitfield< 4, 0 > mode
const std::string & name() const
Definition: hsa_code.hh:76
uint32_t static_lds_size
TypedBufferArg is a class template; instances of this template represent typed buffers in target user...
ThreadContext is the external interface to all thread state for anything outside of the CPU...
static const int HSA_GET_HW_STATIC_CONTEXT_SIZE
uint64_t hsaCode
Definition: cl_driver.hh:74
int wfSize() const
Definition: dispatcher.cc:374
Bitfield< 31 > n
uint32_t dRegCount
uint8_t * readonlyData
Definition: hsa_object.hh:67
uint32_t num_kernels
static HsaObject * createHsaObject(const std::string &fname)
Definition: hsa_object.cc:49
Bitfield< 23 > k
Definition: dt_constants.hh:78
void * bufferPtr()
Return a pointer to the internal simulator-space buffer.
int ioctl(ThreadContext *tc, unsigned req, Addr buf)
Abstract method, invoked when the user program calls ioctl() on the file descriptor returned by a pre...
Definition: cl_driver.cc:106
const char * codeOffToKernelName(uint64_t code_ptr)
Definition: cl_driver.cc:261
uint32_t private_mem_size
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
static const int HSA_GET_CODE
static const int HSA_GET_READONLY_DATA
Bitfield< 24 > j
std::vector< const std::string * > codeFiles
Definition: cl_driver.hh:63
std::vector< HsaCode * > kernels
Definition: cl_driver.hh:66
int open(ThreadContext *tc, int mode, int flags)
Abstract method, invoked when the user program calls open() on the device driver. ...
Definition: cl_driver.cc:96
static const int HSA_GET_SIZES
uint32_t cRegCount
const std::string & filename
filename for opening this driver (under /dev)
Definition: emul_driver.hh:58
static const int HSA_GET_CU_CNT
static const int HSA_GET_VSZ
bool copyOut(PortProxy &memproxy)
copy data out of simulator space (write to target memory)
virtual int numKernels() const =0
GpuDispatcher * dispatcher
Definition: cl_driver.hh:61
ClDriver(ClDriverParams *p)
Definition: cl_driver.cc:50
uint64_t RawMachInst
used to represnt a GPU inst in its raw format.
Definition: gpu_types.hh:43
BufferArg represents an untyped buffer in target user space that is passed by reference to an (emulat...
EmulatedDriver is an abstract base class for fake SE-mode device drivers.
Definition: emul_driver.hh:52
virtual HsaCode * getKernel(const std::string &name) const =0
uint32_t sRegCount
Bitfield< 0 > p
const char data[]
std::vector< HsaKernelInfo > kernelInfo
Definition: cl_driver.hh:69

Generated on Fri Jul 3 2020 15:53:02 for gem5 by doxygen 1.8.13