Home
last modified time | relevance | path

Searched refs:fetch_node (Results 1 – 21 of 21) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_pass.h65 virtual bool visit(fetch_node &n, bool enter);
109 virtual bool visit(fetch_node &n, bool enter);
115 void dump(fetch_node& n);
136 virtual bool visit(fetch_node &n, bool enter);
183 virtual bool visit(fetch_node &n, bool enter);
325 virtual bool visit(fetch_node &n, bool enter);
379 virtual bool visit(fetch_node &n, bool enter);
604 virtual bool visit(fetch_node &n, bool enter);
658 virtual bool visit(fetch_node &n, bool enter);
712 void emit_set_grad(fetch_node* f);
[all …]
Dsb_ir.cpp38 bool fetch_node::accept(vpass& p, bool enter) { return p.visit(*this, enter); } in accept()
307 bool fetch_node::fold_dispatch(expr_handler* ex) { return ex->fold(*this); } in fold_dispatch()
384 fetch_node *c = static_cast<fetch_node*>(this); in is_fetch_op()
418 fetch_node *c = static_cast<fetch_node*>(this); in fetch_op_flags()
Dsb_bc_finalize.cpp288 finalize_fetch(static_cast<fetch_node*>(n)); in run_on()
488 void bc_finalizer::copy_fetch_src(fetch_node &dst, fetch_node &src, unsigned arg_start) in copy_fetch_src()
546 void bc_finalizer::emit_set_grad(fetch_node* f) { in emit_set_grad()
554 fetch_node *n = sh.create_fetch(); in emit_set_grad()
566 void bc_finalizer::emit_set_texture_offsets(fetch_node &f) { in emit_set_texture_offsets()
569 fetch_node *n = sh.create_fetch(); in emit_set_texture_offsets()
578 void bc_finalizer::finalize_fetch(fetch_node* f) { in finalize_fetch()
Dsb_dump.cpp188 bool dump::visit(fetch_node& n, bool enter) { in visit()
371 fetch_node *f = static_cast<fetch_node*>(&n); in dump_op()
473 dump_op(*n, static_cast<fetch_node*>(n)->bc.op_ptr->name); in dump_op()
Dsb_shader.cpp290 fetch_node* shader::create_fetch() { in create_fetch()
291 fetch_node* n = new (pool.allocate(sizeof(fetch_node))) fetch_node(); in create_fetch()
598 fetch_node *f = static_cast<fetch_node*>(n); in get_queue_id()
Dsb_bc.h47 class fetch_node; variable
1029 int build_fetch_tex(fetch_node *n);
1030 int build_fetch_vtx(fetch_node *n);
1031 int build_fetch_gds(fetch_node *n);
1032 int build_fetch_mem(fetch_node* n);
Dsb_bc_builder.cpp130 fetch_node *f = static_cast<fetch_node*>(*I); in build_fetch_clause()
501 int bc_builder::build_fetch_tex(fetch_node* n) { in build_fetch_tex()
565 int bc_builder::build_fetch_gds(fetch_node *n) { in build_fetch_gds()
605 int bc_builder::build_fetch_vtx(fetch_node* n) { in build_fetch_vtx()
704 int bc_builder::build_fetch_mem(fetch_node* n) { in build_fetch_mem()
Dsb_expr.h71 bool fold(fetch_node &n);
Dsb_pass.cpp78 bool vpass::visit(fetch_node& n, bool enter) { return true; } in visit()
Dsb_peephole.cpp56 fetch_node *f = static_cast<fetch_node*>(n); in run_on()
Dsb_dce_cleanup.cpp100 bool dce_cleanup::visit(fetch_node& n, bool enter) { in visit()
Dsb_ssa_builder.cpp81 bool ssa_prepare::visit(fetch_node& n, bool enter) { in visit()
231 bool ssa_rename::visit(fetch_node& n, bool enter) { in visit()
Dsb_gvn.cpp111 bool gvn::visit(fetch_node& n, bool enter) { in visit()
Dsb_bc_dump.cpp101 bool bc_dump::visit(fetch_node& n, bool enter) { in visit()
477 void bc_dump::dump(fetch_node& n) { in dump()
Dsb_bc_parser.cpp638 fetch_node *n = sh->create_fetch(); in decode_fetch_clause()
655 fetch_node *n = static_cast<fetch_node*>(*I); in prepare_fetch_clause()
Dsb_shader.h362 fetch_node* create_fetch();
Dsb_liveness.cpp101 bool liveness::visit(fetch_node& n, bool enter) { in visit()
Dsb_ir.h1061 class fetch_node : public node {
1063 fetch_node() : node(NT_OP, NST_FETCH_INST) { memset(&bc, 0, sizeof(bc_fetch)); }; in fetch_node() function
Dsb_gcm.cpp414 static_cast<fetch_node *>(n)->bc.sampler_index_mode != V_SQ_CF_INDEX_NONE) in bu_sched_bb()
Dsb_sched.cpp916 fetch_node *f = static_cast<fetch_node*>(n); in process_fetch()
Dsb_expr.cpp292 bool expr_handler::fold(fetch_node& n) { in fold()