revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / libs / mesa / src / gallium / auxiliary / rtasm / rtasm_execmem.c
blobfbde1d191a4315c88c51d9f500d64f96963051ff
1 /**************************************************************************
3 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 **************************************************************************/
25 /**
26 * \file exemem.c
27 * Functions for allocating executable memory.
29 * \author Keith Whitwell
33 #include "pipe/p_compiler.h"
34 #include "util/u_debug.h"
35 #include "os/os_thread.h"
36 #include "util/u_memory.h"
38 #include "rtasm_execmem.h"
40 #if defined(PIPE_OS_BSD)
41 #define MAP_ANONYMOUS MAP_ANON
42 #endif
44 #if defined(PIPE_OS_WINDOWS)
45 #ifndef WIN32_LEAN_AND_MEAN
46 #define WIN32_LEAN_AND_MEAN 1
47 #endif
48 #include <windows.h>
49 #endif
51 #if defined(PIPE_OS_LINUX) || defined(PIPE_OS_BSD) || defined(PIPE_OS_SOLARIS)
55 * Allocate a large block of memory which can hold code then dole it out
56 * in pieces by means of the generic memory manager code.
59 #include <unistd.h>
60 #include <sys/mman.h>
61 #include "util/u_mm.h"
63 #define EXEC_HEAP_SIZE (10*1024*1024)
65 pipe_static_mutex(exec_mutex);
67 static struct mem_block *exec_heap = NULL;
68 static unsigned char *exec_mem = NULL;
71 static void
72 init_heap(void)
74 if (!exec_heap)
75 exec_heap = u_mmInit( 0, EXEC_HEAP_SIZE );
77 if (!exec_mem)
78 exec_mem = (unsigned char *) mmap(0, EXEC_HEAP_SIZE,
79 PROT_EXEC | PROT_READ | PROT_WRITE,
80 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
84 void *
85 rtasm_exec_malloc(size_t size)
87 struct mem_block *block = NULL;
88 void *addr = NULL;
90 pipe_mutex_lock(exec_mutex);
92 init_heap();
94 if (exec_heap) {
95 size = (size + 31) & ~31; /* next multiple of 32 bytes */
96 block = u_mmAllocMem( exec_heap, size, 5, 0 ); /* 5 -> 32-byte alignment */
99 if (block)
100 addr = exec_mem + block->ofs;
101 else
102 debug_printf("rtasm_exec_malloc failed\n");
104 pipe_mutex_unlock(exec_mutex);
106 return addr;
110 void
111 rtasm_exec_free(void *addr)
113 pipe_mutex_lock(exec_mutex);
115 if (exec_heap) {
116 struct mem_block *block = u_mmFindBlock(exec_heap, (unsigned char *)addr - exec_mem);
118 if (block)
119 u_mmFreeMem(block);
122 pipe_mutex_unlock(exec_mutex);
126 #elif defined(PIPE_OS_WINDOWS)
130 * Avoid Data Execution Prevention.
133 void *
134 rtasm_exec_malloc(size_t size)
136 return VirtualAlloc(NULL, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
140 void
141 rtasm_exec_free(void *addr)
143 VirtualFree(addr, 0, MEM_RELEASE);
147 #else
151 * Just use regular memory.
154 void *
155 rtasm_exec_malloc(size_t size)
157 return MALLOC( size );
161 void
162 rtasm_exec_free(void *addr)
164 FREE(addr);
168 #endif