OpenCores
URL https://opencores.org/ocsvn/fwrisc/fwrisc/trunk

Subversion Repositories fwrisc

[/] [fwrisc/] [trunk/] [ve/] [fwrisc/] [tests/] [riscv-compliance/] [riscv-test-suite/] [rv32ui/] [rv64ui/] [sll.S] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 mballance
# See LICENSE for license details.
2
 
3
#*****************************************************************************
4
# sll.S
5
#-----------------------------------------------------------------------------
6
#
7
# Test sll instruction.
8
#
9
 
10
#include "riscv_test.h"
11
#include "compliance_test.h"
12
#include "compliance_io.h"
13
#include "aw_test_macros.h"
14
 
15
 
16
RVTEST_RV64U
17
RVTEST_CODE_BEGIN
18
 
19
  #-------------------------------------------------------------
20
  # Arithmetic tests
21
  #-------------------------------------------------------------
22
 
23
  TEST_RR_OP( 2,  sll, 0x0000000000000001, 0x0000000000000001, 0  );
24
  TEST_RR_OP( 3,  sll, 0x0000000000000002, 0x0000000000000001, 1  );
25
  TEST_RR_OP( 4,  sll, 0x0000000000000080, 0x0000000000000001, 7  );
26
  TEST_RR_OP( 5,  sll, 0x0000000000004000, 0x0000000000000001, 14 );
27
  TEST_RR_OP( 6,  sll, 0x0000000080000000, 0x0000000000000001, 31 );
28
 
29
  TEST_RR_OP( 7,  sll, 0xffffffffffffffff, 0xffffffffffffffff, 0  );
30
  TEST_RR_OP( 8,  sll, 0xfffffffffffffffe, 0xffffffffffffffff, 1  );
31
  TEST_RR_OP( 9,  sll, 0xffffffffffffff80, 0xffffffffffffffff, 7  );
32
  TEST_RR_OP( 10, sll, 0xffffffffffffc000, 0xffffffffffffffff, 14 );
33
  TEST_RR_OP( 11, sll, 0xffffffff80000000, 0xffffffffffffffff, 31 );
34
 
35
  TEST_RR_OP( 12, sll, 0x0000000021212121, 0x0000000021212121, 0  );
36
  TEST_RR_OP( 13, sll, 0x0000000042424242, 0x0000000021212121, 1  );
37
  TEST_RR_OP( 14, sll, 0x0000001090909080, 0x0000000021212121, 7  );
38
  TEST_RR_OP( 15, sll, 0x0000084848484000, 0x0000000021212121, 14 );
39
  TEST_RR_OP( 16, sll, 0x1090909080000000, 0x0000000021212121, 31 );
40
 
41
  # Verify that shifts only use bottom six bits
42
 
43
  TEST_RR_OP( 17, sll, 0x0000000021212121, 0x0000000021212121, 0xffffffffffffffc0 );
44
  TEST_RR_OP( 18, sll, 0x0000000042424242, 0x0000000021212121, 0xffffffffffffffc1 );
45
  TEST_RR_OP( 19, sll, 0x0000001090909080, 0x0000000021212121, 0xffffffffffffffc7 );
46
  TEST_RR_OP( 20, sll, 0x0000084848484000, 0x0000000021212121, 0xffffffffffffffce );
47
 
48
#if __riscv_xlen == 64
49
  TEST_RR_OP( 21, sll, 0x8000000000000000, 0x0000000021212121, 0xffffffffffffffff );
50
  TEST_RR_OP( 50, sll, 0x8000000000000000, 0x0000000000000001, 63 );
51
  TEST_RR_OP( 51, sll, 0xffffff8000000000, 0xffffffffffffffff, 39 );
52
  TEST_RR_OP( 52, sll, 0x0909080000000000, 0x0000000021212121, 43 );
53
#endif
54
 
55
  #-------------------------------------------------------------
56
  # Source/Destination tests
57
  #-------------------------------------------------------------
58
 
59
  TEST_RR_SRC1_EQ_DEST( 22, sll, 0x00000080, 0x00000001, 7  );
60
  TEST_RR_SRC2_EQ_DEST( 23, sll, 0x00004000, 0x00000001, 14 );
61
  TEST_RR_SRC12_EQ_DEST( 24, sll, 24, 3 );
62
 
63
  #-------------------------------------------------------------
64
  # Bypassing tests
65
  #-------------------------------------------------------------
66
 
67
  TEST_RR_DEST_BYPASS( 25, 0, sll, 0x0000000000000080, 0x0000000000000001, 7  );
68
  TEST_RR_DEST_BYPASS( 26, 1, sll, 0x0000000000004000, 0x0000000000000001, 14 );
69
  TEST_RR_DEST_BYPASS( 27, 2, sll, 0x0000000080000000, 0x0000000000000001, 31 );
70
 
71
  TEST_RR_SRC12_BYPASS( 28, 0, 0, sll, 0x0000000000000080, 0x0000000000000001, 7  );
72
  TEST_RR_SRC12_BYPASS( 29, 0, 1, sll, 0x0000000000004000, 0x0000000000000001, 14 );
73
  TEST_RR_SRC12_BYPASS( 30, 0, 2, sll, 0x0000000080000000, 0x0000000000000001, 31 );
74
  TEST_RR_SRC12_BYPASS( 31, 1, 0, sll, 0x0000000000000080, 0x0000000000000001, 7  );
75
  TEST_RR_SRC12_BYPASS( 32, 1, 1, sll, 0x0000000000004000, 0x0000000000000001, 14 );
76
  TEST_RR_SRC12_BYPASS( 33, 2, 0, sll, 0x0000000080000000, 0x0000000000000001, 31 );
77
 
78
  TEST_RR_SRC21_BYPASS( 34, 0, 0, sll, 0x0000000000000080, 0x0000000000000001, 7  );
79
  TEST_RR_SRC21_BYPASS( 35, 0, 1, sll, 0x0000000000004000, 0x0000000000000001, 14 );
80
  TEST_RR_SRC21_BYPASS( 36, 0, 2, sll, 0x0000000080000000, 0x0000000000000001, 31 );
81
  TEST_RR_SRC21_BYPASS( 37, 1, 0, sll, 0x0000000000000080, 0x0000000000000001, 7  );
82
  TEST_RR_SRC21_BYPASS( 38, 1, 1, sll, 0x0000000000004000, 0x0000000000000001, 14 );
83
  TEST_RR_SRC21_BYPASS( 39, 2, 0, sll, 0x0000000080000000, 0x0000000000000001, 31 );
84
 
85
  TEST_RR_ZEROSRC1( 40, sll, 0, 15 );
86
  TEST_RR_ZEROSRC2( 41, sll, 32, 32 );
87
  TEST_RR_ZEROSRC12( 42, sll, 0 );
88
  TEST_RR_ZERODEST( 43, sll, 1024, 2048 );
89
 
90
  TEST_PASSFAIL
91
 
92
RVTEST_CODE_END
93
 
94
.data
95
RV_COMPLIANCE_DATA_BEGIN
96
test_res:
97
    .fill 40, 4, -1
98
RV_COMPLIANCE_DATA_END
99
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.