1 /**************************************************************************
3 * Copyright 2010 VMware, Inc.
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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.
26 **************************************************************************/
30 #include "util/u_debug.h"
31 #include "util/u_memory.h"
32 #include "util/u_string.h"
33 #include "lp_bld_const.h"
34 #include "lp_bld_init.h"
35 #include "lp_bld_const.h"
36 #include "lp_bld_printf.h"
40 lp_get_printf_arg_count(const char *fmt
)
56 if (p
[1] == '*' && p
[2] == 's') {
70 lp_build_const_string_variable(LLVMModuleRef module
,
71 LLVMContextRef context
,
72 const char *str
, int len
)
74 LLVMValueRef string
= LLVMAddGlobal(module
, LLVMArrayType(LLVMInt8TypeInContext(context
), len
+ 1), "");
75 LLVMSetGlobalConstant(string
, TRUE
);
76 LLVMSetLinkage(string
, LLVMInternalLinkage
);
77 LLVMSetInitializer(string
, LLVMConstStringInContext(context
, str
, len
+ 1, TRUE
));
85 * Build printf call in LLVM IR. The output goes to stdout.
86 * The additional variable arguments need to have type
90 lp_build_printf(struct gallivm_state
*gallivm
, const char *fmt
, ...)
94 int argcount
= lp_get_printf_arg_count(fmt
);
95 LLVMBuilderRef builder
= gallivm
->builder
;
96 LLVMContextRef context
= gallivm
->context
;
97 LLVMModuleRef module
= gallivm
->module
;
98 LLVMValueRef params
[50];
99 LLVMValueRef fmtarg
= lp_build_const_string_variable(module
, context
,
100 fmt
, strlen(fmt
) + 1);
101 LLVMValueRef int0
= lp_build_const_int32(gallivm
, 0);
102 LLVMValueRef index
[2];
103 LLVMValueRef func_printf
= LLVMGetNamedFunction(module
, "printf");
105 assert(Elements(params
) >= argcount
+ 1);
107 index
[0] = index
[1] = int0
;
110 LLVMTypeRef printf_type
= LLVMFunctionType(LLVMIntTypeInContext(context
, 32), NULL
, 0, 1);
111 func_printf
= LLVMAddFunction(module
, "printf", printf_type
);
114 params
[0] = LLVMBuildGEP(builder
, fmtarg
, index
, 2, "");
116 va_start(arglist
, fmt
);
117 for (i
= 1; i
<= argcount
; i
++) {
118 LLVMValueRef val
= va_arg(arglist
, LLVMValueRef
);
119 LLVMTypeRef type
= LLVMTypeOf(val
);
120 /* printf wants doubles, so lets convert so that
121 * we can actually print them */
122 if (LLVMGetTypeKind(type
) == LLVMFloatTypeKind
)
123 val
= LLVMBuildFPExt(builder
, val
, LLVMDoubleTypeInContext(context
), "");
128 return LLVMBuildCall(builder
, func_printf
, params
, argcount
+ 1, "");
134 * Print a float[4] vector.
137 lp_build_print_vec4(struct gallivm_state
*gallivm
,
138 const char *msg
, LLVMValueRef vec
)
140 LLVMBuilderRef builder
= gallivm
->builder
;
142 LLVMValueRef x
, y
, z
, w
;
144 x
= LLVMBuildExtractElement(builder
, vec
, lp_build_const_int32(gallivm
, 0), "");
145 y
= LLVMBuildExtractElement(builder
, vec
, lp_build_const_int32(gallivm
, 1), "");
146 z
= LLVMBuildExtractElement(builder
, vec
, lp_build_const_int32(gallivm
, 2), "");
147 w
= LLVMBuildExtractElement(builder
, vec
, lp_build_const_int32(gallivm
, 3), "");
149 util_snprintf(format
, sizeof(format
), "%s %%f %%f %%f %%f\n", msg
);
150 return lp_build_printf(gallivm
, format
, x
, y
, z
, w
);