Searched refs:OP_MOV (Results 1 – 13 of 13) sorted by relevance
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_build_util.cpp | 173 Instruction *insn = new_Instruction(func, OP_MOV, ty); in mkMov() 185 Instruction *insn = new_Instruction(func, OP_MOV, typeOfSize(src->reg.size)); in mkMovToReg() 198 Instruction *insn = new_Instruction(func, OP_MOV, typeOfSize(dst->reg.size)); in mkMovFromReg() 395 return mkOp1v(OP_MOV, TYPE_F32, dst ? dst : getScratch(), mkImm(f)); in loadImm() 401 return mkOp1v(OP_MOV, TYPE_U32, dst ? dst : getScratch(), mkImm(u)); in loadImm() 407 return mkOp1v(OP_MOV, TYPE_U64, dst ? dst : getScratch(8), mkImm(u)); in loadImm()
|
D | nv50_ir_peephole.cpp | 50 if (op == OP_MOV || op == OP_UNION) { in isNop() 99 if (mov->op != OP_MOV || mov->fixed || !mov->getSrc(0)->asLValue()) in visit() 138 if (!ld || (ld->op != OP_MOV) || (typeSizeof(ld->dType) != 4)) in isImmd32Load() 208 if (!ld || ld->fixed || (ld->op != OP_LOAD && ld->op != OP_MOV)) in visit() 271 if (i->op == OP_MOV || i->op == OP_CALL) in visit() 306 case OP_MOV: in findOriginForTestWithZero() 382 return OP_MOV; in getOp() 516 i->op = OP_MOV; in expr() 545 i->op = OP_MOV; in unary() 626 i->op = OP_MOV; in opnd() [all …]
|
D | nv50_ir_ra.cpp | 370 mov = new_Instruction(func, OP_MOV, TYPE_U32); in visit() 402 new_Instruction(func, OP_MOV, typeOfSize(tmp->reg.size)); in visit() 416 new_Instruction(func, OP_MOV, typeOfSize(tmp->reg.size)); in visit() 943 case OP_MOV: in doCoalesce() 1955 mov = new_Instruction(func, OP_MOV, typeOfSize(size)); in insertConstraintMoves() 1985 mov = new_Instruction(func, OP_MOV, typeOfSize(size)); in insertConstraintMoves()
|
D | nv50_ir.h | 48 OP_MOV, // simple copy, no modifiers allowed enumerator 654 inline bool isPseudo() const { return op < OP_MOV; } in isPseudo()
|
D | nv50_ir_lowering_nv50.cpp | 232 if (i->op != OP_MOV && i->op != OP_PFETCH && in visit() 450 bld.mkOp1(OP_MOV, ty, t, q)->setPredicate(CC_NS, cond); in handleDIV() 997 i->op = OP_MOV; in handleEXPORT()
|
D | nv50_ir_emit_nv50.cpp | 391 assert(i->op == OP_MOV); in setSrcFileBits() 949 const int s = (i->op == OP_MOV) ? 0 : 1; in emitAADD() 1538 case OP_MOV: in emitInstruction()
|
D | nv50_ir_target_nv50.cpp | 157 opInfo[i].pseudo = (i < OP_MOV); in initOpInfo()
|
D | nv50_ir_from_sm4.cpp | 407 case SM4_OPCODE_MOV: return OP_MOV; in cvtOpcode() 408 case SM4_OPCODE_MOVC: return OP_MOV; in cvtOpcode() 484 case SM4_OPCODE_DMOV: return OP_MOV; in cvtOpcode() 485 case SM4_OPCODE_DMOVC: return OP_MOV; in cvtOpcode()
|
D | nv50_ir.cpp | 103 if (insn && insn->op == OP_MOV) { in getImmediate()
|
D | nv50_ir_from_tgsi.cpp | 1828 mkOp1(OP_MOV, TYPE_F32, dst0[c], val0); in handleInstruction()
|
/external/mesa3d/src/gallium/drivers/nvc0/codegen/ |
D | nv50_ir_target_nvc0.cpp | 302 opInfo[i].pseudo = (i < OP_MOV); in initOpInfo() 653 if (a->op == OP_MOV || b->op == OP_MOV) in canDualIssue()
|
D | nv50_ir_lowering_nvc0.cpp | 204 while (insn->op == OP_MOV && insn->getDef(0)->equals(insn->getSrc(0))) in findOverwritingDefs() 256 if (usei->op == OP_MOV && usei->getDef(0)->equals(usei->getSrc(0)) && in findFirstUses() 564 if (i->op != OP_MOV && i->op != OP_PFETCH) in visit() 995 i->op = OP_MOV; in handleEXPORT()
|
D | nv50_ir_emit_nvc0.cpp | 317 i->op == OP_MOV || i->op == OP_PRESIN || i->op == OP_PREEX2); in emitForm_A() 1575 case OP_MOV: in emitInstruction() 1780 if (i->op == OP_MOV && i->lanes != 0xf) { in getMinEncodingSize()
|