Lines Matching defs:op0
2586 const struct dxil_value *op0, const struct dxil_value *op1,
2589 assert(types_equal(op0->type, op1->type));
2590 assert(legal_arith_type(op0->type));
2591 struct dxil_instr *instr = create_instr(m, INSTR_BINOP, op0->type);
2596 instr->binop.operands[0] = op0;
2605 const struct dxil_value *op0, const struct dxil_value *op1)
2607 assert(types_equal(op0->type, op1->type));
2608 assert(legal_arith_type(op0->type));
2614 instr->cmp.operands[0] = op0;
2622 const struct dxil_value *op0,
2626 assert(types_equal(op0->type, get_int1_type(m)));
2634 instr->select.operands[0] = op0;