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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/* OpenCL runtime library: clEnqueueMapBuffer()
Copyright (c) 2012 Pekka Jääskeläinen / Tampere University of Technology
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "pocl_cl.h"
#include "utlist.h"
#include <assert.h>
#include "pocl_util.h"
#include "pocl_shared.h"
CL_API_ENTRY void * CL_API_CALL
POname(clEnqueueMapBuffer)(cl_command_queue command_queue,
cl_mem buffer,
cl_bool blocking_map,
cl_map_flags map_flags,
size_t offset,
size_t size,
cl_uint num_events_in_wait_list,
const cl_event * event_wait_list,
cl_event * event,
cl_int * errcode_ret) CL_API_SUFFIX__VERSION_1_0
{
cl_int errcode = CL_SUCCESS;
cl_device_id device = NULL;
mem_mapping_t *mapping_info = NULL;
unsigned i;
_cl_command_node *cmd = NULL;
/* need to release the memobject before returning? */
int must_release = 0;
POCL_GOTO_ERROR_COND ((!IS_CL_OBJECT_VALID (command_queue)),
CL_INVALID_COMMAND_QUEUE);
POCL_GOTO_ERROR_COND ((*(command_queue->device->available) == CL_FALSE),
CL_DEVICE_NOT_AVAILABLE);
POCL_GOTO_ERROR_COND ((!IS_CL_OBJECT_VALID (buffer)), CL_INVALID_MEM_OBJECT);
POCL_GOTO_ON_SUB_MISALIGN (buffer, command_queue);
POCL_GOTO_ERROR_COND((size == 0), CL_INVALID_VALUE);
POCL_GOTO_ERROR_ON((buffer->type != CL_MEM_OBJECT_BUFFER),
CL_INVALID_MEM_OBJECT, "buffer is not a CL_MEM_OBJECT_BUFFER\n");
POCL_GOTO_ERROR_ON((command_queue->context != buffer->context),
CL_INVALID_CONTEXT, "buffer and command_queue are not from the same context\n");
errcode = pocl_check_event_wait_list (command_queue, num_events_in_wait_list,
event_wait_list);
if (errcode != CL_SUCCESS)
goto ERROR;
errcode = pocl_buffer_boundcheck(buffer, offset, size);
if (errcode != CL_SUCCESS)
goto ERROR;
POCL_GOTO_ERROR_ON((buffer->flags & (CL_MEM_HOST_WRITE_ONLY | CL_MEM_HOST_NO_ACCESS) &&
map_flags & CL_MAP_READ), CL_INVALID_OPERATION, "buffer has been created with "
"CL_MEM_HOST_WRITE_ONLY or CL_MEM_HOST_NO_ACCESS and CL_MAP_READ is set in map_flags\n");
POCL_GOTO_ERROR_ON((buffer->flags & (CL_MEM_HOST_READ_ONLY | CL_MEM_HOST_NO_ACCESS) &&
map_flags & (CL_MAP_WRITE | CL_MAP_WRITE_INVALIDATE_REGION)), CL_INVALID_OPERATION,
"buffer has been created with CL_MEM_HOST_READ_ONL or CL_MEM_HOST_NO_ACCESS "
"and CL_MAP_WRITE or CL_MAP_WRITE_INVALIDATE_REGION is set in map_flags\n");
POCL_CHECK_DEV_IN_CMDQ;
POCL_CONVERT_SUBBUFFER_OFFSET (buffer, offset);
POCL_GOTO_ERROR_ON((buffer->size > command_queue->device->max_mem_alloc_size),
CL_OUT_OF_RESOURCES,
"buffer is larger than device's MAX_MEM_ALLOC_SIZE\n");
mapping_info = (mem_mapping_t*) calloc (1, sizeof (mem_mapping_t));
POCL_GOTO_ERROR_COND ((mapping_info == NULL), CL_OUT_OF_HOST_MEMORY);
pocl_mem_identifier *mem_id = &buffer->device_ptrs[device->global_mem_id];
POCL_LOCK_OBJ (buffer);
/* increment refcount, actually twice (one happens in pocl_create_command):
one is for duration of Map command, and is implicitly decreased
after EnqueueMap is finished; the other one is for the duration
of mapping, and is decreased by UnMap. */
POCL_RETAIN_OBJECT_UNLOCKED (buffer);
must_release = 1;
mapping_info->map_flags = map_flags;
mapping_info->offset = offset;
mapping_info->size = size;
/* because cl_mems are per-context, PoCL delays allocation of
* cl_mem backing memory until it knows which device will need it,
* so the cl_mem might not yet be allocated on this device. However,
* some drivers can avoid unnecessary host memory usage if we
* allocate it now. We can assume it will be used on this device. */
pocl_mem_identifier *p = &buffer->device_ptrs[device->global_mem_id];
if (p->mem_ptr == NULL)
errcode = device->ops->alloc_mem_obj (device, buffer, NULL);
if (errcode == CL_SUCCESS)
errcode = device->ops->get_mapping_ptr (device->data, mem_id, buffer,
mapping_info);
DL_APPEND (buffer->mappings, mapping_info);
++buffer->map_count;
POCL_UNLOCK_OBJ (buffer);
if (errcode != CL_SUCCESS)
goto ERROR;
char rdonly = (map_flags & CL_MAP_READ);
errcode = pocl_create_command (&cmd, command_queue, CL_COMMAND_MAP_BUFFER,
event, num_events_in_wait_list,
event_wait_list, 1, &buffer, &rdonly);
if (errcode != CL_SUCCESS)
goto ERROR;
cmd->command.map.mem_id = mem_id;
cmd->command.map.mapping = mapping_info;
POCL_MSG_PRINT_MEMORY ("Buffer %p New Mapping: host_ptr %p offset %zu\n",
buffer, mapping_info->host_ptr, mapping_info->offset);
pocl_command_enqueue (command_queue, cmd);
if (blocking_map)
{
POname (clFinish) (command_queue);
}
if (errcode_ret)
*errcode_ret = CL_SUCCESS;
return mapping_info->host_ptr;
ERROR:
if (must_release)
{
POCL_LOCK_OBJ (buffer);
assert (mapping_info);
if (mapping_info->host_ptr)
device->ops->free_mapping_ptr (device->data, mem_id, buffer,
mapping_info);
DL_DELETE (buffer->mappings, mapping_info);
--buffer->map_count;
POCL_UNLOCK_OBJ (buffer);
POname (clReleaseMemObject) (buffer);
}
POCL_MEM_FREE (mapping_info);
POCL_MEM_FREE (cmd);
if (errcode_ret)
*errcode_ret = errcode;
return NULL;
}
POsym(clEnqueueMapBuffer)
|