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

  /external/llvm/lib/Target/Hexagon/
HexagonRegisterInfo.cpp 170 unsigned dstReg = (MI.getOpcode() == Hexagon::LDrid) ?
177 TII.get(Hexagon::CONST32_Int_Real), dstReg).addImm(Offset);
180 dstReg).addReg(FrameReg).addReg(dstReg);
184 dstReg).addReg(FrameReg).addImm(Offset);
187 MI.getOperand(FIOperandNum).ChangeToRegister(dstReg, false, false,true);
255 unsigned dstReg = MI.getOperand(0).getReg();
257 TII.get(Hexagon::CONST32_Int_Real), dstReg).addImm(Offset);
260 dstReg).addReg(FrameReg).addReg(dstReg);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvfragparse.c 667 struct prog_dst_register *dstReg)
670 dstReg->CondMask = COND_EQ;
672 dstReg->CondMask = COND_GE;
674 dstReg->CondMask = COND_GT;
676 dstReg->CondMask = COND_LE;
678 dstReg->CondMask = COND_LT;
680 dstReg->CondMask = COND_NE;
682 dstReg->CondMask = COND_TR;
684 dstReg->CondMask = COND_FL;
699 dstReg->CondSwizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3])
    [all...]
nvvertparse.c 553 Parse_MaskedDstReg(struct parse_state *parseState, struct prog_dst_register *dstReg)
564 dstReg->File = PROGRAM_TEMPORARY;
567 dstReg->Index = idx;
571 dstReg->File = PROGRAM_OUTPUT;
574 dstReg->Index = idx;
580 dstReg->File = PROGRAM_ENV_PARAM;
583 dstReg->Index = idx;
603 dstReg->WriteMask = 0;
606 dstReg->WriteMask |= WRITEMASK_X;
610 dstReg->WriteMask |= WRITEMASK_Y
    [all...]
prog_print.c 566 const struct prog_dst_register *dstReg,
571 reg_string((gl_register_file) dstReg->File,
572 dstReg->Index, mode, dstReg->RelAddr, prog,
574 _mesa_writemask_string(dstReg->WriteMask));
576 if (dstReg->CondMask != COND_TR) {
578 _mesa_condcode_string(dstReg->CondMask),
579 _mesa_swizzle_string(dstReg->CondSwizzle,
585 _mesa_register_file_name((gl_register_file) dstReg->File),
586 dstReg->Index
    [all...]
prog_execute.c 458 const GLuint swizzle = inst->DstReg.CondSwizzle;
459 const GLuint condMask = inst->DstReg.CondMask;
481 const struct prog_dst_register *dstReg = &(inst->DstReg);
483 GLuint writeMask = dstReg->WriteMask;
485 GLfloat *dst = get_dst_register_pointer(dstReg, machine);
503 if (dstReg->CondMask != COND_TR) {
506 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 0)],
507 dstReg->CondMask))
511 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 1)]
    [all...]
program_parse.y 203 %type <dst_reg> dstReg maskedDstReg maskedAddrReg
469 $$->Base.DstReg.CondMask = $2.CondMask;
470 $$->Base.DstReg.CondSwizzle = $2.CondSwizzle;
471 $$->Base.DstReg.CondSrc = $2.CondSrc;
634 maskedDstReg: dstReg optionalMask optionalCcMask
860 dstReg: resultBinding
    [all...]
  /external/mesa3d/src/mesa/program/
nvfragparse.c 667 struct prog_dst_register *dstReg)
670 dstReg->CondMask = COND_EQ;
672 dstReg->CondMask = COND_GE;
674 dstReg->CondMask = COND_GT;
676 dstReg->CondMask = COND_LE;
678 dstReg->CondMask = COND_LT;
680 dstReg->CondMask = COND_NE;
682 dstReg->CondMask = COND_TR;
684 dstReg->CondMask = COND_FL;
699 dstReg->CondSwizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3])
    [all...]
nvvertparse.c 553 Parse_MaskedDstReg(struct parse_state *parseState, struct prog_dst_register *dstReg)
564 dstReg->File = PROGRAM_TEMPORARY;
567 dstReg->Index = idx;
571 dstReg->File = PROGRAM_OUTPUT;
574 dstReg->Index = idx;
580 dstReg->File = PROGRAM_ENV_PARAM;
583 dstReg->Index = idx;
603 dstReg->WriteMask = 0;
606 dstReg->WriteMask |= WRITEMASK_X;
610 dstReg->WriteMask |= WRITEMASK_Y
    [all...]
prog_print.c 566 const struct prog_dst_register *dstReg,
571 reg_string((gl_register_file) dstReg->File,
572 dstReg->Index, mode, dstReg->RelAddr, prog,
574 _mesa_writemask_string(dstReg->WriteMask));
576 if (dstReg->CondMask != COND_TR) {
578 _mesa_condcode_string(dstReg->CondMask),
579 _mesa_swizzle_string(dstReg->CondSwizzle,
585 _mesa_register_file_name((gl_register_file) dstReg->File),
586 dstReg->Index
    [all...]
prog_execute.c 458 const GLuint swizzle = inst->DstReg.CondSwizzle;
459 const GLuint condMask = inst->DstReg.CondMask;
481 const struct prog_dst_register *dstReg = &(inst->DstReg);
483 GLuint writeMask = dstReg->WriteMask;
485 GLfloat *dst = get_dst_register_pointer(dstReg, machine);
503 if (dstReg->CondMask != COND_TR) {
506 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 0)],
507 dstReg->CondMask))
511 if (!test_cc(machine->CondCodes[GET_SWZ(dstReg->CondSwizzle, 1)]
    [all...]
program_parse.y 203 %type <dst_reg> dstReg maskedDstReg maskedAddrReg
469 $$->Base.DstReg.CondMask = $2.CondMask;
470 $$->Base.DstReg.CondSwizzle = $2.CondSwizzle;
471 $$->Base.DstReg.CondSrc = $2.CondSrc;
634 maskedDstReg: dstReg optionalMask optionalCcMask
860 dstReg: resultBinding
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp     [all...]

Completed in 5526 milliseconds