Merge remote branch 'origin/7.8'
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_init.c
1 /**************************************************************************
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 #include "pipe/p_compiler.h"
30 #include "util/u_debug.h"
31 #include "lp_bld_init.h"
32
33
34 LLVMModuleRef lp_build_module = NULL;
35 LLVMExecutionEngineRef lp_build_engine = NULL;
36 LLVMModuleProviderRef lp_build_provider = NULL;
37 LLVMTargetDataRef lp_build_target = NULL;
38
39
40 void
41 lp_build_init(void)
42 {
43 LLVMInitializeNativeTarget();
44
45 LLVMLinkInJIT();
46
47 if (!lp_build_module)
48 lp_build_module = LLVMModuleCreateWithName("gallivm");
49
50 if (!lp_build_provider)
51 lp_build_provider = LLVMCreateModuleProviderForExistingModule(lp_build_module);
52
53 if (!lp_build_engine) {
54 char *error = NULL;
55
56 if (LLVMCreateJITCompiler(&lp_build_engine, lp_build_provider, 1, &error)) {
57 _debug_printf("%s\n", error);
58 LLVMDisposeMessage(error);
59 assert(0);
60 }
61 }
62
63 if (!lp_build_target)
64 lp_build_target = LLVMGetExecutionEngineTargetData(lp_build_engine);
65 }
66
67
68 /*
69 * Hack to allow the linking of release LLVM static libraries on a debug build.
70 *
71 * See also:
72 * - http://social.msdn.microsoft.com/Forums/en-US/vclanguage/thread/7234ea2b-0042-42ed-b4e2-5d8644dfb57d
73 */
74 #if defined(_MSC_VER) && defined(_DEBUG)
75 #include <crtdefs.h>
76 _CRTIMP void __cdecl
77 _invalid_parameter_noinfo(void) {}
78 #endif