Home
last modified time | relevance | path

Searched refs:LLVMGetTypeKind (Results 1 – 25 of 33) sorted by relevance

12

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_struct.c53 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind); in lp_build_struct_get_ptr()
54 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMStructTypeKind); in lp_build_struct_get_ptr()
71 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind); in lp_build_struct_get()
72 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMStructTypeKind); in lp_build_struct_get()
87 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind); in lp_build_array_get_ptr()
88 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMArrayTypeKind); in lp_build_array_get_ptr()
107 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind); in lp_build_array_get()
108 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMArrayTypeKind); in lp_build_array_get()
125 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind); in lp_build_array_set()
126 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMArrayTypeKind); in lp_build_array_set()
[all …]
Dlp_bld_type.c87 elem_kind = LLVMGetTypeKind(elem_type); in lp_check_elem_type()
132 if(LLVMGetTypeKind(vec_type) != LLVMVectorTypeKind) in lp_check_vec_type()
253 LLVMTypeKind k = LLVMGetTypeKind(t); in lp_sizeof_llvm_type()
330 LLVMTypeKind k = LLVMGetTypeKind(t); in lp_dump_llvmtype()
334 LLVMTypeKind ke = LLVMGetTypeKind(te); in lp_dump_llvmtype()
346 LLVMTypeKind ke = LLVMGetTypeKind(te); in lp_dump_llvmtype()
Dlp_bld_printf.c63 if (LLVMGetTypeKind(type) == LLVMFloatTypeKind) in lp_build_print_args()
93 type_kind = LLVMGetTypeKind(type_ref); in lp_build_print_value()
99 type_kind = LLVMGetTypeKind(type_ref); in lp_build_print_value()
Dlp_bld_format_float.c243 unsigned src_length = LLVMGetTypeKind(src_type) == LLVMVectorTypeKind ? in lp_build_float_to_r11g11b10()
409 unsigned src_length = LLVMGetTypeKind(src_type) == LLVMVectorTypeKind ? in lp_build_r11g11b10_to_float()
467 unsigned src_length = LLVMGetTypeKind(src_type) == LLVMVectorTypeKind ? in lp_build_rgb9e5_to_float()
Dlp_bld_arit_overflow.c76 type_kind = LLVMGetTypeKind(type_ref); in build_binary_int_overflow()
Dlp_bld_intr.c68 LLVMTypeKind kind = LLVMGetTypeKind(type); in lp_format_intrinsic()
72 kind = LLVMGetTypeKind(type); in lp_format_intrinsic()
Dlp_bld_conv.c96 unsigned src_length = LLVMGetTypeKind(src_type) == LLVMVectorTypeKind ? in lp_build_half_to_float()
141 unsigned length = LLVMGetTypeKind(f32_vec_type) == LLVMVectorTypeKind in lp_build_float_to_half()
Dlp_bld_swizzle.c53 if (LLVMGetTypeKind(vec_type) != LLVMVectorTypeKind) { in lp_build_broadcast()
Dlp_bld_pack.c1038 if (LLVMGetTypeKind(type) != LLVMVectorTypeKind) { in lp_build_pad_vector()
/external/mesa3d/src/amd/common/
Dac_llvm_build.c128 unsigned num_components = LLVMGetTypeKind(type) == LLVMVectorTypeKind in ac_get_llvm_num_components()
139 if (LLVMGetTypeKind(LLVMTypeOf(value)) != LLVMVectorTypeKind) { in ac_llvm_extract_elem()
151 LLVMTypeKind kind = LLVMGetTypeKind(type); in ac_get_type_size()
188 if (LLVMGetTypeKind(t) == LLVMVectorTypeKind) { in ac_to_integer_type()
218 if (LLVMGetTypeKind(t) == LLVMVectorTypeKind) { in ac_to_float_type()
281 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) { in ac_build_type_name_for_intr()
294 switch (LLVMGetTypeKind(elem_type)) { in ac_build_type_name_for_intr()
Dac_nir_to_llvm.c370 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) in get_elem_bits()
373 if (LLVMGetTypeKind(type) == LLVMIntegerTypeKind) in get_elem_bits()
1236 unsigned src_components = LLVMGetTypeKind(type) == LLVMVectorTypeKind in get_alu_src()
2184 if (LLVMGetTypeKind(type) == LLVMVectorTypeKind) in build_int_type_name()
2461 if (LLVMGetTypeKind(type) != LLVMVectorTypeKind) { in extract_vector_range()
/external/llvm/docs/
DExtendingLLVM.rst254 ``LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty)`` for the new type
300 `LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty)` for the new type
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DExtendingLLVM.rst254 ``LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty)`` for the new type
300 `LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty)` for the new type
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_tgsi_setup.c626 if (LLVMGetTypeKind(LLVMTypeOf(cval)) == LLVMVectorTypeKind) { in fetch_system_value()
829 LLVMTypeKind k = LLVMGetTypeKind(LLVMTypeOf(dst[0])); in si_llvm_emit_store()
Dsi_shader.c248 if (LLVMGetTypeKind(LLVMTypeOf(value)) == LLVMFloatTypeKind) in unpack_llvm_param()
1376 (dst[0] && LLVMGetTypeKind(LLVMTypeOf(dst[0])) == LLVMVectorTypeKind)) { in store_output_tcs()
4460 if (LLVMGetTypeKind(LLVMTypeOf(P)) == LLVMPointerTypeKind) { in si_create_function()
5629 if (LLVMGetTypeKind(LLVMTypeOf(ret)) == LLVMVoidTypeKind) in si_llvm_build_ret()
6541 if (LLVMGetTypeKind(param_type) == LLVMPointerTypeKind) { in si_build_wrapper_function()
6616 if (LLVMGetTypeKind(param_type) == LLVMPointerTypeKind) { in si_build_wrapper_function()
6653 if (LLVMGetTypeKind(ret_type) != LLVMVoidTypeKind) { in si_build_wrapper_function()
6654 assert(LLVMGetTypeKind(ret_type) == LLVMStructTypeKind); in si_build_wrapper_function()
/external/llvm/tools/llvm-c-test/
Decho.cpp69 LLVMTypeKind Kind = LLVMGetTypeKind(Src); in Clone()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_setup.c626 if(LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind) in set_noalias()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
Decho.cpp69 LLVMTypeKind Kind = LLVMGetTypeKind(Src); in Clone()
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm.c1601 if (LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind) in draw_llvm_generate()
2280 if (LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind) in draw_gs_llvm_generate()
/external/swiftshader/third_party/LLVM/include/llvm-c/
DCore.h362 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
/external/llvm/include/llvm-c/
DCore.h804 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DCore.h963 LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Dllvm_ocaml.c172 return Val_int(LLVMGetTypeKind(Ty)); in llvm_classify_type()
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c326 return Val_int(LLVMGetTypeKind(Ty)); in llvm_classify_type()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c262 return Val_int(LLVMGetTypeKind(Ty)); in llvm_classify_type()

12