summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/pipebuffer/pb_validate.c
blob: a0a0965a46269dd419e2a3148256f482b04ad83b (plain)
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
/**************************************************************************
 *
 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
 * All Rights Reserved.
 *
 * 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, sub license, 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 (including the
 * next paragraph) 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 NON-INFRINGEMENT.
 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS 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.
 *
 **************************************************************************/

/**
 * @file
 * Buffer validation.
 * 
 * @author Jose Fonseca <jrfonseca@tungstengraphics.com>
 */


#include "pipe/p_compiler.h"
#include "pipe/p_error.h"
#include "pipe/p_util.h"
#include "pipe/p_debug.h"

#include "util/u_hash_table.h"

#include "pb_buffer.h"
#include "pb_buffer_fenced.h"


struct pb_validate
{
   struct hash_table *buffer_table;
};


static unsigned buffer_table_hash(void *pb_buf) 
{
   return (unsigned)(uintptr_t)pb_buf;
}


static int buffer_table_compare(void *pb_buf1, void *pb_buf2)
{
   return (char *)pb_buf2 - (char *)pb_buf1; 
}


enum pipe_error
pb_validate_add_buffer(struct pb_validate *vl,
                       struct pb_buffer *buf)
{
   enum pipe_error ret;
   
   assert(buf);
   if(!buf)
      return PIPE_ERROR;
   
   if(!hash_table_get(vl->buffer_table, buf)) {
      struct pb_buffer *tmp = NULL;
      
      ret = hash_table_set(vl->buffer_table, buf, buf);
      if(ret != PIPE_OK)
	 return ret;
      
      /* Increment reference count */
      pb_reference(&tmp, buf);
   }
   
   return PIPE_OK;
}


enum pipe_error
pb_validate_validate(struct pb_validate *vl) 
{
   /* FIXME: go through each buffer, ensure its not mapped, its address is 
    * available -- requires a new pb_buffer interface */
   return PIPE_OK;
}


struct pb_validate_fence_data {
   struct pb_validate *vl;
   struct pipe_fence_handle *fence;
};


static enum pipe_error
pb_validate_fence_cb(void *key, void *value, void *_data) 
{
   struct pb_buffer *buf = (struct pb_buffer *)key;
   struct pb_validate_fence_data *data = (struct pb_validate_fence_data *)_data;
   struct pb_validate *vl = data->vl;
   struct pipe_fence_handle *fence = data->fence;
   
   assert(value == key);
   
   buffer_fence(buf, fence);
   
   /* Decrement the reference count -- table entry destroyed later */
   pb_reference(&buf, NULL);
   
   return PIPE_OK;
}


void
pb_validate_fence(struct pb_validate *vl,
                  struct pipe_fence_handle *fence)
{
   struct pb_validate_fence_data data;
   
   data.vl = vl;
   data.fence = fence;
   
   hash_table_foreach(vl->buffer_table, 
                      pb_validate_fence_cb, 
                      &data);

   /* FIXME: cso_hash shrinks here, which is not desirable in this use case, 
    * as it will be refilled right soon */ 
   hash_table_clear(vl->buffer_table);
}


void
pb_validate_destroy(struct pb_validate *vl)
{
   pb_validate_fence(vl, NULL);
   hash_table_destroy(vl->buffer_table);
   FREE(vl);
}


struct pb_validate *
pb_validate_create()
{
   struct pb_validate *vl;
   
   vl = CALLOC_STRUCT(pb_validate);
   if(!vl)
      return NULL;
   
   vl->buffer_table = hash_table_create(buffer_table_hash,
                                        buffer_table_compare);
   if(!vl->buffer_table) {
      FREE(vl);
      return NULL;
   }

   return vl;
}