Home
last modified time | relevance | path

Searched refs:gallivm_state (Results 1 – 25 of 85) sorted by relevance

1234

/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_coro.h33 struct gallivm_state;
34 LLVMValueRef lp_build_coro_id(struct gallivm_state *gallivm);
36 LLVMValueRef lp_build_coro_size(struct gallivm_state *gallivm);
38 LLVMValueRef lp_build_coro_begin(struct gallivm_state *gallivm,
41 LLVMValueRef lp_build_coro_free(struct gallivm_state *gallivm,
44 void lp_build_coro_end(struct gallivm_state *gallivm,
47 void lp_build_coro_resume(struct gallivm_state *gallivm, LLVMValueRef coro_hdl);
49 void lp_build_coro_destroy(struct gallivm_state *gallivm, LLVMValueRef coro_hdl);
51 LLVMValueRef lp_build_coro_done(struct gallivm_state *gallivm, LLVMValueRef coro_hdl);
53 LLVMValueRef lp_build_coro_suspend(struct gallivm_state *gallivm, bool last);
[all …]
Dlp_bld_const.h77 lp_build_undef(struct gallivm_state *gallivm, struct lp_type type);
81 lp_build_zero(struct gallivm_state *gallivm, struct lp_type type);
85 lp_build_one(struct gallivm_state *gallivm, struct lp_type type);
89 lp_build_const_elem(struct gallivm_state *gallivm, struct lp_type type,
93 lp_build_const_vec(struct gallivm_state *gallivm, struct lp_type type,
98 lp_build_const_int_vec(struct gallivm_state *gallivm,
103 lp_build_const_aos(struct gallivm_state *gallivm, struct lp_type type,
109 lp_build_const_mask_aos(struct gallivm_state *gallivm,
116 lp_build_const_mask_aos_swizzled(struct gallivm_state *gallivm,
124 lp_build_const_int32(struct gallivm_state *gallivm, int i) in lp_build_const_int32()
[all …]
Dlp_bld_format.h83 lp_build_format_cache_type(struct gallivm_state *gallivm);
96 lp_build_pack_rgba_aos(struct gallivm_state *gallivm,
101 lp_build_fetch_rgba_aos(struct gallivm_state *gallivm,
112 lp_build_fetch_rgba_aos_array(struct gallivm_state *gallivm,
130 lp_build_unpack_rgba_soa(struct gallivm_state *gallivm,
137 lp_build_rgba8_to_fi32_soa(struct gallivm_state *gallivm,
143 lp_build_fetch_rgba_soa(struct gallivm_state *gallivm,
155 lp_build_store_rgba_soa(struct gallivm_state *gallivm,
169 lp_build_fetch_subsampled_rgba_aos(struct gallivm_state *gallivm,
183 lp_build_fetch_s3tc_rgba_aos(struct gallivm_state *gallivm,
[all …]
Dlp_bld_pack.h48 lp_build_interleave2_half(struct gallivm_state *gallivm,
55 lp_build_interleave2(struct gallivm_state *gallivm,
62 lp_build_uninterleave1(struct gallivm_state *gallivm,
68 lp_build_unpack2(struct gallivm_state *gallivm,
77 lp_build_unpack2_native(struct gallivm_state *gallivm,
85 lp_build_unpack(struct gallivm_state *gallivm,
92 lp_build_extract_range(struct gallivm_state *gallivm,
98 lp_build_concat(struct gallivm_state *gallivm,
104 lp_build_concat_n(struct gallivm_state *gallivm,
113 lp_build_packs2(struct gallivm_state *gallivm,
[all …]
Dlp_bld_flow.h53 struct gallivm_state *gallivm;
61 struct gallivm_state *gallivm);
83 struct gallivm_state *gallivm,
120 struct gallivm_state *gallivm;
126 struct gallivm_state *gallivm,
160 struct gallivm_state *gallivm;
165 struct gallivm_state *gallivm,
180 struct gallivm_state *gallivm;
191 struct gallivm_state *gallivm,
201 lp_build_insert_new_block(struct gallivm_state *gallivm, const char *name);
[all …]
Dlp_bld_sample.h227 struct gallivm_state *gallivm,
234 struct gallivm_state *gallivm,
241 struct gallivm_state *gallivm,
248 struct gallivm_state *gallivm,
255 struct gallivm_state *gallivm,
262 struct gallivm_state *gallivm,
269 struct gallivm_state *gallivm,
276 struct gallivm_state *gallivm,
283 struct gallivm_state *gallivm,
290 struct gallivm_state *gallivm,
[all …]
Dlp_bld_coro.c43 LLVMValueRef lp_build_coro_id(struct gallivm_state *gallivm) in lp_build_coro_id()
57 LLVMValueRef lp_build_coro_size(struct gallivm_state *gallivm) in lp_build_coro_size()
65 LLVMValueRef lp_build_coro_begin(struct gallivm_state *gallivm, in lp_build_coro_begin()
78 LLVMValueRef lp_build_coro_free(struct gallivm_state *gallivm, in lp_build_coro_free()
90 void lp_build_coro_end(struct gallivm_state *gallivm, LLVMValueRef coro_hdl) in lp_build_coro_end()
101 void lp_build_coro_resume(struct gallivm_state *gallivm, LLVMValueRef coro_hdl) in lp_build_coro_resume()
109 void lp_build_coro_destroy(struct gallivm_state *gallivm, LLVMValueRef coro_hdl) in lp_build_coro_destroy()
117 LLVMValueRef lp_build_coro_done(struct gallivm_state *gallivm, LLVMValueRef coro_hdl) in lp_build_coro_done()
125 LLVMValueRef lp_build_coro_suspend(struct gallivm_state *gallivm, bool last) in lp_build_coro_suspend()
137 LLVMValueRef lp_build_coro_alloc(struct gallivm_state *gallivm, LLVMValueRef id) in lp_build_coro_alloc()
[all …]
Dlp_bld_init.h43 struct gallivm_state struct
67 struct gallivm_state * argument
72 gallivm_destroy(struct gallivm_state *gallivm);
75 gallivm_free_ir(struct gallivm_state *gallivm);
78 gallivm_verify_function(struct gallivm_state *gallivm,
82 gallivm_compile_module(struct gallivm_state *gallivm);
85 gallivm_jit_function(struct gallivm_state *gallivm,
Dlp_bld_conv.h46 lp_build_half_to_float(struct gallivm_state *gallivm,
50 lp_build_float_to_half(struct gallivm_state *gallivm,
54 lp_build_clamped_float_to_unsigned_norm(struct gallivm_state *gallivm,
60 lp_build_unsigned_norm_to_float(struct gallivm_state *gallivm,
67 lp_build_conv(struct gallivm_state *gallivm,
75 lp_build_conv_auto(struct gallivm_state *gallivm,
84 lp_build_conv_mask(struct gallivm_state *gallivm,
Dlp_bld_swizzle.h51 lp_build_broadcast(struct gallivm_state *gallivm,
62 lp_build_extract_broadcast(struct gallivm_state *gallivm,
92 lp_build_swizzle_aos_n(struct gallivm_state* gallivm,
119 lp_build_transpose_aos(struct gallivm_state *gallivm,
126 lp_build_transpose_aos_n(struct gallivm_state *gallivm,
134 lp_build_pack_aos_scalars(struct gallivm_state *gallivm,
142 lp_build_unpack_broadcast_aos_scalars(struct gallivm_state *gallivm,
Dlp_bld_struct.h60 lp_build_struct_get_ptr(struct gallivm_state *gallivm,
69 lp_build_struct_get(struct gallivm_state *gallivm,
78 lp_build_array_get_ptr(struct gallivm_state *gallivm,
86 lp_build_array_get(struct gallivm_state *gallivm,
94 lp_build_array_set(struct gallivm_state *gallivm,
Dlp_bld_arit_overflow.h43 struct gallivm_state;
46 lp_build_uadd_overflow(struct gallivm_state *gallivm,
52 lp_build_usub_overflow(struct gallivm_state *gallivm,
58 lp_build_umul_overflow(struct gallivm_state *gallivm,
Dlp_bld_const.c225 lp_build_undef(struct gallivm_state *gallivm, struct lp_type type) in lp_build_undef()
233 lp_build_zero(struct gallivm_state *gallivm, struct lp_type type) in lp_build_zero()
249 lp_build_one(struct gallivm_state *gallivm, struct lp_type type) in lp_build_one()
299 lp_build_const_elem(struct gallivm_state *gallivm, in lp_build_const_elem()
325 lp_build_const_vec(struct gallivm_state *gallivm, struct lp_type type, in lp_build_const_vec()
342 lp_build_const_int_vec(struct gallivm_state *gallivm, struct lp_type type, in lp_build_const_int_vec()
362 lp_build_const_aos(struct gallivm_state *gallivm, in lp_build_const_aos()
395 lp_build_const_mask_aos(struct gallivm_state *gallivm, in lp_build_const_mask_aos()
422 lp_build_const_mask_aos_swizzled(struct gallivm_state *gallivm, in lp_build_const_mask_aos_swizzled()
445 lp_build_const_string(struct gallivm_state *gallivm, in lp_build_const_string()
[all …]
Dlp_bld_gather.h37 lp_build_gather_elem_ptr(struct gallivm_state *gallivm,
44 lp_build_gather_elem(struct gallivm_state *gallivm,
55 lp_build_gather(struct gallivm_state *gallivm,
65 lp_build_gather_values(struct gallivm_state * gallivm,
Dlp_bld_init.c111 create_pass_manager(struct gallivm_state *gallivm) in create_pass_manager()
197 gallivm_free_ir(struct gallivm_state *gallivm) in gallivm_free_ir()
247 gallivm_free_code(struct gallivm_state *gallivm) in gallivm_free_code()
259 init_gallivm_engine(struct gallivm_state *gallivm) in init_gallivm_engine()
320 init_gallivm_state(struct gallivm_state *gallivm, const char *name, in init_gallivm_state()
511 struct gallivm_state *
515 struct gallivm_state *gallivm; in gallivm_create()
517 gallivm = CALLOC_STRUCT(gallivm_state); in gallivm_create()
534 gallivm_destroy(struct gallivm_state *gallivm) in gallivm_destroy()
547 gallivm_verify_function(struct gallivm_state *gallivm, in gallivm_verify_function()
[all …]
Dlp_bld_intr.h110 lp_build_intrinsic_binary_anylength(struct gallivm_state *gallivm,
119 lp_build_intrinsic_map(struct gallivm_state *gallivm,
127 lp_build_intrinsic_map_unary(struct gallivm_state *gallivm,
134 lp_build_intrinsic_map_binary(struct gallivm_state *gallivm,
Dlp_bld_pack.c87 lp_build_const_unpack_shuffle(struct gallivm_state *gallivm, in lp_build_const_unpack_shuffle()
111 lp_build_const_unpack_shuffle_half(struct gallivm_state *gallivm, in lp_build_const_unpack_shuffle_half()
136 lp_build_const_unpack_shuffle_16wide(struct gallivm_state *gallivm, in lp_build_const_unpack_shuffle_16wide()
161 lp_build_const_pack_shuffle(struct gallivm_state *gallivm, unsigned n) in lp_build_const_pack_shuffle()
184 lp_build_extract_range(struct gallivm_state *gallivm, in lp_build_extract_range()
212 lp_build_concat(struct gallivm_state *gallivm, in lp_build_concat()
256 lp_build_concat_n(struct gallivm_state *gallivm, in lp_build_concat_n()
292 lp_build_uninterleave1(struct gallivm_state *gallivm, in lp_build_uninterleave1()
317 lp_build_interleave2(struct gallivm_state *gallivm, in lp_build_interleave2()
381 lp_build_interleave2_half(struct gallivm_state *gallivm, in lp_build_interleave2_half()
[all …]
Dlp_bld_flow.c55 lp_build_insert_new_block(struct gallivm_state *gallivm, const char *name) in lp_build_insert_new_block()
86 struct gallivm_state *gallivm) in lp_build_flow_skip_begin()
164 struct gallivm_state *gallivm, in lp_build_mask_begin()
228 struct gallivm_state *gallivm, in lp_build_loop_begin()
314 struct gallivm_state *gallivm, in lp_build_for_loop_begin()
402 struct gallivm_state *gallivm, in lp_build_if()
482 create_builder_at_entry(struct gallivm_state *gallivm) in create_builder_at_entry()
517 lp_build_alloca(struct gallivm_state *gallivm, in lp_build_alloca()
538 lp_build_alloca_undef(struct gallivm_state *gallivm, in lp_build_alloca_undef()
568 lp_build_array_alloca(struct gallivm_state *gallivm, in lp_build_array_alloca()
Dlp_bld_arit_overflow.c59 build_binary_int_overflow(struct gallivm_state *gallivm, in build_binary_int_overflow()
120 lp_build_uadd_overflow(struct gallivm_state *gallivm, in lp_build_uadd_overflow()
144 lp_build_usub_overflow(struct gallivm_state *gallivm, in lp_build_usub_overflow()
168 lp_build_umul_overflow(struct gallivm_state *gallivm, in lp_build_umul_overflow()
Dlp_bld_format_yuv.c55 uyvy_to_yuv_soa(struct gallivm_state *gallivm, in uyvy_to_yuv_soa()
139 yuyv_to_yuv_soa(struct gallivm_state *gallivm, in yuyv_to_yuv_soa()
216 yuv_to_rgb_soa(struct gallivm_state *gallivm, in yuv_to_rgb_soa()
315 rgb_to_rgba_aos(struct gallivm_state *gallivm, in rgb_to_rgba_aos()
365 uyvy_to_rgba_aos(struct gallivm_state *gallivm, in uyvy_to_rgba_aos()
386 yuyv_to_rgba_aos(struct gallivm_state *gallivm, in yuyv_to_rgba_aos()
407 rgbg_to_rgba_aos(struct gallivm_state *gallivm, in rgbg_to_rgba_aos()
426 grgb_to_rgba_aos(struct gallivm_state *gallivm, in grgb_to_rgba_aos()
444 grbr_to_rgba_aos(struct gallivm_state *gallivm, in grbr_to_rgba_aos()
463 rgrb_to_rgba_aos(struct gallivm_state *gallivm, in rgrb_to_rgba_aos()
[all …]
Dlp_bld_type.h142 struct gallivm_state *gallivm;
344 lp_build_elem_type(struct gallivm_state *gallivm, struct lp_type type);
348 lp_build_vec_type(struct gallivm_state *gallivm, struct lp_type type);
364 lp_build_int_elem_type(struct gallivm_state *gallivm, struct lp_type type);
368 lp_build_int_vec_type(struct gallivm_state *gallivm, struct lp_type type);
449 struct gallivm_state *gallivm,
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_bld_depth.h45 struct gallivm_state;
57 lp_build_depth_stencil_test(struct gallivm_state *gallivm,
74 lp_build_depth_stencil_load_swizzled(struct gallivm_state *gallivm,
85 lp_build_depth_stencil_write_swizzled(struct gallivm_state *gallivm,
100 lp_build_occlusion_count(struct gallivm_state *gallivm,
Dlp_bld_interp.h121 struct gallivm_state *gallivm,
139 struct gallivm_state *gallivm,
146 struct gallivm_state *gallivm,
152 struct gallivm_state *gallivm,
Dlp_tex_sample.c111 struct gallivm_state *gallivm, in lp_llvm_texture_member()
165 struct gallivm_state *gallivm, \
199 struct gallivm_state *gallivm, in LP_LLVM_TEXTURE_MEMBER()
238 struct gallivm_state *gallivm, \
264 struct gallivm_state *gallivm, in LP_LLVM_SAMPLER_MEMBER()
318 struct gallivm_state *gallivm, \
340 struct gallivm_state *gallivm, in LP_LLVM_IMAGE_MEMBER()
365 struct gallivm_state *gallivm, in lp_llvm_sampler_soa_emit_fetch_texel()
408 struct gallivm_state *gallivm, in lp_llvm_sampler_soa_emit_size_query()
470 struct gallivm_state *gallivm, in lp_llvm_image_soa_emit_op()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm_sample.c103 struct gallivm_state *gallivm, in draw_llvm_texture_member()
155 struct gallivm_state *gallivm, in draw_llvm_sampler_member()
200 struct gallivm_state *gallivm, in draw_llvm_image_member()
253 struct gallivm_state *gallivm, \
279 struct gallivm_state *gallivm, \ in DRAW_LLVM_TEXTURE_MEMBER()
297 struct gallivm_state *gallivm, \
329 struct gallivm_state *gallivm, in draw_llvm_sampler_soa_emit_fetch_texel()
368 struct gallivm_state *gallivm, in draw_llvm_sampler_soa_emit_size_query()
418 struct gallivm_state *gallivm, in draw_llvm_image_soa_emit_op()
450 struct gallivm_state *gallivm, in draw_llvm_image_soa_emit_size_query()

1234