r600g: add more missing instructions to r600_bc_get_num_operands
authorChristian König <deathsimple@vodafone.de>
Fri, 14 Jan 2011 17:46:11 +0000 (18:46 +0100)
committerChristian König <deathsimple@vodafone.de>
Fri, 14 Jan 2011 17:46:52 +0000 (18:46 +0100)
src/gallium/drivers/r600/r600_asm.c

index 52dc0688d520f2db87a96e990603fb5efab00ea4..2d0d27765446ca80e56ace3b60abe70b6ed8a5af 100644 (file)
@@ -64,18 +64,22 @@ static inline unsigned int r600_bc_get_num_operands(struct r600_bc_alu *alu)
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_CUBE:
                return 2;
 
-       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOV: 
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOV:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOVA:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOVA_FLOOR:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MOVA_INT:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FRACT:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLOOR:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_TRUNC:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_EXP_IEEE:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_LOG_CLAMPED:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_LOG_IEEE:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIP_CLAMPED:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIP_IEEE:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIPSQRT_CLAMPED:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_RECIPSQRT_IEEE:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT:
+       case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT_FLOOR:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_SIN:
        case V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_COS:
                return 1;