1 1.1 christos # XSCALE testcase for MIAxy 2 1.1 christos # mach: xscale 3 1.1 christos # as: -mcpu=xscale 4 1.1 christos 5 1.1 christos .include "testutils.inc" 6 1.1 christos 7 1.1 christos start 8 1.1 christos 9 1.1 christos .global miaXY 10 1.1 christos miaXY: 11 1.1 christos # Enable access to CoProcessors 0 & 1 before 12 1.1 christos # we attempt these instructions. 13 1.1 christos 14 1.1 christos mvi_h_gr r1, 3 15 1.1 christos mcr p15, 0, r1, cr15, cr1, 0 16 1.1 christos 17 1.1 christos # Test Bottom Bottom Multilply Accumulate 18 1.1 christos 19 1.1 christos mvi_h_gr r0, 0x11223344 20 1.1 christos mvi_h_gr r1, 0x55667788 21 1.1 christos mvi_h_gr r2, 0x12345678 22 1.1 christos mvi_h_gr r3, 0x9abcdef0 23 1.1 christos 24 1.1 christos mar acc0, r0, r1 25 1.1 christos 26 1.1 christos miaBB acc0, r2, r3 27 1.1 christos 28 1.1 christos mra r0, r1, acc0 29 1.1 christos 30 1.1 christos test_h_gr r0, 0x05f753c4 31 1.1 christos test_h_gr r1, 0x55667788 32 1.1 christos test_h_gr r2, 0x12345678 33 1.1 christos test_h_gr r3, 0x9abcdef0 34 1.1 christos 35 1.1 christos # Test Bottom Top Multilply Accumulate 36 1.1 christos 37 1.1 christos mvi_h_gr r0, 0x11223344 38 1.1 christos mvi_h_gr r1, 0x55667788 39 1.1 christos mvi_h_gr r2, 0x12345678 40 1.1 christos mvi_h_gr r3, 0x9abcdef0 41 1.1 christos 42 1.1 christos mar acc0, r0, r1 43 1.1 christos 44 1.1 christos miaBT acc0, r2, r3 45 1.1 christos 46 1.1 christos mra r0, r1, acc0 47 1.1 christos 48 1.1 christos test_h_gr r0, 0xeeede364 49 1.1 christos test_h_gr r1, 0x55667787 50 1.1 christos test_h_gr r2, 0x12345678 51 1.1 christos test_h_gr r3, 0x9abcdef0 52 1.1 christos 53 1.1 christos # Test Top Bottom Multilply Accumulate 54 1.1 christos 55 1.1 christos mvi_h_gr r0, 0x11223344 56 1.1 christos mvi_h_gr r1, 0x55667788 57 1.1 christos mvi_h_gr r2, 0x12345678 58 1.1 christos mvi_h_gr r3, 0x9abcdef0 59 1.1 christos 60 1.1 christos mar acc0, r0, r1 61 1.1 christos 62 1.1 christos miaTB acc0, r2, r3 63 1.1 christos 64 1.1 christos mra r0, r1, acc0 65 1.1 christos 66 1.1 christos test_h_gr r0, 0x0ec85c04 67 1.1 christos test_h_gr r1, 0x55667788 68 1.1 christos test_h_gr r2, 0x12345678 69 1.1 christos test_h_gr r3, 0x9abcdef0 70 1.1 christos 71 1.1 christos # Test Top Top Multilply Accumulate 72 1.1 christos 73 1.1 christos mvi_h_gr r0, 0x11223344 74 1.1 christos mvi_h_gr r1, 0x55667788 75 1.1 christos mvi_h_gr r2, 0x12345678 76 1.1 christos mvi_h_gr r3, 0x9abcdef0 77 1.1 christos 78 1.1 christos mar acc0, r0, r1 79 1.1 christos 80 1.1 christos miaTT acc0, r2, r3 81 1.1 christos 82 1.1 christos mra r0, r1, acc0 83 1.1 christos 84 1.1 christos test_h_gr r0, 0x09eed974 85 1.1 christos test_h_gr r1, 0x55667788 86 1.1 christos test_h_gr r2, 0x12345678 87 1.1 christos test_h_gr r3, 0x9abcdef0 88 1.1 christos 89 1.1 christos pass 90