HomeSort by relevance Sort by last modified time
    Searched refs:OP_MOV (Results 1 - 13 of 13) sorted by null

  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.cpp 173 Instruction *insn = new_Instruction(func, OP_MOV, ty);
185 Instruction *insn = new_Instruction(func, OP_MOV, typeOfSize(src->reg.size));
198 Instruction *insn = new_Instruction(func, OP_MOV, typeOfSize(dst->reg.size));
395 return mkOp1v(OP_MOV, TYPE_F32, dst ? dst : getScratch(), mkImm(f));
401 return mkOp1v(OP_MOV, TYPE_U32, dst ? dst : getScratch(), mkImm(u));
407 return mkOp1v(OP_MOV, TYPE_U64, dst ? dst : getScratch(8), mkImm(u));
nv50_ir_peephole.cpp 50 if (op == OP_MOV || op == OP_UNION) {
99 if (mov->op != OP_MOV || mov->fixed || !mov->getSrc(0)->asLValue())
138 if (!ld || (ld->op != OP_MOV) || (typeSizeof(ld->dType) != 4))
208 if (!ld || ld->fixed || (ld->op != OP_LOAD && ld->op != OP_MOV))
271 if (i->op == OP_MOV || i->op == OP_CALL)
306 case OP_MOV:
382 return OP_MOV;
516 i->op = OP_MOV;
545 i->op = OP_MOV;
626 i->op = OP_MOV;
    [all...]
nv50_ir_ra.cpp 370 mov = new_Instruction(func, OP_MOV, TYPE_U32);
402 new_Instruction(func, OP_MOV, typeOfSize(tmp->reg.size));
416 new_Instruction(func, OP_MOV, typeOfSize(tmp->reg.size));
943 case OP_MOV:
    [all...]
nv50_ir_lowering_nv50.cpp 232 if (i->op != OP_MOV && i->op != OP_PFETCH &&
450 bld.mkOp1(OP_MOV, ty, t, q)->setPredicate(CC_NS, cond);
997 i->op = OP_MOV;
nv50_ir.h 48 OP_MOV, // simple copy, no modifiers allowed
654 inline bool isPseudo() const { return op < OP_MOV; }
nv50_ir_emit_nv50.cpp 391 assert(i->op == OP_MOV);
949 const int s = (i->op == OP_MOV) ? 0 : 1;
    [all...]
nv50_ir_from_sm4.cpp 407 case SM4_OPCODE_MOV: return OP_MOV;
408 case SM4_OPCODE_MOVC: return OP_MOV;
484 case SM4_OPCODE_DMOV: return OP_MOV;
485 case SM4_OPCODE_DMOVC: return OP_MOV;
    [all...]
nv50_ir_target_nv50.cpp 157 opInfo[i].pseudo = (i < OP_MOV);
nv50_ir.cpp 103 if (insn && insn->op == OP_MOV) {
106 WARN("OP_MOV with modifier encountered !\n");
nv50_ir_from_tgsi.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 302 opInfo[i].pseudo = (i < OP_MOV);
653 if (a->op == OP_MOV || b->op == OP_MOV)
nv50_ir_lowering_nvc0.cpp 204 while (insn->op == OP_MOV && insn->getDef(0)->equals(insn->getSrc(0)))
256 if (usei->op == OP_MOV && usei->getDef(0)->equals(usei->getSrc(0)) &&
564 if (i->op != OP_MOV && i->op != OP_PFETCH)
995 i->op = OP_MOV;
    [all...]
nv50_ir_emit_nvc0.cpp 317 i->op == OP_MOV || i->op == OP_PRESIN || i->op == OP_PREEX2);
    [all...]

Completed in 66 milliseconds