/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_peephole.cpp | 66 f->bc.set_op(f->bc.op - FETCH_OP_GDS_ADD_RET + FETCH_OP_GDS_ADD); in run_on() 74 a->bc.set_op(a->bc.op - LDS_OP2_LDS_ADD_RET + LDS_OP2_LDS_ADD); in run_on() 108 ns->bc.set_op(ns->bc.op + (ALU_OP2_SETE_DX10 - ALU_OP2_SETE)); in convert_float_setcc() 194 a->bc.set_op(newop); in optimize_cc_op2() 302 a->bc.set_op(get_cndcc_op(dcc, dcmp_type)); in optimize_CNDcc_op()
|
H A D | sb_bc_finalize.cpp | 46 a->bc.set_op(ALU_OP0_NOP); in insert_rv6xx_load_ar_workaround() 84 a->bc.set_op(ALU_OP0_NOP); in run() 115 le->bc.set_op(CF_OP_EXPORT_DONE); in run() 555 n->bc.set_op(ops[op]); in emit_set_grad() 571 n->bc.set_op(FETCH_OP_SET_TEXTURE_OFFSETS); in emit_set_texture_offsets() 717 c->bc.set_op(CF_OP_EXPORT); in finalize_cf() 968 c->bc.set_op(CF_OP_ALU); in cf_peephole() 995 a->bc.set_op(CF_OP_ALU_POP_AFTER); in cf_peephole()
|
H A D | sb_if_conversion.cpp | 97 a->bc.set_op(branch ? ALU_OP2_KILLE_INT : ALU_OP2_KILLNE_INT); in convert_kill_instructions() 259 newpredset->bc.set_op(newopcode); in run_on() 299 n->bc.set_op(ALU_OP3_CNDE_INT); in convert_phi()
|
H A D | sb_shader.cpp | 91 case NST_ALU_CLAUSE: n->bc.set_op(CF_OP_ALU); break; in create_clause() 92 case NST_TEX_CLAUSE: n->bc.set_op(CF_OP_TEX); break; in create_clause() 93 case NST_VTX_CLAUSE: n->bc.set_op(CF_OP_VTX); break; in create_clause() 94 case NST_GDS_CLAUSE: n->bc.set_op(CF_OP_GDS); break; in create_clause() 112 n->bc.set_op(ALU_OP1_MOV); in create_mov() 420 c->bc.set_op(op); in create_cf()
|
H A D | sb_bc_decoder.cpp | 45 bc.set_op(r600_isa_cf_by_opcode(ctx.isa, opcode, 0)); in decode_cf() 127 bc.set_op(r600_isa_cf_by_opcode(ctx.isa, w1.get_CF_INST(), 1)); in decode_cf_alu() 141 bc.set_op(r600_isa_cf_by_opcode(ctx.isa, w1.get_CF_INST(), 1)); in decode_cf_alu() 311 bc.set_op(r600_isa_alu_by_opcode(ctx.isa, w1.get_ALU_INST(), 1)); in decode_alu() 364 bc.set_op(r600_isa_alu_by_opcode(ctx.isa, w1.get_ALU_INST(), 0)); in decode_alu() 383 bc.set_op(r600_isa_alu_by_opcode(ctx.isa, w1.get_ALU_INST(), 0)); in decode_alu() 426 bc.set_op(fetch_opcode); in decode_fetch() 428 bc.set_op(r600_isa_fetch_by_opcode(ctx.isa, fetch_opcode)); in decode_fetch()
|
H A D | sb_expr.cpp | 57 n.bc.set_op(ALU_OP1_MOV); in convert_to_mov() 495 n->bc.set_op(ieee ? ALU_OP3_MULADD_IEEE : ALU_OP3_MULADD); in fold_mul_add() 532 n->bc.set_op(ieee ? ALU_OP3_MULADD_IEEE : ALU_OP3_MULADD); in fold_mul_add() 718 n->bc.set_op(ALU_OP2_ADD); in fold_assoc() 767 n.bc.set_op(ALU_OP2_MUL); in fold_alu_op2() 1039 add->bc.set_op(ALU_OP2_ADD); in fold_alu_op3() 1070 n.bc.set_op(op); in fold_alu_op3() 1095 n.bc.set_op(ALU_OP2_ADD); in fold_alu_op3() 1121 n.bc.set_op(op); in fold_alu_op3() 1129 n.bc.set_op(o in fold_alu_op3() [all...] |
H A D | sb_bc.h | 480 void set_op(unsigned op) { this->op = op; op_ptr = r600_isa_cf(op); } in set_op() function 537 void set_op(unsigned op) { in set_op() function 631 void set_op(unsigned op) { this->op = op; op_ptr = r600_isa_fetch(op); } in set_op() function
|
H A D | sb_psi_ops.cpp | 163 a->bc.set_op(ALU_OP3_CNDE_INT); in eliminate()
|
H A D | sb_sched.cpp | 851 a->bc.set_op(ALU_OP0_SET_CF_IDX0); in create_set_idx() 853 a->bc.set_op(ALU_OP0_SET_CF_IDX1); in create_set_idx() 2026 clause->bc.set_op(CF_OP_ALU_PUSH_BEFORE); in emit_clause() 2171 a->bc.set_op(ALU_OP1_MOVA_GPR_INT); in create_ar_load() 2174 a->bc.set_op(ALU_OP1_MOVA_INT); in create_ar_load()
|
H A D | sb_bc_parser.cpp | 793 c->bc.set_op(CF_OP_EXPORT); in prepare_ir() 914 prev->bc.set_op(CF_OP_EMIT_CUT_VERTEX); in prepare_ir()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_peephole.cpp | 128 alu->set_op(op1_mov); in convert_to_mov() 232 m_pred->set_op(new_op); in visit()
|
H A D | sfn_instr_alu.h | 98 void set_op(EAluOp op) {m_opcode = op;} in set_op() function in r600::AluInstr
|
/third_party/node/deps/v8/src/compiler/ |
H A D | node-properties.cc | 158 graph->end()->set_op(common->End(graph->end()->InputCount())); in MergeControlToEnd() 174 graph->end()->set_op(common->End(graph->end()->InputCount())); in RemoveControlFromEnd() 206 node->set_op(new_op); in ChangeOp()
|
H A D | node.h | 274 void set_op(const Operator* op) { op_ = op; } in set_op() function in v8::internal::compiler::final
|
/third_party/gn/src/gn/ |
H A D | parser.cc | 501 unary_op->set_op(token); in Not() 526 binary_op->set_op(token); in BinaryOperator() 588 assign->set_op(token); in Assignment()
|
H A D | parse_tree.h | 245 void set_op(const Token& t) { op_ = t; } in set_op() function in BinaryOpNode 546 void set_op(const Token& t) { op_ = t; } in set_op() function in UnaryOpNode
|
H A D | operators_unittest.cc | 56 set_op(op_token_ownership_); in TestBinaryOpNode()
|