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

  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_inlines.h 66 case TYPE_S32:
90 case TYPE_S32:
116 return flt ? TYPE_F32 : (sgn ? TYPE_S32 : TYPE_U32);
129 return (ty == TYPE_S8 || ty == TYPE_S16 || ty == TYPE_S32 || ty == TYPE_S64);
152 case TYPE_U32: return TYPE_S32;
nv50_ir_peephole.cpp 468 case TYPE_S32:
543 case TYPE_S32:
565 case TYPE_S32: res.data.s32 = a->data.s32 / b->data.s32; break;
575 case TYPE_S32:
585 case TYPE_S32:
603 case TYPE_S32: res.data.s32 = MAX2(a->data.s32, b->data.s32); break;
613 case TYPE_S32: res.data.s32 = MIN2(a->data.s32, b->data.s32); break;
633 case TYPE_S32: res.data.s32 = a->data.s32 >> b->data.u32; break;
662 case TYPE_S32: res.data.s32 = (res.data.s32 << lshift) >> rshift; break;
767 case TYPE_S32
    [all...]
nv50_ir_emit_gk110.cpp 641 if (i->sType == TYPE_S32)
648 if (i->sType == TYPE_S32)
718 if (isLIMM(i->src(1), TYPE_S32)) {
755 if (i->sType == TYPE_S32)
770 assert(i->dType == TYPE_S32 || i->dType == TYPE_U32);
774 if (i->dType == TYPE_S32)
880 if (isLIMM(i->src(1), TYPE_S32)) {
895 assert(!isLIMM(i->src(1), TYPE_S32, true));
915 if (i->dType == TYPE_S32)
926 if (i->dType == TYPE_S32)
    [all...]
nv50_ir_emit_nv50.cpp 586 case TYPE_S32: // fall through
612 case TYPE_S32:
954 case TYPE_S32: code[1] |= 0x8c000000; break;
1246 case TYPE_S32: code[1] = 0x0c000000; break;
1257 case TYPE_S32: code[0] = 0x50008100; break;
1302 case TYPE_S32: code[1] |= 0x0c000000; break;
    [all...]
nv50_ir_lowering_nv50.cpp 52 case TYPE_S32: fTy = TYPE_U32; break;
489 if (ty != TYPE_U32 && ty != TYPE_S32)
561 if (mod->dType != TYPE_U32 && mod->dType != TYPE_S32)
1024 bld.mkCvt(OP_CVT, TYPE_F32, i->getDef(def), TYPE_S32, i->getDef(def));
1054 bld.mkOp1(OP_ABS, TYPE_S32, i->getDef(0), i->getDef(0))
    [all...]
nv50_ir_print.cpp 463 case TYPE_S32: PRINT("%i", reg.data.s32); break;
519 pos += dimRel->print(&buf[pos], size - pos, TYPE_S32);
nv50_ir_emit_nvc0.cpp 651 if (i->sType == TYPE_S32)
653 if (i->dType == TYPE_S32)
658 if (i->sType == TYPE_S32)
843 assert(i->dType == TYPE_S32 || i->dType == TYPE_U32);
848 if (i->dType == TYPE_S32)
934 if (i->dType == TYPE_S32)
945 if (i->dType == TYPE_S32)
1095 dType = TYPE_S32;
1225 case TYPE_S32:
    [all...]
nv50_ir_target_nv50.cpp 444 return ty == TYPE_S32;
551 if (i->dType == TYPE_U32 || i->dType == TYPE_S32) {
nv50_ir_target_nvc0.cpp 368 case TYPE_S32:
424 if (op == OP_SAD && ty != TYPE_S32 && ty != TYPE_U32)
593 if (i->dType == TYPE_U32 || i->dType == TYPE_S32) {
nv50_ir_lowering_nvc0.cpp 71 case TYPE_S32: builtin = NVC0_BUILTIN_DIV_S32; break;
78 bld.mkClobber(FILE_PREDICATE, (i->dType == TYPE_S32) ? 0xf : 0x3, 0);
203 DataType type = isSignedIntType(lo->dType) ? TYPE_S32 : TYPE_U32;
220 bld.mkOp1v(OP_NEG, TYPE_S32, bld.getSSA(), x32_minus_shift))
260 DataType hTy = cmp->sType == TYPE_S64 ? TYPE_S32 : TYPE_U32;
    [all...]
nv50_ir_from_tgsi.cpp 635 return nv50_ir::TYPE_S32;
702 case TGSI_OPCODE_F2I: return nv50_ir::TYPE_S32;
    [all...]
nv50_ir.cpp 393 case TYPE_S32:
414 case TYPE_S32:
435 case TYPE_S32:
nv50_ir.h 267 TYPE_S32,
    [all...]
nv50_ir_build_util.cpp 569 case TYPE_S64: hTy = TYPE_S32; break;
nv50_ir_emit_gm107.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
instr-a3xx.h 225 TYPE_S32 = 5,
235 case TYPE_S32:
262 return (type == TYPE_S32) || (type == TYPE_S16) || (type == TYPE_S8);
ir3_print.c 74 [TYPE_S32] = "s32",
ir3_compiler_nir.c 901 dst[0] = ir3_COV(b, src[0], TYPE_F32, TYPE_S32);
907 dst[0] = ir3_COV(b, src[0], TYPE_S32, TYPE_F32);
    [all...]
ir3.h 783 case TYPE_S32: return TYPE_S16;
    [all...]
disasm-a3xx.c 66 [TYPE_S32] = "s32",

Completed in 5644 milliseconds