HomeSort by: relevance | last modified time | path
    Searched refs:arg_types (Results 1 - 25 of 29) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_assert.c 66 LLVMTypeRef arg_types[2]; local
75 arg_types[0] = LLVMInt32TypeInContext(context);
76 arg_types[1] = LLVMPointerType(LLVMInt8TypeInContext(context), 0);
80 ret_type, arg_types, ARRAY_SIZE(arg_types),
84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], "");
88 assert(LLVMTypeOf(args[0]) == arg_types[0]);
89 assert(LLVMTypeOf(args[1]) == arg_types[1]);
lp_bld_intr.h 78 LLVMTypeRef *arg_types,
lp_bld_intr.c 109 LLVMTypeRef *arg_types,
117 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
237 LLVMTypeRef arg_types[LP_MAX_FUNC_ARGS]; local
244 arg_types[i] = LLVMTypeOf(args[i]);
247 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args);
lp_bld_format_aos.c 829 LLVMTypeRef arg_types[4]; local
833 arg_types[0] = pi8t;
834 arg_types[1] = pi8t;
835 arg_types[2] = i32t;
836 arg_types[3] = i32t;
837 function_type = LLVMFunctionType(ret_type, arg_types,
838 ARRAY_SIZE(arg_types), 0);
938 LLVMTypeRef arg_types[4]; local
941 arg_types[0] = pf32t;
942 arg_types[1] = pi8t
    [all...]
lp_bld_const.h 174 LLVMTypeRef *arg_types,
lp_bld_const.c 469 LLVMTypeRef *arg_types,
476 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_assert.c 66 LLVMTypeRef arg_types[2]; local
75 arg_types[0] = LLVMInt32TypeInContext(context);
76 arg_types[1] = LLVMPointerType(LLVMInt8TypeInContext(context), 0);
80 ret_type, arg_types, ARRAY_SIZE(arg_types),
84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], "");
88 assert(LLVMTypeOf(args[0]) == arg_types[0]);
89 assert(LLVMTypeOf(args[1]) == arg_types[1]);
lp_bld_intr.h 77 LLVMTypeRef *arg_types,
lp_bld_intr.c 104 LLVMTypeRef *arg_types,
112 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
232 LLVMTypeRef arg_types[LP_MAX_FUNC_ARGS]; local
239 arg_types[i] = LLVMTypeOf(args[i]);
242 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args);
lp_bld_format_aos.c 795 LLVMTypeRef arg_types[4]; local
799 arg_types[0] = pi8t;
800 arg_types[1] = pi8t;
801 arg_types[2] = i32t;
802 arg_types[3] = i32t;
803 function_type = LLVMFunctionType(ret_type, arg_types,
804 ARRAY_SIZE(arg_types), 0);
900 LLVMTypeRef arg_types[4]; local
903 arg_types[0] = pf32t;
904 arg_types[1] = pi8t
    [all...]
