Home | History | Annotate | Download | only in compiler

Lines Matching refs:Opcode

35 		.Opcode = RC_OPCODE_NOP,
39 .Opcode = RC_OPCODE_ILLEGAL_OPCODE,
40 .Name = "ILLEGAL OPCODE"
43 .Opcode = RC_OPCODE_ABS,
50 .Opcode = RC_OPCODE_ADD,
57 .Opcode = RC_OPCODE_ARL,
63 .Opcode = RC_OPCODE_CEIL,
70 .Opcode = RC_OPCODE_CLAMP,
77 .Opcode = RC_OPCODE_CMP,
84 .Opcode = RC_OPCODE_CND,
91 .Opcode = RC_OPCODE_COS,
98 .Opcode = RC_OPCODE_DDX,
105 .Opcode = RC_OPCODE_DDY,
112 .Opcode = RC_OPCODE_DP2,
118 .Opcode = RC_OPCODE_DP3,
124 .Opcode = RC_OPCODE_DP4,
130 .Opcode = RC_OPCODE_DPH,
136 .Opcode = RC_OPCODE_DST,
142 .Opcode = RC_OPCODE_EX2,
149 .Opcode = RC_OPCODE_EXP,
155 .Opcode = RC_OPCODE_FLR,
162 .Opcode = RC_OPCODE_FRC,
169 .Opcode = RC_OPCODE_KIL,
174 .Opcode = RC_OPCODE_LG2,
181 .Opcode = RC_OPCODE_LIT,
187 .Opcode = RC_OPCODE_LOG,
193 .Opcode = RC_OPCODE_LRP,
200 .Opcode = RC_OPCODE_MAD,
207 .Opcode = RC_OPCODE_MAX,
214 .Opcode = RC_OPCODE_MIN,
221 .Opcode = RC_OPCODE_MOV,
228 .Opcode = RC_OPCODE_MUL,
235 .Opcode = RC_OPCODE_POW,
242 .Opcode = RC_OPCODE_RCP,
249 .Opcode = RC_OPCODE_ROUND,
256 .Opcode = RC_OPCODE_RSQ,
263 .Opcode = RC_OPCODE_SCS,
269 .Opcode = RC_OPCODE_SEQ,
276 .Opcode = RC_OPCODE_SFL,
283 .Opcode = RC_OPCODE_SGE,
290 .Opcode = RC_OPCODE_SGT,
297 .Opcode = RC_OPCODE_SIN,
304 .Opcode = RC_OPCODE_SLE,
311 .Opcode = RC_OPCODE_SLT,
318 .Opcode = RC_OPCODE_SNE,
325 .Opcode = RC_OPCODE_SSG,
332 .Opcode = RC_OPCODE_SUB,
339 .Opcode = RC_OPCODE_SWZ,
346 .Opcode = RC_OPCODE_TRUNC,
353 .Opcode = RC_OPCODE_XPD,
359 .Opcode = RC_OPCODE_TEX,
366 .Opcode = RC_OPCODE_TXB,
373 .Opcode = RC_OPCODE_TXD,
380 .Opcode = RC_OPCODE_TXL,
387 .Opcode = RC_OPCODE_TXP,
394 .Opcode = RC_OPCODE_IF,
400 .Opcode = RC_OPCODE_ELSE,
406 .Opcode = RC_OPCODE_ENDIF,
412 .Opcode = RC_OPCODE_BGNLOOP,
418 .Opcode = RC_OPCODE_BRK,
424 .Opcode = RC_OPCODE_ENDLOOP,
430 .Opcode = RC_OPCODE_CONT,
436 .Opcode = RC_OPCODE_REPL_ALPHA,
441 .Opcode = RC_OPCODE_BEGIN_TEX,
445 .Opcode = RC_OPCODE_KILP,
449 .Opcode = RC_ME_PRED_SEQ,
455 .Opcode = RC_ME_PRED_SGT,
461 .Opcode = RC_ME_PRED_SGE,
467 .Opcode = RC_ME_PRED_SNEQ,
473 .Opcode = RC_ME_PRED_SET_CLR,
479 .Opcode = RC_ME_PRED_SET_INV,
485 .Opcode = RC_ME_PRED_SET_POP,
491 .Opcode = RC_ME_PRED_SET_RESTORE,
497 .Opcode = RC_VE_PRED_SEQ_PUSH,
503 .Opcode = RC_VE_PRED_SGT_PUSH,
509 .Opcode = RC_VE_PRED_SGE_PUSH,
515 .Opcode = RC_VE_PRED_SNEQ_PUSH,
527 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode);
532 if (opcode->Opcode == RC_OPCODE_KIL)
534 else if (opcode->Opcode == RC_OPCODE_IF)
540 if (opcode->IsComponentwise) {
541 for(unsigned int src = 0; src < opcode->NumSrcRegs; ++src)
543 } else if (opcode->IsStandardScalar) {
544 for(unsigned int src = 0; src < opcode->NumSrcRegs; ++src)
547 switch(opcode->Opcode) {