1# frv testcase for oricc $GRi,$s10,$GRk,$ICCi_1 2# mach: all 3 4 .include "testutils.inc" 5 6 start 7 8 .global oricc 9oricc: 10 set_gr_limmed 0xaaaa,0xaaaa,gr7 11 set_icc 0x07,0 ; Set mask opposite of expected 12 oricc gr7,0x155,gr8,icc0 13 test_icc 1 0 1 1 icc0 14 test_gr_limmed 0xaaaa,0xabff,gr8 15 16 set_gr_immed 0x00000000,gr7 17 set_icc 0x08,0 ; Set mask opposite of expected 18 oricc gr7,0,gr8,icc0 19 test_icc 0 1 0 0 icc0 20 test_gr_immed 0x00000000,gr8 21 22 set_gr_limmed 0xdead,0xbe00,gr7 23 set_icc 0x05,0 ; Set mask opposite of expected 24 oricc gr7,0x0ef,gr8,icc0 25 test_icc 1 0 0 1 icc0 26 test_gr_limmed 0xdead,0xbeef,gr8 27 28 set_gr_limmed 0xdead,0xb000,gr7 29 set_icc 0x05,0 ; Set mask opposite of expected 30 oricc gr7,-273,gr8,icc0 31 test_icc 1 0 0 1 icc0 32 test_gr_limmed 0xffff,0xfeef,gr8 33 34 pass 35