Searched refs:new_inst (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_vs_draw.c226 struct tgsi_full_instruction new_inst; local
248 new_inst = tgsi_default_full_instruction();
249 new_inst.Instruction.Opcode = TGSI_OPCODE_MOV;
250 new_inst.Instruction.NumDstRegs = 1;
251 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT;
252 new_inst.Dst[0].Register.Index = vsctx->pos_output;
253 new_inst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_XYZW;
254 new_inst.Instruction.NumSrcRegs = 1;
255 new_inst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
256 new_inst
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c226 struct tgsi_full_instruction new_inst; local
248 new_inst = tgsi_default_full_instruction();
249 new_inst.Instruction.Opcode = TGSI_OPCODE_MOV;
250 new_inst.Instruction.NumDstRegs = 1;
251 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT;
252 new_inst.Dst[0].Register.Index = vsctx->pos_output;
253 new_inst.Dst[0].Register.WriteMask = TGSI_WRITEMASK_XYZW;
254 new_inst.Instruction.NumSrcRegs = 1;
255 new_inst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
256 new_inst
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_vert_fc.c87 struct rc_instruction * new_inst = local
105 new_inst->U.I.Opcode = RC_ME_PRED_SEQ;
106 build_pred_dst(&new_inst->U.I.DstReg, fc_state);
107 new_inst->U.I.SrcReg[0].Index = 0;
108 new_inst->U.I.SrcReg[0].File = RC_FILE_NONE;
109 new_inst->U.I.SrcReg[0].Swizzle = RC_SWIZZLE_0000;
117 build_pred_src(&new_inst->U.I.SrcReg[0], fc_state);
125 new_inst->U.I.Opcode = RC_OPCODE_ADD;
126 build_pred_dst(&new_inst->U.I.DstReg, fc_state);
127 new_inst
156 struct rc_instruction * new_inst = local
[all...]
H A Dr3xx_vertprog.c673 struct rc_instruction *new_inst; local
680 new_inst = rc_insert_new_instruction(c, inst->Prev);
681 new_inst->U.I.Opcode = RC_OPCODE_MAX;
682 new_inst->U.I.DstReg.File = RC_FILE_TEMPORARY;
683 new_inst->U.I.DstReg.Index = temp;
684 new_inst->U.I.SrcReg[0] = inst->U.I.SrcReg[i];
685 new_inst->U.I.SrcReg[1] = inst->U.I.SrcReg[i];
686 new_inst->U.I.SrcReg[1].Negate ^= RC_MASK_XYZW;
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_vert_fc.c87 struct rc_instruction * new_inst = local
105 new_inst->U.I.Opcode = RC_ME_PRED_SEQ;
106 build_pred_dst(&new_inst->U.I.DstReg, fc_state);
107 new_inst->U.I.SrcReg[0].Index = 0;
108 new_inst->U.I.SrcReg[0].File = RC_FILE_NONE;
109 new_inst->U.I.SrcReg[0].Swizzle = RC_SWIZZLE_0000;
117 build_pred_src(&new_inst->U.I.SrcReg[0], fc_state);
125 new_inst->U.I.Opcode = RC_OPCODE_ADD;
126 build_pred_dst(&new_inst->U.I.DstReg, fc_state);
127 new_inst
156 struct rc_instruction * new_inst = local
[all...]
H A Dr3xx_vertprog.c673 struct rc_instruction *new_inst; local
680 new_inst = rc_insert_new_instruction(c, inst->Prev);
681 new_inst->U.I.Opcode = RC_OPCODE_MAX;
682 new_inst->U.I.DstReg.File = RC_FILE_TEMPORARY;
683 new_inst->U.I.DstReg.Index = temp;
684 new_inst->U.I.SrcReg[0] = inst->U.I.SrcReg[i];
685 new_inst->U.I.SrcReg[1] = inst->U.I.SrcReg[i];
686 new_inst->U.I.SrcReg[1].Negate ^= RC_MASK_XYZW;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.h345 vec4_instruction *new_inst);
H A Dbrw_vec4_visitor.cpp55 vec4_visitor::emit_before(vec4_instruction *inst, vec4_instruction *new_inst) argument
57 new_inst->ir = inst->ir;
58 new_inst->annotation = inst->annotation;
60 inst->insert_before(new_inst);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.h345 vec4_instruction *new_inst);
H A Dbrw_vec4_visitor.cpp55 vec4_visitor::emit_before(vec4_instruction *inst, vec4_instruction *new_inst) argument
57 new_inst->ir = inst->ir;
58 new_inst->annotation = inst->annotation;
60 inst->insert_before(new_inst);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dir_to_mesa.cpp938 ir_to_mesa_instruction *new_inst; local
939 new_inst = (ir_to_mesa_instruction *)this->instructions.get_tail();
943 new_inst->saturate = true;
/external/mesa3d/src/mesa/program/
H A Dir_to_mesa.cpp938 ir_to_mesa_instruction *new_inst; local
939 new_inst = (ir_to_mesa_instruction *)this->instructions.get_tail();
943 new_inst->saturate = true;
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp1298 glsl_to_tgsi_instruction *new_inst; local
1299 new_inst = (glsl_to_tgsi_instruction *)this->instructions.get_tail();
1300 new_inst->saturate = true;
2295 glsl_to_tgsi_instruction *inst, *new_inst; local
2297 new_inst = emit(ir, inst->op, l, inst->src[0], inst->src[1], inst->src[2]);
2298 new_inst->saturate = inst->saturate;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp1298 glsl_to_tgsi_instruction *new_inst; local
1299 new_inst = (glsl_to_tgsi_instruction *)this->instructions.get_tail();
1300 new_inst->saturate = true;
2295 glsl_to_tgsi_instruction *inst, *new_inst; local
2297 new_inst = emit(ir, inst->op, l, inst->src[0], inst->src[1], inst->src[2]);
2298 new_inst->saturate = inst->saturate;

Completed in 1876 milliseconds