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

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
arbprogparse.c 34 Notes on program parameters, etc.
42 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal
43 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be:
45 + a pointer to a "program.local[k]" parameter, or
46 + a pointer to a "program.env[k]" parameter
48 Basically, all the program.local[] and program.env[] values will get mapped
50 having three separate program parameter arrays.
70 struct gl_program *program)
81 state.mem_ctx = program;
    [all...]
arbprogparse.h 37 struct gl_program *program);
42 struct gl_program *program);
prog_optimize.h 43 _mesa_optimize_program(struct gl_program *program, void *mem_ctx);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
arbprogparse.c 34 Notes on program parameters, etc.
42 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal
43 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be:
45 + a pointer to a "program.local[k]" parameter, or
46 + a pointer to a "program.env[k]" parameter
48 Basically, all the program.local[] and program.env[] values will get mapped
50 having three separate program parameter arrays.
70 struct gl_program *program)
81 state.mem_ctx = program;
    [all...]
arbprogparse.h 37 struct gl_program *program);
42 struct gl_program *program);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
i915_debug_private.h 41 void i915_disassemble_program(const unsigned *program, unsigned sz);
i915_debug_fp.c 192 print_arith_op(char **stream, unsigned opcode, const unsigned *program)
195 print_dest_reg(stream, program[0]);
196 if (program[0] & A0_DEST_SATURATE)
204 print_src_reg(stream, GET_SRC0_REG(program[0], program[1]));
209 print_src_reg(stream, GET_SRC1_REG(program[1], program[2]));
214 print_src_reg(stream, GET_SRC2_REG(program[2]));
219 print_tex_op(char **stream, unsigned opcode, const unsigned *program)
221 print_dest_reg(stream, program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
i915_debug.h 36 extern void i915_disassemble_program(const unsigned *program, unsigned sz);
i915_debug_fp.c 245 print_arith_op(GLuint opcode, const GLuint * program)
248 print_dest_reg(program[0]);
249 if (program[0] & A0_DEST_SATURATE)
257 print_src_reg(GET_SRC0_REG(program[0], program[1]));
264 print_src_reg(GET_SRC1_REG(program[1], program[2]));
271 print_src_reg(GET_SRC2_REG(program[2]));
278 print_tex_op(GLuint opcode, const GLuint * program)
280 print_dest_reg(program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
i915_debug.h 36 extern void i915_disassemble_program(const unsigned *program, unsigned sz);
i915_debug_fp.c 242 print_arith_op(GLuint opcode, const GLuint * program)
245 print_dest_reg(program[0]);
246 if (program[0] & A0_DEST_SATURATE)
254 print_src_reg(GET_SRC0_REG(program[0], program[1]));
261 print_src_reg(GET_SRC1_REG(program[1], program[2]));
268 print_src_reg(GET_SRC2_REG(program[2]));
275 print_tex_op(GLuint opcode, const GLuint * program)
277 print_dest_reg(program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_interface.cpp 67 validate(aco::Program* program)
72 ASSERTED bool is_valid = aco::validate_ir(program);
83 std::unique_ptr<aco::Program> program{new aco::Program};
85 program->collect_statistics = args->options->record_stats;
86 if (program->collect_statistics)
87 memset(program->statistics, 0, sizeof(program->statistics))
    [all...]
aco_dominance.cpp 42 dominator_tree(Program* program)
44 program->blocks[0].logical_idom = 0;
45 program->blocks[0].linear_idom = 0;
47 for (unsigned i = 1; i < program->blocks.size(); i++) {
48 Block& block = program->blocks[i];
52 if ((int)program->blocks[pred_idx].logical_idom == -1)
62 pred_idx = program->blocks[pred_idx].logical_idom;
64 new_logical_idom = program->blocks[new_logical_idom].logical_idom;
69 if ((int)program->blocks[pred_idx].linear_idom == -1
    [all...]
aco_reindex_ssa.cpp 64 reindex_program(idx_ctx& ctx, Program* program)
66 ctx.renames.resize(program->peekAllocationId());
68 for (Block& block : program->blocks) {
82 for (Block& block : program->blocks) {
89 /* update program members */
90 program->private_segment_buffer = Temp(ctx.renames[program->private_segment_buffer.id()],
91 program->private_segment_buffer.regClass());
92 program->scratch_offset
    [all...]
aco_live_var_analysis.cpp 92 process_live_temps_per_block(Program* program, live& lives, Block* block, unsigned& worklist,
104 new_demand += Temp(t, program->temp_rc[t]);
122 program->needs_vcc = true;
151 program->needs_vcc = true;
175 if (program->progress < CompilationProgress::after_ra)
193 program->needs_vcc = true;
215 RegClass rc = program->temp_rc[t];
220 aco_err(program, "Temporary never defined or are defined after use: %%%d in BB%d", t,
244 program->needs_vcc = true
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/
pan_assemble.c 66 midgard_program program = { local
70 midgard_compile_shader_nir(s, &program, false);
73 int size = program.compiled.size;
74 dst = program.compiled.data;
80 meta->shader = panfrost_upload(&ctx->shaders, dst, size, true) | program.first_tag;
82 util_dynarray_fini(&program.compiled);
85 program.uniform_count += program.sysval_count;
86 state->sysval_count = program.sysval_count;
87 memcpy(state->sysval, program.sysvals, sizeof(state->sysval[0]) * state->sysval_count)
    [all...]
  /xsrc/external/mit/xorg-cf-files/dist/
Motif.rules 52 #define MSimpleProgramTarget(program) @@\
53 AllTarget(program) @@\
55 program: program.o $(DEPS) $(DEPLIBS) @@\
57 $(CC) -o $@ program.o $(LDOPTIONS) $(DEPS) $(LOCAL_LIBRARIES) $(LDLIBS) $(EXTRA_LOAD_FLAGS) @@\
60 $(RM) program
64 #define MSimpleUilTarget(program) @@\
65 MSimpleProgramTarget(program) @@\
67 InstallProgram(program,$(BINDIR)) @@\
69 MSimpleUidTarget(program)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
program_resource.h 32 _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface,
36 _mesa_GetProgramResourceIndex(GLuint program, GLenum programInterface,
40 _mesa_GetProgramResourceName(GLuint program, GLenum programInterface,
45 _mesa_GetProgramResourceiv(GLuint program, GLenum programInterface,
51 _mesa_GetProgramResourceLocation(GLuint program, GLenum programInterface,
55 _mesa_GetProgramResourceLocationIndex(GLuint program, GLenum programInterface,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
program_resource.h 32 _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface,
36 _mesa_GetProgramResourceIndex(GLuint program, GLenum programInterface,
40 _mesa_GetProgramResourceName(GLuint program, GLenum programInterface,
45 _mesa_GetProgramResourceiv(GLuint program, GLenum programInterface,
51 _mesa_GetProgramResourceLocation(GLuint program, GLenum programInterface,
55 _mesa_GetProgramResourceLocationIndex(GLuint program, GLenum programInterface,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
i915_debug_private.h 43 const unsigned *program, unsigned sz);
i915_debug_fp.c 258 unsigned opcode, const unsigned * program)
261 print_dest_reg(stream, program[0]);
262 if (program[0] & A0_DEST_SATURATE)
270 print_src_reg(stream, GET_SRC0_REG(program[0], program[1]));
277 print_src_reg(stream, GET_SRC1_REG(program[1], program[2]));
284 print_src_reg(stream, GET_SRC2_REG(program[2]));
292 unsigned opcode, const unsigned * program)
294 print_dest_reg(stream, program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_compute.c 58 const struct si_compute *program,
61 if (!program->use_code_object_v2) {
65 (program->shader.binary.code + symbol_offset);
86 struct si_compute *program = (struct si_compute *)job; local
87 struct si_shader *shader = &program->shader;
90 struct pipe_debug_callback *debug = &program->compiler_ctx_state.debug;
91 struct si_screen *sscreen = program->screen;
102 if (program->ir_type == PIPE_SHADER_IR_TGSI) {
103 tgsi_scan_shader(program->ir.tgsi, &sel.info);
104 sel.tokens = program->ir.tgsi
204 struct si_compute *program = CALLOC_STRUCT(si_compute); local
270 struct si_compute *program = (struct si_compute*)state; local
297 struct si_compute *program = sctx->cs_shader_state.program; local
567 struct si_compute *program = sctx->cs_shader_state.program; local
658 struct si_compute *program = sctx->cs_shader_state.program; local
720 struct si_compute *program = sctx->cs_shader_state.program; local
860 struct si_compute *program = sctx->cs_shader_state.program; local
982 struct si_compute *program = (struct si_compute *)state; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
program.cpp 24 #include "core/program.hpp"
28 program::program(clover::context &ctx, std::string &&source, function in class:program
34 program::program(clover::context &ctx, function in class:program
46 program::compile(const ref_vector<device> &devs, const std::string &opts,
67 program::link(const ref_vector<device> &devs, const std::string &opts,
68 const ref_vector<program> &progs) {
72 const std::vector<binary> bs = map([&](const program &prog) {
87 enum program::il_typ
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/
test_assembler.cpp 55 bld.reset(program->create_and_insert_block());
57 program->blocks[1].linear_preds.push_back(0u);
75 bld.reset(program->create_and_insert_block());
84 bld.reset(program->create_and_insert_block());
86 program->blocks[2].linear_preds.push_back(0u);
87 program->blocks[2].linear_preds.push_back(1u);
106 bld.reset(program->create_and_insert_block());
116 bld.reset(program->create_and_insert_block());
118 program->blocks[1].linear_preds.push_back(0u);
119 program->blocks[2].linear_preds.push_back(0u)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
program.cpp 23 #include "core/program.hpp"
28 program::program(clover::context &ctx, const std::string &source) : function in class:program
33 program::program(clover::context &ctx, function in class:program
45 program::compile(const ref_vector<device> &devs, const std::string &opts,
67 program::link(const ref_vector<device> &devs, const std::string &opts,
68 const ref_vector<program> &progs) {
72 const std::vector<module> ms = map([&](const program &prog) {
89 program::source() const
    [all...]

Completed in 13 milliseconds

1 2 3 4 5 6 7 8 91011>>