Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/auxiliary/gallivm/lp_bld_init.c
4565 views
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_config.h"
30
#include "pipe/p_compiler.h"
31
#include "util/u_cpu_detect.h"
32
#include "util/u_debug.h"
33
#include "util/u_memory.h"
34
#include "util/simple_list.h"
35
#include "util/os_time.h"
36
#include "lp_bld.h"
37
#include "lp_bld_debug.h"
38
#include "lp_bld_misc.h"
39
#include "lp_bld_init.h"
40
41
#include <llvm/Config/llvm-config.h>
42
#include <llvm-c/Analysis.h>
43
#include <llvm-c/Transforms/Scalar.h>
44
#if LLVM_VERSION_MAJOR >= 7
45
#include <llvm-c/Transforms/Utils.h>
46
#endif
47
#include <llvm-c/BitWriter.h>
48
#if GALLIVM_HAVE_CORO
49
#if LLVM_VERSION_MAJOR <= 8 && (defined(PIPE_ARCH_AARCH64) || defined (PIPE_ARCH_ARM) || defined(PIPE_ARCH_S390))
50
#include <llvm-c/Transforms/IPO.h>
51
#endif
52
#include <llvm-c/Transforms/Coroutines.h>
53
#endif
54
55
unsigned gallivm_perf = 0;
56
57
static const struct debug_named_value lp_bld_perf_flags[] = {
58
{ "no_brilinear", GALLIVM_PERF_NO_BRILINEAR, "disable brilinear optimization" },
59
{ "no_rho_approx", GALLIVM_PERF_NO_RHO_APPROX, "disable rho_approx optimization" },
60
{ "no_quad_lod", GALLIVM_PERF_NO_QUAD_LOD, "disable quad_lod optimization" },
61
{ "no_aos_sampling", GALLIVM_PERF_NO_AOS_SAMPLING, "disable aos sampling optimization" },
62
{ "nopt", GALLIVM_PERF_NO_OPT, "disable optimization passes to speed up shader compilation" },
63
{ "no_filter_hacks", GALLIVM_PERF_NO_BRILINEAR | GALLIVM_PERF_NO_RHO_APPROX |
64
GALLIVM_PERF_NO_QUAD_LOD, "disable filter optimization hacks" },
65
DEBUG_NAMED_VALUE_END
66
};
67
68
#ifdef DEBUG
69
unsigned gallivm_debug = 0;
70
71
static const struct debug_named_value lp_bld_debug_flags[] = {
72
{ "tgsi", GALLIVM_DEBUG_TGSI, NULL },
73
{ "ir", GALLIVM_DEBUG_IR, NULL },
74
{ "asm", GALLIVM_DEBUG_ASM, NULL },
75
{ "perf", GALLIVM_DEBUG_PERF, NULL },
76
{ "gc", GALLIVM_DEBUG_GC, NULL },
77
{ "dumpbc", GALLIVM_DEBUG_DUMP_BC, NULL },
78
DEBUG_NAMED_VALUE_END
79
};
80
81
DEBUG_GET_ONCE_FLAGS_OPTION(gallivm_debug, "GALLIVM_DEBUG", lp_bld_debug_flags, 0)
82
#endif
83
84
85
static boolean gallivm_initialized = FALSE;
86
87
unsigned lp_native_vector_width;
88
89
90
/*
91
* Optimization values are:
92
* - 0: None (-O0)
93
* - 1: Less (-O1)
94
* - 2: Default (-O2, -Os)
95
* - 3: Aggressive (-O3)
96
*
97
* See also CodeGenOpt::Level in llvm/Target/TargetMachine.h
98
*/
99
enum LLVM_CodeGenOpt_Level {
100
None, // -O0
101
Less, // -O1
102
Default, // -O2, -Os
103
Aggressive // -O3
104
};
105
106
107
/**
108
* Create the LLVM (optimization) pass manager and install
109
* relevant optimization passes.
110
* \return TRUE for success, FALSE for failure
111
*/
112
static boolean
113
create_pass_manager(struct gallivm_state *gallivm)
114
{
115
assert(!gallivm->passmgr);
116
assert(gallivm->target);
117
118
gallivm->passmgr = LLVMCreateFunctionPassManagerForModule(gallivm->module);
119
if (!gallivm->passmgr)
120
return FALSE;
121
122
#if GALLIVM_HAVE_CORO
123
gallivm->cgpassmgr = LLVMCreatePassManager();
124
#endif
125
/*
126
* TODO: some per module pass manager with IPO passes might be helpful -
127
* the generated texture functions may benefit from inlining if they are
128
* simple, or constant propagation into them, etc.
129
*/
130
131
{
132
char *td_str;
133
// New ones from the Module.
134
td_str = LLVMCopyStringRepOfTargetData(gallivm->target);
135
LLVMSetDataLayout(gallivm->module, td_str);
136
free(td_str);
137
}
138
139
#if GALLIVM_HAVE_CORO
140
#if LLVM_VERSION_MAJOR <= 8 && (defined(PIPE_ARCH_AARCH64) || defined (PIPE_ARCH_ARM) || defined(PIPE_ARCH_S390))
141
LLVMAddArgumentPromotionPass(gallivm->cgpassmgr);
142
LLVMAddFunctionAttrsPass(gallivm->cgpassmgr);
143
#endif
144
LLVMAddCoroEarlyPass(gallivm->cgpassmgr);
145
LLVMAddCoroSplitPass(gallivm->cgpassmgr);
146
LLVMAddCoroElidePass(gallivm->cgpassmgr);
147
#endif
148
149
if ((gallivm_perf & GALLIVM_PERF_NO_OPT) == 0) {
150
/*
151
* TODO: Evaluate passes some more - keeping in mind
152
* both quality of generated code and compile times.
153
*/
154
/*
155
* NOTE: if you change this, don't forget to change the output
156
* with GALLIVM_DEBUG_DUMP_BC in gallivm_compile_module.
157
*/
158
LLVMAddScalarReplAggregatesPass(gallivm->passmgr);
159
LLVMAddEarlyCSEPass(gallivm->passmgr);
160
LLVMAddCFGSimplificationPass(gallivm->passmgr);
161
/*
162
* FIXME: LICM is potentially quite useful. However, for some
163
* rather crazy shaders the compile time can reach _hours_ per shader,
164
* due to licm implying lcssa (since llvm 3.5), which can take forever.
165
* Even for sane shaders, the cost of licm is rather high (and not just
166
* due to lcssa, licm itself too), though mostly only in cases when it
167
* can actually move things, so having to disable it is a pity.
168
* LLVMAddLICMPass(gallivm->passmgr);
169
*/
170
LLVMAddReassociatePass(gallivm->passmgr);
171
LLVMAddPromoteMemoryToRegisterPass(gallivm->passmgr);
172
#if LLVM_VERSION_MAJOR <= 11
173
LLVMAddConstantPropagationPass(gallivm->passmgr);
174
#else
175
LLVMAddInstructionSimplifyPass(gallivm->passmgr);
176
#endif
177
LLVMAddInstructionCombiningPass(gallivm->passmgr);
178
LLVMAddGVNPass(gallivm->passmgr);
179
}
180
else {
181
/* We need at least this pass to prevent the backends to fail in
182
* unexpected ways.
183
*/
184
LLVMAddPromoteMemoryToRegisterPass(gallivm->passmgr);
185
}
186
#if GALLIVM_HAVE_CORO
187
LLVMAddCoroCleanupPass(gallivm->passmgr);
188
#endif
189
190
return TRUE;
191
}
192
193
194
/**
195
* Free gallivm object's LLVM allocations, but not any generated code
196
* nor the gallivm object itself.
197
*/
198
void
199
gallivm_free_ir(struct gallivm_state *gallivm)
200
{
201
if (gallivm->passmgr) {
202
LLVMDisposePassManager(gallivm->passmgr);
203
}
204
205
#if GALLIVM_HAVE_CORO
206
if (gallivm->cgpassmgr) {
207
LLVMDisposePassManager(gallivm->cgpassmgr);
208
}
209
#endif
210
211
if (gallivm->engine) {
212
/* This will already destroy any associated module */
213
LLVMDisposeExecutionEngine(gallivm->engine);
214
} else if (gallivm->module) {
215
LLVMDisposeModule(gallivm->module);
216
}
217
218
if (gallivm->cache) {
219
lp_free_objcache(gallivm->cache->jit_obj_cache);
220
free(gallivm->cache->data);
221
}
222
FREE(gallivm->module_name);
223
224
if (gallivm->target) {
225
LLVMDisposeTargetData(gallivm->target);
226
}
227
228
if (gallivm->builder)
229
LLVMDisposeBuilder(gallivm->builder);
230
231
/* The LLVMContext should be owned by the parent of gallivm. */
232
233
gallivm->engine = NULL;
234
gallivm->target = NULL;
235
gallivm->module = NULL;
236
gallivm->module_name = NULL;
237
gallivm->cgpassmgr = NULL;
238
gallivm->passmgr = NULL;
239
gallivm->context = NULL;
240
gallivm->builder = NULL;
241
gallivm->cache = NULL;
242
}
243
244
245
/**
246
* Free LLVM-generated code. Should be done AFTER gallivm_free_ir().
247
*/
248
static void
249
gallivm_free_code(struct gallivm_state *gallivm)
250
{
251
assert(!gallivm->module);
252
assert(!gallivm->engine);
253
lp_free_generated_code(gallivm->code);
254
gallivm->code = NULL;
255
lp_free_memory_manager(gallivm->memorymgr);
256
gallivm->memorymgr = NULL;
257
}
258
259
260
static boolean
261
init_gallivm_engine(struct gallivm_state *gallivm)
262
{
263
if (1) {
264
enum LLVM_CodeGenOpt_Level optlevel;
265
char *error = NULL;
266
int ret;
267
268
if (gallivm_perf & GALLIVM_PERF_NO_OPT) {
269
optlevel = None;
270
}
271
else {
272
optlevel = Default;
273
}
274
275
ret = lp_build_create_jit_compiler_for_module(&gallivm->engine,
276
&gallivm->code,
277
gallivm->cache,
278
gallivm->module,
279
gallivm->memorymgr,
280
(unsigned) optlevel,
281
&error);
282
if (ret) {
283
_debug_printf("%s\n", error);
284
LLVMDisposeMessage(error);
285
goto fail;
286
}
287
}
288
289
if (0) {
290
/*
291
* Dump the data layout strings.
292
*/
293
294
LLVMTargetDataRef target = LLVMGetExecutionEngineTargetData(gallivm->engine);
295
char *data_layout;
296
char *engine_data_layout;
297
298
data_layout = LLVMCopyStringRepOfTargetData(gallivm->target);
299
engine_data_layout = LLVMCopyStringRepOfTargetData(target);
300
301
if (1) {
302
debug_printf("module target data = %s\n", data_layout);
303
debug_printf("engine target data = %s\n", engine_data_layout);
304
}
305
306
free(data_layout);
307
free(engine_data_layout);
308
}
309
310
return TRUE;
311
312
fail:
313
return FALSE;
314
}
315
316
317
/**
318
* Allocate gallivm LLVM objects.
319
* \return TRUE for success, FALSE for failure
320
*/
321
static boolean
322
init_gallivm_state(struct gallivm_state *gallivm, const char *name,
323
LLVMContextRef context, struct lp_cached_code *cache)
324
{
325
assert(!gallivm->context);
326
assert(!gallivm->module);
327
328
if (!lp_build_init())
329
return FALSE;
330
331
gallivm->context = context;
332
gallivm->cache = cache;
333
if (!gallivm->context)
334
goto fail;
335
336
gallivm->module_name = NULL;
337
if (name) {
338
size_t size = strlen(name) + 1;
339
gallivm->module_name = MALLOC(size);
340
if (gallivm->module_name) {
341
memcpy(gallivm->module_name, name, size);
342
}
343
}
344
345
gallivm->module = LLVMModuleCreateWithNameInContext(name,
346
gallivm->context);
347
if (!gallivm->module)
348
goto fail;
349
350
gallivm->builder = LLVMCreateBuilderInContext(gallivm->context);
351
if (!gallivm->builder)
352
goto fail;
353
354
gallivm->memorymgr = lp_get_default_memory_manager();
355
if (!gallivm->memorymgr)
356
goto fail;
357
358
/* FIXME: MC-JIT only allows compiling one module at a time, and it must be
359
* complete when MC-JIT is created. So defer the MC-JIT engine creation for
360
* now.
361
*/
362
363
/*
364
* MC-JIT engine compiles the module immediately on creation, so we can't
365
* obtain the target data from it. Instead we create a target data layout
366
* from a string.
367
*
368
* The produced layout strings are not precisely the same, but should make
369
* no difference for the kind of optimization passes we run.
370
*
371
* For reference this is the layout string on x64:
372
*
373
* e-p:64:64:64-S128-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f16:16:16-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-f128:128:128-n8:16:32:64
374
*
375
* See also:
376
* - http://llvm.org/docs/LangRef.html#datalayout
377
*/
378
379
{
380
const unsigned pointer_size = 8 * sizeof(void *);
381
char layout[512];
382
snprintf(layout, sizeof layout, "%c-p:%u:%u:%u-i64:64:64-a0:0:%u-s0:%u:%u",
383
#if UTIL_ARCH_LITTLE_ENDIAN
384
'e', // little endian
385
#else
386
'E', // big endian
387
#endif
388
pointer_size, pointer_size, pointer_size, // pointer size, abi alignment, preferred alignment
389
pointer_size, // aggregate preferred alignment
390
pointer_size, pointer_size); // stack objects abi alignment, preferred alignment
391
392
gallivm->target = LLVMCreateTargetData(layout);
393
if (!gallivm->target) {
394
return FALSE;
395
}
396
}
397
398
if (!create_pass_manager(gallivm))
399
goto fail;
400
401
return TRUE;
402
403
fail:
404
gallivm_free_ir(gallivm);
405
gallivm_free_code(gallivm);
406
return FALSE;
407
}
408
409
410
boolean
411
lp_build_init(void)
412
{
413
if (gallivm_initialized)
414
return TRUE;
415
416
417
/* LLVMLinkIn* are no-ops at runtime. They just ensure the respective
418
* component is linked at buildtime, which is sufficient for its static
419
* constructors to be called at load time.
420
*/
421
LLVMLinkInMCJIT();
422
423
#ifdef DEBUG
424
gallivm_debug = debug_get_option_gallivm_debug();
425
#endif
426
427
gallivm_perf = debug_get_flags_option("GALLIVM_PERF", lp_bld_perf_flags, 0 );
428
429
lp_set_target_options();
430
431
util_cpu_detect();
432
433
/* For simulating less capable machines */
434
#ifdef DEBUG
435
if (debug_get_bool_option("LP_FORCE_SSE2", FALSE)) {
436
extern struct util_cpu_caps_t util_cpu_caps;
437
assert(util_cpu_caps.has_sse2);
438
util_cpu_caps.has_sse3 = 0;
439
util_cpu_caps.has_ssse3 = 0;
440
util_cpu_caps.has_sse4_1 = 0;
441
util_cpu_caps.has_sse4_2 = 0;
442
util_cpu_caps.has_avx = 0;
443
util_cpu_caps.has_avx2 = 0;
444
util_cpu_caps.has_f16c = 0;
445
util_cpu_caps.has_fma = 0;
446
}
447
#endif
448
449
if (util_get_cpu_caps()->has_avx2 || util_get_cpu_caps()->has_avx) {
450
lp_native_vector_width = 256;
451
} else {
452
/* Leave it at 128, even when no SIMD extensions are available.
453
* Really needs to be a multiple of 128 so can fit 4 floats.
454
*/
455
lp_native_vector_width = 128;
456
}
457
458
lp_native_vector_width = debug_get_num_option("LP_NATIVE_VECTOR_WIDTH",
459
lp_native_vector_width);
460
461
#if LLVM_VERSION_MAJOR < 4
462
if (lp_native_vector_width <= 128) {
463
/* Hide AVX support, as often LLVM AVX intrinsics are only guarded by
464
* "util_get_cpu_caps()->has_avx" predicate, and lack the
465
* "lp_native_vector_width > 128" predicate. And also to ensure a more
466
* consistent behavior, allowing one to test SSE2 on AVX machines.
467
* XXX: should not play games with util_cpu_caps directly as it might
468
* get used for other things outside llvm too.
469
*/
470
util_get_cpu_caps()->has_avx = 0;
471
util_get_cpu_caps()->has_avx2 = 0;
472
util_get_cpu_caps()->has_f16c = 0;
473
util_get_cpu_caps()->has_fma = 0;
474
}
475
#endif
476
477
#ifdef PIPE_ARCH_PPC_64
478
/* Set the NJ bit in VSCR to 0 so denormalized values are handled as
479
* specified by IEEE standard (PowerISA 2.06 - Section 6.3). This guarantees
480
* that some rounding and half-float to float handling does not round
481
* incorrectly to 0.
482
* XXX: should eventually follow same logic on all platforms.
483
* Right now denorms get explicitly disabled (but elsewhere) for x86,
484
* whereas ppc64 explicitly enables them...
485
*/
486
if (util_get_cpu_caps()->has_altivec) {
487
unsigned short mask[] = { 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,
488
0xFFFF, 0xFFFF, 0xFFFE, 0xFFFF };
489
__asm (
490
"mfvscr %%v1\n"
491
"vand %0,%%v1,%0\n"
492
"mtvscr %0"
493
:
494
: "r" (*mask)
495
);
496
}
497
#endif
498
499
gallivm_initialized = TRUE;
500
501
return TRUE;
502
}
503
504
505
506
/**
507
* Create a new gallivm_state object.
508
*/
509
struct gallivm_state *
510
gallivm_create(const char *name, LLVMContextRef context,
511
struct lp_cached_code *cache)
512
{
513
struct gallivm_state *gallivm;
514
515
gallivm = CALLOC_STRUCT(gallivm_state);
516
if (gallivm) {
517
if (!init_gallivm_state(gallivm, name, context, cache)) {
518
FREE(gallivm);
519
gallivm = NULL;
520
}
521
}
522
523
assert(gallivm != NULL);
524
return gallivm;
525
}
526
527
528
/**
529
* Destroy a gallivm_state object.
530
*/
531
void
532
gallivm_destroy(struct gallivm_state *gallivm)
533
{
534
gallivm_free_ir(gallivm);
535
gallivm_free_code(gallivm);
536
FREE(gallivm);
537
}
538
539
540
/**
541
* Validate a function.
542
* Verification is only done with debug builds.
543
*/
544
void
545
gallivm_verify_function(struct gallivm_state *gallivm,
546
LLVMValueRef func)
547
{
548
/* Verify the LLVM IR. If invalid, dump and abort */
549
#ifdef DEBUG
550
if (LLVMVerifyFunction(func, LLVMPrintMessageAction)) {
551
lp_debug_dump_value(func);
552
assert(0);
553
return;
554
}
555
#endif
556
557
if (gallivm_debug & GALLIVM_DEBUG_IR) {
558
/* Print the LLVM IR to stderr */
559
lp_debug_dump_value(func);
560
debug_printf("\n");
561
}
562
}
563
564
565
/**
566
* Compile a module.
567
* This does IR optimization on all functions in the module.
568
*/
569
void
570
gallivm_compile_module(struct gallivm_state *gallivm)
571
{
572
LLVMValueRef func;
573
int64_t time_begin = 0;
574
575
assert(!gallivm->compiled);
576
577
if (gallivm->builder) {
578
LLVMDisposeBuilder(gallivm->builder);
579
gallivm->builder = NULL;
580
}
581
582
if (gallivm->cache && gallivm->cache->data_size) {
583
goto skip_cached;
584
}
585
586
/* Dump bitcode to a file */
587
if (gallivm_debug & GALLIVM_DEBUG_DUMP_BC) {
588
char filename[256];
589
assert(gallivm->module_name);
590
snprintf(filename, sizeof(filename), "ir_%s.bc", gallivm->module_name);
591
LLVMWriteBitcodeToFile(gallivm->module, filename);
592
debug_printf("%s written\n", filename);
593
debug_printf("Invoke as \"opt %s %s | llc -O%d %s%s\"\n",
594
gallivm_debug & GALLIVM_PERF_NO_OPT ? "-mem2reg" :
595
"-sroa -early-cse -simplifycfg -reassociate "
596
"-mem2reg -constprop -instcombine -gvn",
597
filename, gallivm_debug & GALLIVM_PERF_NO_OPT ? 0 : 2,
598
"[-mcpu=<-mcpu option>] ",
599
"[-mattr=<-mattr option(s)>]");
600
}
601
602
if (gallivm_debug & GALLIVM_DEBUG_PERF)
603
time_begin = os_time_get();
604
605
#if GALLIVM_HAVE_CORO
606
LLVMRunPassManager(gallivm->cgpassmgr, gallivm->module);
607
#endif
608
/* Run optimization passes */
609
LLVMInitializeFunctionPassManager(gallivm->passmgr);
610
func = LLVMGetFirstFunction(gallivm->module);
611
while (func) {
612
if (0) {
613
debug_printf("optimizing func %s...\n", LLVMGetValueName(func));
614
}
615
616
/* Disable frame pointer omission on debug/profile builds */
617
/* XXX: And workaround http://llvm.org/PR21435 */
618
#if defined(DEBUG) || defined(PROFILE) || defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
619
LLVMAddTargetDependentFunctionAttr(func, "no-frame-pointer-elim", "true");
620
LLVMAddTargetDependentFunctionAttr(func, "no-frame-pointer-elim-non-leaf", "true");
621
#endif
622
623
LLVMRunFunctionPassManager(gallivm->passmgr, func);
624
func = LLVMGetNextFunction(func);
625
}
626
LLVMFinalizeFunctionPassManager(gallivm->passmgr);
627
628
if (gallivm_debug & GALLIVM_DEBUG_PERF) {
629
int64_t time_end = os_time_get();
630
int time_msec = (int)((time_end - time_begin) / 1000);
631
assert(gallivm->module_name);
632
debug_printf("optimizing module %s took %d msec\n",
633
gallivm->module_name, time_msec);
634
}
635
636
/* Setting the module's DataLayout to an empty string will cause the
637
* ExecutionEngine to copy to the DataLayout string from its target machine
638
* to the module. As of LLVM 3.8 the module and the execution engine are
639
* required to have the same DataLayout.
640
*
641
* We must make sure we do this after running the optimization passes,
642
* because those passes need a correct datalayout string. For example, if
643
* those optimization passes see an empty datalayout, they will assume this
644
* is a little endian target and will do optimizations that break big endian
645
* machines.
646
*
647
* TODO: This is just a temporary work-around. The correct solution is for
648
* gallivm_init_state() to create a TargetMachine and pull the DataLayout
649
* from there. Currently, the TargetMachine used by llvmpipe is being
650
* implicitly created by the EngineBuilder in
651
* lp_build_create_jit_compiler_for_module()
652
*/
653
skip_cached:
654
LLVMSetDataLayout(gallivm->module, "");
655
assert(!gallivm->engine);
656
if (!init_gallivm_engine(gallivm)) {
657
assert(0);
658
}
659
assert(gallivm->engine);
660
661
++gallivm->compiled;
662
663
if (gallivm->debug_printf_hook)
664
LLVMAddGlobalMapping(gallivm->engine, gallivm->debug_printf_hook, debug_printf);
665
666
if (gallivm_debug & GALLIVM_DEBUG_ASM) {
667
LLVMValueRef llvm_func = LLVMGetFirstFunction(gallivm->module);
668
669
while (llvm_func) {
670
/*
671
* Need to filter out functions which don't have an implementation,
672
* such as the intrinsics. May not be sufficient in case of IPO?
673
* LLVMGetPointerToGlobal() will abort otherwise.
674
*/
675
if (!LLVMIsDeclaration(llvm_func)) {
676
void *func_code = LLVMGetPointerToGlobal(gallivm->engine, llvm_func);
677
lp_disassemble(llvm_func, func_code);
678
}
679
llvm_func = LLVMGetNextFunction(llvm_func);
680
}
681
}
682
683
#if defined(PROFILE)
684
{
685
LLVMValueRef llvm_func = LLVMGetFirstFunction(gallivm->module);
686
687
while (llvm_func) {
688
if (!LLVMIsDeclaration(llvm_func)) {
689
void *func_code = LLVMGetPointerToGlobal(gallivm->engine, llvm_func);
690
lp_profile(llvm_func, func_code);
691
}
692
llvm_func = LLVMGetNextFunction(llvm_func);
693
}
694
}
695
#endif
696
}
697
698
699
700
func_pointer
701
gallivm_jit_function(struct gallivm_state *gallivm,
702
LLVMValueRef func)
703
{
704
void *code;
705
func_pointer jit_func;
706
int64_t time_begin = 0;
707
708
assert(gallivm->compiled);
709
assert(gallivm->engine);
710
711
if (gallivm_debug & GALLIVM_DEBUG_PERF)
712
time_begin = os_time_get();
713
714
code = LLVMGetPointerToGlobal(gallivm->engine, func);
715
assert(code);
716
jit_func = pointer_to_func(code);
717
718
if (gallivm_debug & GALLIVM_DEBUG_PERF) {
719
int64_t time_end = os_time_get();
720
int time_msec = (int)(time_end - time_begin) / 1000;
721
debug_printf(" jitting func %s took %d msec\n",
722
LLVMGetValueName(func), time_msec);
723
}
724
725
return jit_func;
726
}
727
728
unsigned gallivm_get_perf_flags(void)
729
{
730
return gallivm_perf;
731
}
732
733