ori.cgs 788 B

12345678910111213141516171819202122232425262728293031323334
  1. # frv testcase for ori $GRi,$s12,$GRk
  2. # mach: all
  3. .include "testutils.inc"
  4. start
  5. .global ori
  6. ori:
  7. set_gr_limmed 0xaaaa,0xaaaa,gr7
  8. set_icc 0x07,0 ; Set mask opposite of expected
  9. ori gr7,0x555,gr8
  10. test_icc 0 1 1 1 icc0
  11. test_gr_limmed 0xaaaa,0xafff,gr8
  12. set_gr_immed 0x00000000,gr7
  13. set_icc 0x08,0 ; Set mask opposite of expected
  14. ori gr7,0,gr8
  15. test_icc 1 0 0 0 icc0
  16. test_gr_immed 0x00000000,gr8
  17. set_gr_limmed 0xdead,0xb800,gr7
  18. set_icc 0x05,0 ; Set mask opposite of expected
  19. ori gr7,0x6ef,gr8
  20. test_icc 0 1 0 1 icc0
  21. test_gr_limmed 0xdead,0xbeef,gr8
  22. set_gr_limmed 0xdead,0xb000,gr7
  23. set_icc 0x05,0 ; Set mask opposite of expected
  24. ori gr7,-273,gr8
  25. test_icc 0 1 0 1 icc0
  26. test_gr_limmed 0xffff,0xfeef,gr8
  27. pass