lp_bld_const.h 163 LLVMTypeRef *arg_types,
lp_bld_const.c 469 LLVMTypeRef *arg_types,
476 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
lp_bld_format_s3tc.c 1962 LLVMTypeRef arg_types[3]; local
1971 arg_types[0] = pi8t;
1972 arg_types[1] = LLVMInt32TypeInContext(gallivm->context);
1973 arg_types[2] = LLVMTypeOf(cache); // XXX: put right type here
1974 function_type = LLVMFunctionType(ret_type, arg_types, ARRAY_SIZE(arg_types), 0);
1977 for (arg = 0; arg < ARRAY_SIZE(arg_types); ++arg)
1978 if (LLVMGetTypeKind(arg_types[arg]) == LLVMPointerTypeKind)
lp_bld_sample_soa.c 3574 LLVMTypeRef arg_types[LP_MAX_TEX_FUNC_ARGS]; local
3584 arg_types[num_param++] = LLVMTypeOf(params->context_ptr);
3586 arg_types[num_param++] = LLVMTypeOf(params->thread_data_ptr);
3589 arg_types[num_param++] = LLVMTypeOf(coords[0]);
3593 arg_types[num_param++] = LLVMTypeOf(coords[layer]);
3597 arg_types[num_param++] = LLVMTypeOf(coords[0]);
3601 arg_types[num_param++] = LLVMTypeOf(offsets[0]);
3607 arg_types[num_param++] = LLVMTypeOf(params->lod);
3611 arg_types[num_param++] = LLVMTypeOf(derivs->ddx[i]);
3612 arg_types[num_param++] = LLVMTypeOf(derivs->ddy[i])
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_state_fs_linear_llvm.c 260 LLVMTypeRef arg_types[4]; local
312 arg_types[0] = variant->jit_linear_context_ptr_type; /* context */
313 arg_types[1] = int32t; /* x */
314 arg_types[2] = int32t; /* y */
315 arg_types[3] = int32t; /* width */
317 func_type = LLVMFunctionType(ret_type, arg_types, ARRAY_SIZE(arg_types), 0);
327 for (i = 0; i < ARRAY_SIZE(arg_types); ++i) {
328 if (LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind) {
lp_state_cs.c 73 LLVMTypeRef arg_types[19]; local
106 arg_types[0] = variant->jit_cs_context_ptr_type; /* context */
107 arg_types[1] = int32_type; /* block_x_size */
108 arg_types[2] = int32_type; /* block_y_size */
109 arg_types[3] = int32_type; /* block_z_size */
110 arg_types[4] = int32_type; /* grid_x */
111 arg_types[5] = int32_type; /* grid_y */
112 arg_types[6] = int32_type; /* grid_z */
113 arg_types[7] = int32_type; /* grid_size_x */
114 arg_types[8] = int32_type; /* grid_size_y *
    [all...]
lp_state_setup.c 534 const LLVMTypeRef *arg_types,
539 if(LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind)
647 LLVMTypeRef arg_types[8]; local
684 arg_types[0] = LLVMPointerType(vec4f_type, 0); /* v0 */
685 arg_types[1] = LLVMPointerType(vec4f_type, 0); /* v1 */
686 arg_types[2] = LLVMPointerType(vec4f_type, 0); /* v2 */
687 arg_types[3] = LLVMInt32TypeInContext(gallivm->context); /* facing */
688 arg_types[4] = LLVMPointerType(vec4f_type, 0); /* a0, aligned */
689 arg_types[5] = LLVMPointerType(vec4f_type, 0); /* dadx, aligned */
690 arg_types[6] = LLVMPointerType(vec4f_type, 0); /* dady, aligned *
    [all...]
lp_jit.c 327 LLVMTypeRef arg_types[1]; local
332 arg_types[0] = LLVMPointerType(LLVMInt8TypeInContext(lc), 0);
335 func_type = LLVMFunctionType(ret_type, arg_types, ARRAY_SIZE(arg_types), 0);
lp_state_fs.c 2997 LLVMTypeRef arg_types[15]; local
3079 arg_types[0] = variant->jit_context_ptr_type; /* context */
3080 arg_types[1] = int32_type; /* x */
3081 arg_types[2] = int32_type; /* y */
3082 arg_types[3] = int32_type; /* facing */
3083 arg_types[4] = LLVMPointerType(fs_elem_type, 0); /* a0 */
3084 arg_types[5] = LLVMPointerType(fs_elem_type, 0); /* dadx */
3085 arg_types[6] = LLVMPointerType(fs_elem_type, 0); /* dady */
3086 arg_types[7] = LLVMPointerType(LLVMPointerType(int8_type, 0), 0); /* color */
3087 arg_types[8] = LLVMPointerType(int8_type, 0); /* depth *
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_state_setup.c 621 const LLVMTypeRef *arg_types,
626 if(LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind)
716 LLVMTypeRef arg_types[7]; local
753 arg_types[0] = LLVMPointerType(vec4f_type, 0); /* v0 */
754 arg_types[1] = LLVMPointerType(vec4f_type, 0); /* v1 */
755 arg_types[2] = LLVMPointerType(vec4f_type, 0); /* v2 */
756 arg_types[3] = LLVMInt32TypeInContext(gallivm->context); /* facing */
757 arg_types[4] = LLVMPointerType(vec4f_type, 0); /* a0, aligned */
758 arg_types[5] = LLVMPointerType(vec4f_type, 0); /* dadx, aligned */
759 arg_types[6] = LLVMPointerType(vec4f_type, 0); /* dady, aligned *
    [all...]
lp_state_fs.c 2413 LLVMTypeRef arg_types[13]; local
2492 arg_types[0] = variant->jit_context_ptr_type; /* context */
2493 arg_types[1] = int32_type; /* x */
2494 arg_types[2] = int32_type; /* y */
2495 arg_types[3] = int32_type; /* facing */
2496 arg_types[4] = LLVMPointerType(fs_elem_type, 0); /* a0 */
2497 arg_types[5] = LLVMPointerType(fs_elem_type, 0); /* dadx */
2498 arg_types[6] = LLVMPointerType(fs_elem_type, 0); /* dady */
2499 arg_types[7] = LLVMPointerType(LLVMPointerType(blend_vec_type, 0), 0); /* color */
2500 arg_types[8] = LLVMPointerType(int8_type, 0); /* depth *
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
dxil_function.c 197 const struct dxil_type *arg_types[MAX_FUNC_PARAMS]; local
207 arg_types[num_params++] = t;
212 arg_types, num_params);
dxil_module.h 299 const struct dxil_type **arg_types,
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
draw_llvm.c 1921 LLVMTypeRef arg_types[13]; local
1922 unsigned num_arg_types = ARRAY_SIZE(arg_types);
1976 arg_types[i++] = get_context_ptr_type(variant); /* context */
1977 arg_types[i++] = get_vertex_header_ptr_type(variant); /* vertex_header */
1978 arg_types[i++] = get_buffer_ptr_type(variant); /* vbuffers */
1979 arg_types[i++] = int32_type; /* count */
1980 arg_types[i++] = int32_type; /* start/fetch_elt_max */
1981 arg_types[i++] = int32_type; /* stride */
1982 arg_types[i++] = get_vb_ptr_type(variant); /* pipe_vertex_buffer's */
1983 arg_types[i++] = int32_type; /* instance_id *
2761 LLVMTypeRef arg_types[8]; local
3351 LLVMTypeRef arg_types[7]; local
3918 LLVMTypeRef arg_types[11]; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_llvm.c 1526 LLVMTypeRef arg_types[11]; local
1527 unsigned num_arg_types = ARRAY_SIZE(arg_types);
1581 arg_types[i++] = get_context_ptr_type(variant); /* context */
1582 arg_types[i++] = get_vertex_header_ptr_type(variant); /* vertex_header */
1583 arg_types[i++] = get_buffer_ptr_type(variant); /* vbuffers */
1584 arg_types[i++] = int32_type; /* count */
1585 arg_types[i++] = int32_type; /* start/fetch_elt_max */
1586 arg_types[i++] = int32_type; /* stride */
1587 arg_types[i++] = get_vb_ptr_type(variant); /* pipe_vertex_buffer's */
1588 arg_types[i++] = int32_type; /* instance_id *
2233 LLVMTypeRef arg_types[7]; local
    [all...]

Completed in 27 milliseconds

1 2