Lines Matching defs:op0
2632 const struct dxil_value *op0, const struct dxil_value *op1,
2635 assert(types_equal(op0->type, op1->type));
2636 assert(legal_arith_type(op0->type));
2637 struct dxil_instr *instr = create_instr(m, INSTR_BINOP, op0->type);
2642 instr->binop.operands[0] = op0;
2651 const struct dxil_value *op0, const struct dxil_value *op1)
2653 assert(types_equal(op0->type, op1->type));
2654 assert(legal_arith_type(op0->type));
2660 instr->cmp.operands[0] = op0;
2668 const struct dxil_value *op0,
2672 assert(types_equal(op0->type, get_int1_type(m)));
2680 instr->select.operands[0] = op0;