~ubuntu-branches/ubuntu/natty/mesa/natty-proposed

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/util/u_mempool.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Hooker, Robert Hooker, Christopher James Halse Rogers
  • Date: 2010-09-14 08:55:40 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100914085540-m4fpl0hdjlfd4jgz
Tags: 7.9~git20100909-0ubuntu1
[ Robert Hooker ]
* New upstream git snapshot up to commit 94118fe2d4b1e5 (LP: #631413)
* New features include ATI HD5xxx series support in r600, and a vastly
  improved glsl compiler.
* Remove pre-generated .pc's, use the ones generated at build time
  instead.
* Remove all references to mesa-utils now that its no longer shipped
  with the mesa source.
* Disable the experimental ARB_fragment_shader option by default on
  i915, it exposes incomplete functionality that breaks KDE compositing
  among other things. It can be enabled via driconf still. (LP: #628930).

[ Christopher James Halse Rogers ]
* debian/patches/04_osmesa_version.diff:
  - Refresh for new upstream
* Bugs fixed in this release:
  - Fixes severe rendering corruption in Unity on radeon (LP: #628727,
    LP: #596292, LP: #599741, LP: #630315, LP: #613694, LP: #599741).
  - Also fixes rendering in gnome-shell (LP: #578619).
  - Flickering in OpenGL apps on radeon (LP: #626943, LP: #610541).
  - Provides preliminary support for new intel chips (LP: #601052).
* debian/rules:
  - Update configure flags to match upstream reshuffling.
  - Explicitly remove gallium DRI drivers that we don't want to ship.
* Update debian/gbp.conf for this Maverick-specific packaging
* libegl1-mesa-dri-x11,kms: There are no longer separate kms or x11 drivers
  for EGL, libegl1-mesa-drivers now contains a single driver that provides
  both backends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2010 Marek Olšák <maraeo@gmail.com>
 
3
 *
 
4
 * Permission is hereby granted, free of charge, to any person obtaining a
 
5
 * copy of this software and associated documentation files (the "Software"),
 
6
 * to deal in the Software without restriction, including without limitation
 
7
 * on the rights to use, copy, modify, merge, publish, distribute, sub
 
8
 * license, and/or sell copies of the Software, and to permit persons to whom
 
9
 * the Software is furnished to do so, subject to the following conditions:
 
10
 *
 
11
 * The above copyright notice and this permission notice (including the next
 
12
 * paragraph) shall be included in all copies or substantial portions of the
 
13
 * Software.
 
14
 *
 
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
 
18
 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
 
19
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 
20
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 
21
 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
 
22
 
 
23
/**
 
24
 * @file
 
25
 * Simple memory pool for equally sized memory allocations.
 
26
 * util_mempool_malloc and util_mempool_free are in O(1).
 
27
 *
 
28
 * Good for allocations which have very low lifetime and are allocated
 
29
 * and freed very often. Use a profiler first!
 
30
 *
 
31
 * Candidates: get_transfer, user_buffer_create
 
32
 *
 
33
 * @author Marek Olšák
 
34
 */
 
35
 
 
36
#ifndef U_MEMPOOL_H
 
37
#define U_MEMPOOL_H
 
38
 
 
39
#include "os/os_thread.h"
 
40
 
 
41
enum util_mempool_threading {
 
42
   UTIL_MEMPOOL_SINGLETHREADED = FALSE,
 
43
   UTIL_MEMPOOL_MULTITHREADED = TRUE
 
44
};
 
45
 
 
46
/* The page is an array of blocks (allocations). */
 
47
struct util_mempool_page {
 
48
   /* The header (linked-list pointers). */
 
49
   struct util_mempool_page *prev, *next;
 
50
 
 
51
   /* Memory after the last member is dedicated to the page itself.
 
52
    * The allocated size is always larger than this structure. */
 
53
};
 
54
 
 
55
struct util_mempool {
 
56
   /* Public members. */
 
57
   void *(*malloc)(struct util_mempool *pool);
 
58
   void (*free)(struct util_mempool *pool, void *ptr);
 
59
 
 
60
   /* Private members. */
 
61
   struct util_mempool_block *first_free;
 
62
 
 
63
   struct util_mempool_page list;
 
64
 
 
65
   unsigned block_size;
 
66
   unsigned page_size;
 
67
   unsigned num_blocks;
 
68
   unsigned num_pages;
 
69
   enum util_mempool_threading threading;
 
70
 
 
71
   pipe_mutex mutex;
 
72
};
 
73
 
 
74
void util_mempool_create(struct util_mempool *pool,
 
75
                         unsigned item_size,
 
76
                         unsigned num_blocks,
 
77
                         enum util_mempool_threading threading);
 
78
 
 
79
void util_mempool_destroy(struct util_mempool *pool);
 
80
 
 
81
void util_mempool_set_thread_safety(struct util_mempool *pool,
 
82
                                    enum util_mempool_threading threading);
 
83
 
 
84
#define util_mempool_malloc(pool)    (pool)->malloc(pool)
 
85
#define util_mempool_free(pool, ptr) (pool)->free(pool, ptr)
 
86
 
 
87
#endif