sllicc.cgs 837 B

12345678910111213141516171819202122232425262728293031323334
  1. # frv testcase for sllicc $GRi,$s10,$GRk,$ICCi_1
  2. # mach: all
  3. .include "testutils.inc"
  4. start
  5. .global sllicc
  6. sllicc:
  7. set_gr_immed 2,gr8
  8. set_icc 0x0f,0 ; Set mask opposite of expected
  9. sllicc gr8,0x1e0,gr8,icc0 ; Shift by 0
  10. test_icc 0 0 0 1 icc0
  11. test_gr_immed 2,gr8
  12. set_gr_immed 2,gr8
  13. set_icc 0x0f,0 ; Set mask opposite of expected
  14. sllicc gr8,-31,gr8,icc0 ; Shift by 1
  15. test_icc 0 0 0 1 icc0
  16. test_gr_immed 4,gr8
  17. set_gr_immed 1,gr8
  18. set_icc 0x07,0 ; Set mask opposite of expected
  19. sllicc gr8,31,gr8,icc0 ; Shift by 31
  20. test_icc 1 0 0 1 icc0
  21. test_gr_limmed 0x8000,0x0000,gr8
  22. set_gr_immed 2,gr8
  23. set_icc 0x08,0 ; Set mask opposite of expected
  24. sllicc gr8,31,gr8,icc0 ; clear register
  25. test_icc 0 1 1 0 icc0
  26. test_gr_immed 0x00000000,gr8
  27. pass