blob: 6e79438ead073dadb4fc621e2a4687ddd4742cde [file] [log] [blame]
José Fonseca182ff3e2009-10-28 11:05:32 +00001/**************************************************************************
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
José Fonseca182ff3e2009-10-28 11:05:32 +000029#include "pipe/p_config.h"
30
31#include "lp_bld_misc.h"
32
33
34#ifndef LLVM_NATIVE_ARCH
35
36namespace llvm {
37 extern void LinkInJIT();
38}
39
40
41void
42LLVMLinkInJIT(void)
43{
44 llvm::LinkInJIT();
45}
46
47
48extern "C" int X86TargetMachineModule;
49
50
José Fonseca96e938f2009-11-06 15:08:05 +000051int
José Fonseca182ff3e2009-10-28 11:05:32 +000052LLVMInitializeNativeTarget(void)
53{
54#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
José Fonseca96e938f2009-11-06 15:08:05 +000055 X86TargetMachineModule = 1;
José Fonseca182ff3e2009-10-28 11:05:32 +000056#endif
José Fonseca96e938f2009-11-06 15:08:05 +000057 return 0;
José Fonseca182ff3e2009-10-28 11:05:32 +000058}
59
60
61#endif
José Fonsecacdc11052010-01-10 11:20:11 +000062
63
64/*
65 * Hack to allow the linking of release LLVM static libraries on a debug build.
66 *
67 * See also:
68 * - http://social.msdn.microsoft.com/Forums/en-US/vclanguage/thread/7234ea2b-0042-42ed-b4e2-5d8644dfb57d
69 */
70#if defined(_MSC_VER) && defined(_DEBUG)
71#include <crtdefs.h>
72extern "C" {
73 _CRTIMP void __cdecl _invalid_parameter_noinfo(void) {}
74}
75#endif