blob: d3d7e26882d1146395e11336a5a3e6d38abeef4c [file] [log] [blame]
José Fonseca08dd41f2009-08-23 05:52:20 +01001/**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28/**
29 * @file
30 * C - JIT interfaces
31 *
32 * @author Jose Fonseca <jfonseca@vmware.com>
33 */
34
35
36#include <llvm-c/Transforms/Scalar.h>
37
José Fonsecac022e152009-08-23 06:35:09 +010038#include "util/u_memory.h"
José Fonseca7cda8ea2009-09-29 13:58:58 +010039#include "util/u_cpu_detect.h"
Brian Paul36a08192010-01-27 17:16:42 -070040#include "lp_debug.h"
José Fonseca08dd41f2009-08-23 05:52:20 +010041#include "lp_screen.h"
Zack Rusinc61bf362010-02-08 18:05:22 -050042#include "gallivm/lp_bld_intr.h"
José Fonseca08dd41f2009-08-23 05:52:20 +010043#include "lp_jit.h"
44
45
José Fonsecac022e152009-08-23 06:35:09 +010046static void
José Fonseca03180dc2009-08-23 07:55:29 +010047lp_jit_init_globals(struct llvmpipe_screen *screen)
José Fonsecac022e152009-08-23 06:35:09 +010048{
José Fonsecae4c76c02009-09-07 14:52:39 +010049 LLVMTypeRef texture_type;
50
51 /* struct lp_jit_texture */
José Fonsecac022e152009-08-23 06:35:09 +010052 {
José Fonseca635c37e2009-08-23 07:38:41 +010053 LLVMTypeRef elem_types[4];
José Fonsecae4c76c02009-09-07 14:52:39 +010054
55 elem_types[LP_JIT_TEXTURE_WIDTH] = LLVMInt32Type();
56 elem_types[LP_JIT_TEXTURE_HEIGHT] = LLVMInt32Type();
57 elem_types[LP_JIT_TEXTURE_STRIDE] = LLVMInt32Type();
58 elem_types[LP_JIT_TEXTURE_DATA] = LLVMPointerType(LLVMInt8Type(), 0);
59
60 texture_type = LLVMStructType(elem_types, Elements(elem_types), 0);
61
62 LP_CHECK_MEMBER_OFFSET(struct lp_jit_texture, width,
63 screen->target, texture_type,
64 LP_JIT_TEXTURE_WIDTH);
65 LP_CHECK_MEMBER_OFFSET(struct lp_jit_texture, height,
66 screen->target, texture_type,
67 LP_JIT_TEXTURE_HEIGHT);
68 LP_CHECK_MEMBER_OFFSET(struct lp_jit_texture, stride,
69 screen->target, texture_type,
70 LP_JIT_TEXTURE_STRIDE);
71 LP_CHECK_MEMBER_OFFSET(struct lp_jit_texture, data,
72 screen->target, texture_type,
73 LP_JIT_TEXTURE_DATA);
74 LP_CHECK_STRUCT_SIZE(struct lp_jit_texture,
75 screen->target, texture_type);
76
77 LLVMAddTypeName(screen->module, "texture", texture_type);
78 }
79
80 /* struct lp_jit_context */
81 {
Brian Paul44614422010-01-14 19:15:00 -070082 LLVMTypeRef elem_types[8];
José Fonsecac022e152009-08-23 06:35:09 +010083 LLVMTypeRef context_type;
84
85 elem_types[0] = LLVMPointerType(LLVMFloatType(), 0); /* constants */
Brian Paul44614422010-01-14 19:15:00 -070086 elem_types[1] = LLVMFloatType(); /* alpha_ref_value */ elem_types[2] = LLVMFloatType(); /* scissor_xmin */
87 elem_types[3] = LLVMFloatType(); /* scissor_ymin */
88 elem_types[4] = LLVMFloatType(); /* scissor_xmax */
89 elem_types[5] = LLVMFloatType(); /* scissor_ymax */
90 elem_types[6] = LLVMPointerType(LLVMInt8Type(), 0); /* blend_color */
91 elem_types[7] = LLVMArrayType(texture_type, PIPE_MAX_SAMPLERS); /* textures */
José Fonsecac022e152009-08-23 06:35:09 +010092
93 context_type = LLVMStructType(elem_types, Elements(elem_types), 0);
94
95 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, constants,
96 screen->target, context_type, 0);
José Fonseca635c37e2009-08-23 07:38:41 +010097 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, alpha_ref_value,
José Fonseca8081c1e2010-01-07 16:16:45 +000098 screen->target, context_type, 1);
Brian Paul44614422010-01-14 19:15:00 -070099 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, scissor_xmin,
José Fonseca8081c1e2010-01-07 16:16:45 +0000100 screen->target, context_type, 2);
Brian Paul44614422010-01-14 19:15:00 -0700101 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, scissor_ymin,
102 screen->target, context_type, 3);
103 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, scissor_xmax,
104 screen->target, context_type, 4);
105 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, scissor_ymax,
106 screen->target, context_type, 5);
107 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, blend_color,
108 screen->target, context_type, 6);
José Fonsecae4c76c02009-09-07 14:52:39 +0100109 LP_CHECK_MEMBER_OFFSET(struct lp_jit_context, textures,
110 screen->target, context_type,
111 LP_JIT_CONTEXT_TEXTURES_INDEX);
José Fonsecac022e152009-08-23 06:35:09 +0100112 LP_CHECK_STRUCT_SIZE(struct lp_jit_context,
113 screen->target, context_type);
114
115 LLVMAddTypeName(screen->module, "context", context_type);
116
117 screen->context_ptr_type = LLVMPointerType(context_type, 0);
118 }
119
120#ifdef DEBUG
121 LLVMDumpModule(screen->module);
122#endif
123}
124
125
José Fonseca08dd41f2009-08-23 05:52:20 +0100126void
127lp_jit_screen_cleanup(struct llvmpipe_screen *screen)
128{
129 if(screen->engine)
130 LLVMDisposeExecutionEngine(screen->engine);
131
132 if(screen->pass)
133 LLVMDisposePassManager(screen->pass);
134}
135
136
137void
138lp_jit_screen_init(struct llvmpipe_screen *screen)
139{
140 char *error = NULL;
141
José Fonseca7cda8ea2009-09-29 13:58:58 +0100142 util_cpu_detect();
143
José Fonsecabaddcbc2009-09-29 17:26:20 +0100144#if 0
145 /* For simulating less capable machines */
146 util_cpu_caps.has_sse3 = 0;
José Fonseca953b74d2009-11-26 11:16:19 +0000147 util_cpu_caps.has_ssse3 = 0;
José Fonsecabaddcbc2009-09-29 17:26:20 +0100148 util_cpu_caps.has_sse4_1 = 0;
149#endif
150
José Fonseca1df539c2009-09-26 09:33:32 +0100151 LLVMLinkInJIT();
152 LLVMInitializeNativeTarget();
José Fonseca1df539c2009-09-26 09:33:32 +0100153
José Fonseca08dd41f2009-08-23 05:52:20 +0100154 screen->module = LLVMModuleCreateWithName("llvmpipe");
155
156 screen->provider = LLVMCreateModuleProviderForExistingModule(screen->module);
157
158 if (LLVMCreateJITCompiler(&screen->engine, screen->provider, 1, &error)) {
José Fonseca459ea002009-09-16 10:39:06 +0100159 _debug_printf("%s\n", error);
José Fonseca08dd41f2009-08-23 05:52:20 +0100160 LLVMDisposeMessage(error);
José Fonseca4ae3e882009-11-23 11:21:11 +0000161 assert(0);
José Fonseca08dd41f2009-08-23 05:52:20 +0100162 }
163
José Fonsecac022e152009-08-23 06:35:09 +0100164 screen->target = LLVMGetExecutionEngineTargetData(screen->engine);
165
José Fonseca08dd41f2009-08-23 05:52:20 +0100166 screen->pass = LLVMCreateFunctionPassManager(screen->provider);
José Fonsecac022e152009-08-23 06:35:09 +0100167 LLVMAddTargetData(screen->target, screen->pass);
Brian Paul36a08192010-01-27 17:16:42 -0700168
169 if ((LP_DEBUG & DEBUG_NO_LLVM_OPT) == 0) {
170 /* These are the passes currently listed in llvm-c/Transforms/Scalar.h,
171 * but there are more on SVN. */
172 /* TODO: Add more passes */
173 LLVMAddConstantPropagationPass(screen->pass);
174 if(util_cpu_caps.has_sse4_1) {
175 /* FIXME: There is a bug in this pass, whereby the combination of fptosi
176 * and sitofp (necessary for trunc/floor/ceil/round implementation)
177 * somehow becomes invalid code.
178 */
179 LLVMAddInstructionCombiningPass(screen->pass);
180 }
181 LLVMAddPromoteMemoryToRegisterPass(screen->pass);
182 LLVMAddGVNPass(screen->pass);
183 LLVMAddCFGSimplificationPass(screen->pass);
José Fonsecabaddcbc2009-09-29 17:26:20 +0100184 }
José Fonsecac022e152009-08-23 06:35:09 +0100185
José Fonseca03180dc2009-08-23 07:55:29 +0100186 lp_jit_init_globals(screen);
José Fonseca08dd41f2009-08-23 05:52:20 +0100187}