Searched refs:fetch_node (Results 1 – 21 of 21) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_pass.h | 65 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 …]
|
D | sb_ir.cpp | 38 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()
|
D | sb_bc_finalize.cpp | 288 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()
|
D | sb_dump.cpp | 188 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()
|
D | sb_shader.cpp | 290 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()
|
D | sb_bc.h | 47 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);
|
D | sb_bc_builder.cpp | 130 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()
|
D | sb_expr.h | 71 bool fold(fetch_node &n);
|
D | sb_pass.cpp | 78 bool vpass::visit(fetch_node& n, bool enter) { return true; } in visit()
|
D | sb_peephole.cpp | 56 fetch_node *f = static_cast<fetch_node*>(n); in run_on()
|
D | sb_dce_cleanup.cpp | 100 bool dce_cleanup::visit(fetch_node& n, bool enter) { in visit()
|
D | sb_ssa_builder.cpp | 81 bool ssa_prepare::visit(fetch_node& n, bool enter) { in visit() 231 bool ssa_rename::visit(fetch_node& n, bool enter) { in visit()
|
D | sb_gvn.cpp | 111 bool gvn::visit(fetch_node& n, bool enter) { in visit()
|
D | sb_bc_dump.cpp | 101 bool bc_dump::visit(fetch_node& n, bool enter) { in visit() 477 void bc_dump::dump(fetch_node& n) { in dump()
|
D | sb_bc_parser.cpp | 638 fetch_node *n = sh->create_fetch(); in decode_fetch_clause() 655 fetch_node *n = static_cast<fetch_node*>(*I); in prepare_fetch_clause()
|
D | sb_shader.h | 362 fetch_node* create_fetch();
|
D | sb_liveness.cpp | 101 bool liveness::visit(fetch_node& n, bool enter) { in visit()
|
D | sb_ir.h | 1061 class fetch_node : public node { 1063 fetch_node() : node(NT_OP, NST_FETCH_INST) { memset(&bc, 0, sizeof(bc_fetch)); }; in fetch_node() function
|
D | sb_gcm.cpp | 414 static_cast<fetch_node *>(n)->bc.sampler_index_mode != V_SQ_CF_INDEX_NONE) in bu_sched_bb()
|
D | sb_sched.cpp | 916 fetch_node *f = static_cast<fetch_node*>(n); in process_fetch()
|
D | sb_expr.cpp | 292 bool expr_handler::fold(fetch_node& n) { in fold()
|