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

Subversion Repositories fwrisc

[/] [fwrisc/] [trunk/] [ve/] [fwrisc/] [tests/] [riscv-compliance/] [riscv-test-suite/] [rv32ui/] [rv64ui/] [sub.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
# sub.S
5
#-----------------------------------------------------------------------------
6
#
7
# Test sub 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
RVTEST_RV64U
16
RVTEST_CODE_BEGIN
17
 
18
  #-------------------------------------------------------------
19
  # Arithmetic tests
20
  #-------------------------------------------------------------
21
 
22
  TEST_RR_OP( 2,  sub, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000 );
23
  TEST_RR_OP( 3,  sub, 0x0000000000000000, 0x0000000000000001, 0x0000000000000001 );
24
  TEST_RR_OP( 4,  sub, 0xfffffffffffffffc, 0x0000000000000003, 0x0000000000000007 );
25
 
26
  TEST_RR_OP( 5,  sub, 0x0000000000008000, 0x0000000000000000, 0xffffffffffff8000 );
27
  TEST_RR_OP( 6,  sub, 0xffffffff80000000, 0xffffffff80000000, 0x0000000000000000 );
28
  TEST_RR_OP( 7,  sub, 0xffffffff80008000, 0xffffffff80000000, 0xffffffffffff8000 );
29
 
30
  TEST_RR_OP( 8,  sub, 0xffffffffffff8001, 0x0000000000000000, 0x0000000000007fff );
31
  TEST_RR_OP( 9,  sub, 0x000000007fffffff, 0x000000007fffffff, 0x0000000000000000 );
32
  TEST_RR_OP( 10, sub, 0x000000007fff8000, 0x000000007fffffff, 0x0000000000007fff );
33
 
34
  TEST_RR_OP( 11, sub, 0xffffffff7fff8001, 0xffffffff80000000, 0x0000000000007fff );
35
  TEST_RR_OP( 12, sub, 0x0000000080007fff, 0x000000007fffffff, 0xffffffffffff8000 );
36
 
37
  TEST_RR_OP( 13, sub, 0x0000000000000001, 0x0000000000000000, 0xffffffffffffffff );
38
  TEST_RR_OP( 14, sub, 0xfffffffffffffffe, 0xffffffffffffffff, 0x0000000000000001 );
39
  TEST_RR_OP( 15, sub, 0x0000000000000000, 0xffffffffffffffff, 0xffffffffffffffff );
40
 
41
  #-------------------------------------------------------------
42
  # Source/Destination tests
43
  #-------------------------------------------------------------
44
 
45
  TEST_RR_SRC1_EQ_DEST( 16, sub, 2, 13, 11 );
46
  TEST_RR_SRC2_EQ_DEST( 17, sub, 3, 14, 11 );
47
  TEST_RR_SRC12_EQ_DEST( 18, sub, 0, 13 );
48
 
49
  #-------------------------------------------------------------
50
  # Bypassing tests
51
  #-------------------------------------------------------------
52
 
53
  TEST_RR_DEST_BYPASS( 19, 0, sub, 2, 13, 11 );
54
  TEST_RR_DEST_BYPASS( 20, 1, sub, 3, 14, 11 );
55
  TEST_RR_DEST_BYPASS( 21, 2, sub, 4, 15, 11 );
56
 
57
  TEST_RR_SRC12_BYPASS( 22, 0, 0, sub, 2, 13, 11 );
58
  TEST_RR_SRC12_BYPASS( 23, 0, 1, sub, 3, 14, 11 );
59
  TEST_RR_SRC12_BYPASS( 24, 0, 2, sub, 4, 15, 11 );
60
  TEST_RR_SRC12_BYPASS( 25, 1, 0, sub, 2, 13, 11 );
61
  TEST_RR_SRC12_BYPASS( 26, 1, 1, sub, 3, 14, 11 );
62
  TEST_RR_SRC12_BYPASS( 27, 2, 0, sub, 4, 15, 11 );
63
 
64
  TEST_RR_SRC21_BYPASS( 28, 0, 0, sub, 2, 13, 11 );
65
  TEST_RR_SRC21_BYPASS( 29, 0, 1, sub, 3, 14, 11 );
66
  TEST_RR_SRC21_BYPASS( 30, 0, 2, sub, 4, 15, 11 );
67
  TEST_RR_SRC21_BYPASS( 31, 1, 0, sub, 2, 13, 11 );
68
  TEST_RR_SRC21_BYPASS( 32, 1, 1, sub, 3, 14, 11 );
69
  TEST_RR_SRC21_BYPASS( 33, 2, 0, sub, 4, 15, 11 );
70
 
71
  TEST_RR_ZEROSRC1( 34, sub, 15, -15 );
72
  TEST_RR_ZEROSRC2( 35, sub, 32, 32 );
73
  TEST_RR_ZEROSRC12( 36, sub, 0 );
74
  TEST_RR_ZERODEST( 37, sub, 16, 30 );
75
 
76
  TEST_PASSFAIL
77
 
78
RVTEST_CODE_END
79
  .data
80
RV_COMPLIANCE_DATA_BEGIN
81
test_res:
82
    .fill 50, 4, -1
83
RV_COMPLIANCE_DATA_END
84
 
85
 

powered by: WebSVN 2.1.0

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