cinv_csinv.xml */
| 2131 | |
| 2132 | /* cinv_csinv.xml */ |
| 2133 | int CINV_CSINV(context *ctx, Instruction *instr) |
| 2134 | { |
| 2135 | int rc = DECODE_STATUS_UNMATCHED; |
| 2136 | /* class iclass_general */ |
| 2137 | /* sf=x|op=1|S=0|11010100|Rm!=11111|cond!=111x|op2[1]=0|o2=0|Rn!=11111|Rd=xxxxx */ |
| 2138 | if((INSWORD & 0x7FE00C00)==0x5A800000 && (INSWORD & 0x1FE3E0)!=0x1FE3E0) { |
| 2139 | decode_fields32(ENC_CINV_CSINV_32_CONDSEL, ctx, instr); |
| 2140 | if(ctx->sf==0) OK(ENC_CINV_CSINV_32_CONDSEL); |
| 2141 | if(ctx->sf==1) OK(ENC_CINV_CSINV_64_CONDSEL); |
| 2142 | } |
| 2143 | return rc; |
| 2144 | } |
| 2145 | |
| 2146 | /* clrex.xml */ |
| 2147 | int CLREX(context *ctx, Instruction *instr) |
no test coverage detected