HomeSort by relevance Sort by last modified time
    Searched refs:exec_node (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/mesa3d/src/compiler/glsl/
list.h 53 struct exec_node { struct
54 struct exec_node *next;
55 struct exec_node *prev;
58 DECLARE_RZALLOC_CXX_OPERATORS(exec_node)
60 exec_node() : next(NULL), prev(NULL) function in struct:exec_node
65 const exec_node *get_next() const;
66 exec_node *get_next();
68 const exec_node *get_prev() const;
69 exec_node *get_prev();
83 void insert_after(exec_node *after)
    [all...]
ir_variable_refcount.h 40 exec_node link;
loop_analysis.h 53 class loop_variable_state : public exec_node {
130 class loop_variable : public exec_node {
196 class loop_terminator : public exec_node {
ir_function.cpp 46 const exec_node *node_a = list_a->get_head_raw();
47 const exec_node *node_b = list_b->get_head_raw();
225 const exec_node *node_a = sig->parameters.get_head_raw();
226 const exec_node *node_b = (*other)->parameters.get_head_raw();
227 const exec_node *node_p = actual_parameters->get_head_raw();
371 const exec_node *node_a = list_a->get_head_raw();
372 const exec_node *node_b = list_b->get_head_raw();
lower_int64.cpp 151 exec_node *const after = &instructions->head_sentinel;
152 exec_node *const before = instructions->head_sentinel.next;
153 exec_node *const head = v.function_list.head_sentinel.next;
154 exec_node *const tail = v.function_list.tail_sentinel.prev;
301 exec_node *const after = base_ir;
302 exec_node *const before = after->prev;
303 exec_node *const head = instructions.head_sentinel.next;
304 exec_node *const tail = instructions.tail_sentinel.prev;
opt_dead_functions.cpp 37 class signature_entry : public exec_node
ir_variable_refcount.cpp 51 exec_node *n;
linker.h 203 struct exec_node link;
s_expression.h 52 class s_expression : public exec_node
link_functions.cpp 197 const exec_node *formal_param_node = ir->callee->parameters.get_head();
199 const exec_node *actual_param_node = ir->actual_parameters.get_head();
opt_copy_propagation_elements.cpp 60 class acp_ref : public exec_node
70 class acp_entry : public exec_node
73 /* override operator new from exec_node */
93 class kill_entry : public exec_node
96 /* override operator new from exec_node */
ir_function_detect_recursion.cpp 132 struct call_node : public exec_node {
  /external/mesa3d/src/intel/compiler/
brw_disasm_info.h 38 struct exec_node link;
brw_disasm_info.c 40 struct exec_node *next_node = exec_node_get_next(&group->link);
164 struct exec_node *next_node = exec_node_get_next(&cur->link);
brw_shader.h 98 struct backend_instruction : public exec_node {
129 struct exec_node link;
brw_fs_combine_constants.cpp 87 struct exec_node link;
91 static struct exec_node *
277 exec_node *n = (imm->inst ? imm->inst :
brw_cfg.h 45 struct exec_node link;
81 struct exec_node link;
brw_fs_builder.h 87 at(bblock_t *block, exec_node *cursor) const
103 return at(NULL, (exec_node *)&shader->instructions.tail_sentinel);
648 exec_node *cursor;
brw_vec4_builder.h 83 at(bblock_t *block, exec_node *cursor) const
99 return at(NULL, (exec_node *)&shader->instructions.tail_sentinel);
620 exec_node *cursor;
brw_shader.cpp 1051 exec_node::insert_after(inst);
1066 exec_node::insert_before(inst);
1080 exec_node::insert_before(list);
1096 exec_node::remove();
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_opt_dce.c 33 struct exec_node node;
49 struct exec_node *node = exec_list_pop_head(worklist);
nir.h 172 struct exec_node node;
379 struct exec_node node;
435 struct exec_node node;
451 struct exec_node *next = exec_node_get_next(&instr->node);
461 struct exec_node *prev = exec_node_get_prev(&instr->node);
    [all...]
nir_phi_builder.c 49 struct exec_node node;
267 struct exec_node *head = exec_list_get_head(&val->phis);
  /external/mesa3d/src/intel/tools/
disasm.c 90 struct exec_node *next_node = exec_node_get_next(&group->link);
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi_private.h 112 class glsl_to_tgsi_instruction : public exec_node {

Completed in 429 milliseconds

1 2 3