HomeSort by: relevance | last modified time | path
    Searched refs:FILE_GPR (Results 1 - 25 of 38) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_emit_gm107.cpp 731 case FILE_GPR:
806 case FILE_GPR:
849 case FILE_GPR:
891 case FILE_GPR:
923 case FILE_GPR:
975 case FILE_GPR:
1010 case FILE_GPR:
1023 case FILE_GPR:
1056 case FILE_GPR:
1089 case FILE_GPR
    [all...]
nv50_ir_emit_gv100.cpp 108 switch ((src1 < 0) ? FILE_GPR : insn->src(src1 & FA_SRC_MASK).getFile()) {
109 case FILE_GPR:
110 switch ((src2 < 0) ? FILE_GPR : insn->src(src2 & FA_SRC_MASK).getFile()) {
111 case FILE_GPR:
129 assert((src2 < 0) || insn->src(src2 & FA_SRC_MASK).getFile() == FILE_GPR);
134 assert((src2 < 0) || insn->src(src2 & FA_SRC_MASK).getFile() == FILE_GPR);
144 assert(insn->src(src0 & FA_SRC_MASK).getFile() == FILE_GPR);
300 case FILE_GPR:
302 case FILE_GPR:
341 case FILE_GPR
    [all...]
nv50_ir_target_nv50.cpp 152 opInfo[i].srcFiles[j] = 1 << (int)FILE_GPR;
155 opInfo[i].dstFiles = 1 << (int)FILE_GPR;
206 case FILE_GPR: return 254; // in 16-bit units **
230 if (file == FILE_GPR || file == FILE_ADDRESS)
297 if (s == 2 && i->src(1).getFile() != FILE_GPR)
311 case FILE_GPR:
nv50_ir_target_gv100.cpp 50 nativeFileMap[FILE_ADDRESS] = FILE_GPR;
63 opInfo[i].srcFiles[j] = 1 << (int)FILE_GPR;
66 opInfo[i].dstFiles = 1 << (int)FILE_GPR;
92 #define SRC_R (1 << FILE_GPR)
490 if ((s == 1 && i->srcExists(2) && i->src(2).getFile() != FILE_GPR) ||
491 (s == 2 && i->srcExists(1) && i->src(1).getFile() != FILE_GPR)) {
496 ((s == 0 && i->srcExists(1) && i->src(1).getFile() != FILE_GPR) ||
497 (s == 1 && i->srcExists(0) && i->src(0).getFile() != FILE_GPR))) {
nv50_ir_emit_gk110.cpp 383 case FILE_GPR:
411 case FILE_GPR:
453 case FILE_GPR:
808 case FILE_GPR:
839 case FILE_GPR:
1463 if (i->src(0).getFile() == FILE_GPR) {
1473 if (i->src(1).getFile() == FILE_GPR) {
1595 case FILE_GPR:
1610 case FILE_GPR:
1649 } else if (i->def(d).getFile() == FILE_GPR) {
    [all...]
nv50_ir_target_nvc0.cpp 224 nativeFileMap[FILE_ADDRESS] = FILE_GPR;
236 opInfo[i].srcFiles[j] = 1 << (int)FILE_GPR;
239 opInfo[i].dstFiles = 1 << (int)FILE_GPR;
273 case FILE_GPR: return MIN2(gprs, smregs / threads);
297 if (file == FILE_GPR || file == FILE_ADDRESS || file == FILE_SYSTEM_VALUE ||
387 if (i->src(k).getFile() != FILE_GPR &&
nv50_ir_emit_nvc0.cpp 421 case FILE_GPR:
458 case FILE_GPR:
503 if (i->src(s).getFile() == FILE_GPR) {
524 assert(src.getFile() == FILE_GPR);
804 case FILE_GPR:
1007 assert(i->src(0).getFile() == FILE_GPR);
1566 if (i->src(0).getFile() == FILE_GPR) {
1576 if (i->src(1).getFile() == FILE_GPR) {
1596 if (i->def(0).getFile() == FILE_GPR)
1602 if (i->def(1).getFile() == FILE_GPR)
    [all...]
nv50_ir_peephole.cpp 205 if (insn->src(1).getFile() != FILE_GPR)
1847 sub->src(0).getFile() != FILE_GPR || sub->src(0).mod ||
1848 sub->src(1).getFile() != FILE_GPR || sub->src(1).mod)
1882 if (src0->reg.file != FILE_GPR || src1->reg.file != FILE_GPR)
1968 if (src0 != src1 || src0->reg.file != FILE_GPR)
2031 if (src0->reg.file != FILE_GPR || src1->reg.file != FILE_GPR)
2280 assert(insn->srcExists(0) && insn->src(0).getFile() == FILE_GPR);
2303 if (add->src(s).getFile() != FILE_GPR || add->src(s).mod != Modifier(0)
    [all...]
nv50_ir_build_util.h 48 inline LValue *getScratch(int size = 4, DataFile = FILE_GPR);
50 inline LValue *getSSA(int size = 4, DataFile = FILE_GPR);
nv50_ir_ra.cpp 950 if (regs.restrictedGPR16Range && f == FILE_GPR && (lval->reg.size == 2 || isShortRegVal(lval)))
1505 if (lval->reg.file == FILE_GPR)
1539 if (lval->inFile(FILE_GPR) && lval->getInsn() != NULL) {
1545 if (insn->src(0).getFile() != FILE_GPR ||
1546 insn->src(1).getFile() != FILE_GPR ||
1547 insn->src(2).getFile() != FILE_GPR)
1591 regs.reset(FILE_GPR, true);
1597 prog->maxGPR = std::max(prog->maxGPR, regs.getMaxAssigned(FILE_GPR));
1721 st->setDef(d, new_LValue(func, FILE_GPR));
1766 l->setDef(0, (val = new_LValue(func, FILE_GPR)));
    [all...]
nv50_ir_inlines.h 339 if (reg.file >= FILE_GPR && reg.file <= LAST_REGISTER_FILE)
nv50_ir_build_util.cpp 189 insn->setDef(0, new_LValue(func, FILE_GPR));
203 insn->setSrc(0, new_LValue(func, FILE_GPR));
656 assert(hi->src(s).getFile() == FILE_GPR);
nv50_ir_lowering_nv50.cpp 246 r63 = new_LValue(fn, FILE_GPR);
426 if (i->op != OP_SHL || i->src(0).getFile() != FILE_GPR)
445 if (i->op == OP_SHL && i->src(0).getFile() == FILE_GPR)
705 Value *arg = new_LValue(func, FILE_GPR);
719 Value *tmp = new_LValue(func, FILE_GPR);
738 Value *off = new_LValue(func, FILE_ADDRESS), *t = new_LValue(func, FILE_GPR);
805 Value *tx = new_LValue(func, FILE_GPR), *ty = new_LValue(func, FILE_GPR),
832 LValue *src = new_LValue(func, FILE_GPR);
846 a2d[c] = new_LValue(func, FILE_GPR);
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_emit_gm107.cpp 702 case FILE_GPR:
777 case FILE_GPR:
820 case FILE_GPR:
862 case FILE_GPR:
894 case FILE_GPR:
937 case FILE_GPR:
972 case FILE_GPR:
985 case FILE_GPR:
1018 case FILE_GPR:
1051 case FILE_GPR
    [all...]
nv50_ir_target_nv50.cpp 152 opInfo[i].srcFiles[j] = 1 << (int)FILE_GPR;
155 opInfo[i].dstFiles = 1 << (int)FILE_GPR;
206 case FILE_GPR: return 254; // in 16-bit units **
229 if (file == FILE_GPR || file == FILE_ADDRESS)
290 if (s == 2 && i->src(1).getFile() != FILE_GPR)
304 case FILE_GPR:
nv50_ir_emit_gk110.cpp 385 case FILE_GPR:
413 case FILE_GPR:
455 case FILE_GPR:
810 case FILE_GPR:
841 case FILE_GPR:
1456 if (i->src(0).getFile() == FILE_GPR) {
1466 if (i->src(1).getFile() == FILE_GPR) {
1588 case FILE_GPR:
1603 case FILE_GPR:
1642 } else if (i->def(d).getFile() == FILE_GPR) {
    [all...]
nv50_ir_lowering_nv50.cpp 223 r63 = new_LValue(fn, FILE_GPR);
403 if (i->op != OP_SHL || i->src(0).getFile() != FILE_GPR)
422 if (i->op == OP_SHL && i->src(0).getFile() == FILE_GPR)
671 Value *arg = new_LValue(func, FILE_GPR);
685 Value *tmp = new_LValue(func, FILE_GPR);
702 Value *off = new_LValue(func, FILE_ADDRESS), *t = new_LValue(func, FILE_GPR);
751 Value *tx = new_LValue(func, FILE_GPR), *ty = new_LValue(func, FILE_GPR),
778 LValue *src = new_LValue(func, FILE_GPR);
792 a2d[c] = new_LValue(func, FILE_GPR);
    [all...]
nv50_ir_target_nvc0.cpp 224 nativeFileMap[FILE_ADDRESS] = FILE_GPR;
236 opInfo[i].srcFiles[j] = 1 << (int)FILE_GPR;
239 opInfo[i].dstFiles = 1 << (int)FILE_GPR;
272 case FILE_GPR: return MIN2(gprs, smregs / threads);
294 if (file == FILE_GPR || file == FILE_ADDRESS || file == FILE_SYSTEM_VALUE)
383 if (i->src(k).getFile() != FILE_GPR &&
nv50_ir_emit_nvc0.cpp 423 case FILE_GPR:
460 case FILE_GPR:
505 if (i->src(s).getFile() == FILE_GPR) {
526 assert(src.getFile() == FILE_GPR);
806 case FILE_GPR:
1009 assert(i->src(0).getFile() == FILE_GPR);
1559 if (i->src(0).getFile() == FILE_GPR) {
1569 if (i->src(1).getFile() == FILE_GPR) {
1589 if (i->def(0).getFile() == FILE_GPR)
1595 if (i->def(1).getFile() == FILE_GPR)
    [all...]
nv50_ir_peephole.cpp 205 if (insn->src(1).getFile() != FILE_GPR)
1794 sub->src(0).getFile() != FILE_GPR || sub->src(0).mod ||
1795 sub->src(1).getFile() != FILE_GPR || sub->src(1).mod)
1829 if (src0->reg.file != FILE_GPR || src1->reg.file != FILE_GPR)
1915 if (src0 != src1 || src0->reg.file != FILE_GPR)
1978 if (src0->reg.file != FILE_GPR || src1->reg.file != FILE_GPR)
2227 assert(insn->srcExists(0) && insn->src(0).getFile() == FILE_GPR);
2250 if (add->src(s).getFile() != FILE_GPR || add->src(s).mod != Modifier(0)
    [all...]
nv50_ir_build_util.h 48 inline LValue *getScratch(int size = 4, DataFile = FILE_GPR);
50 inline LValue *getSSA(int size = 4, DataFile = FILE_GPR);
nv50_ir_ra.cpp 905 if (regs.restrictedGPR16Range && f == FILE_GPR && (lval->reg.size == 2 || isShortRegVal(lval)))
1456 if (lval->reg.file == FILE_GPR)
1490 if (lval->inFile(FILE_GPR) && lval->getInsn() != NULL) {
1496 if (insn->src(0).getFile() != FILE_GPR ||
1497 insn->src(1).getFile() != FILE_GPR ||
1498 insn->src(2).getFile() != FILE_GPR)
1542 regs.reset(FILE_GPR, true);
1547 prog->maxGPR = std::max(prog->maxGPR, regs.getMaxAssigned(FILE_GPR));
1675 st->setDef(d, new_LValue(func, FILE_GPR));
1720 l->setDef(0, (val = new_LValue(func, FILE_GPR)));
    [all...]
nv50_ir_inlines.h 339 if (reg.file >= FILE_GPR && reg.file <= FILE_ADDRESS)
nv50_ir_build_util.cpp 187 insn->setDef(0, new_LValue(func, FILE_GPR));
201 insn->setSrc(0, new_LValue(func, FILE_GPR));
626 assert(hi->src(s).getFile() == FILE_GPR);
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
disasm-a3xx.c 96 FILE_GPR = 1,
418 ctx->reg.file = FILE_GPR;
440 } else if (ctx->reg.file == FILE_GPR) {

Completed in 33 milliseconds

1 2