mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 13:34:28 +00:00
70 lines
2.2 KiB
ArmAsm
70 lines
2.2 KiB
ArmAsm
///////////////////////////////////////////
|
|
// fpu.S
|
|
//
|
|
// Written: David_Harris@hmc.edu 28 March 2023
|
|
//
|
|
// Purpose: Test coverage for FPU
|
|
//
|
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
|
//
|
|
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
|
//
|
|
// Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
|
// except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
|
// may obtain a copy of the License at
|
|
//
|
|
// https://solderpad.org/licenses/SHL-2.1/
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, any work distributed under the
|
|
// License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
// either express or implied. See the License for the specific language governing permissions
|
|
// and limitations under the License.
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// load code to initalize stack, handle interrupts, terminate
|
|
#include "WALLY-init-lib.h"
|
|
|
|
main:
|
|
|
|
# Test legal instructions not covered elsewhere
|
|
flq ft0, 0(a0)
|
|
flh ft0, 8(a0)
|
|
fsq ft0, 0(a0)
|
|
fsh ft0, 8(a0)
|
|
fcvt.h.s ft1, ft0
|
|
fcvt.q.s ft2, ft0
|
|
fcvt.h.w ft3, a0
|
|
fcvt.h.wu ft3, a0
|
|
fcvt.h.l ft3, a0
|
|
fcvt.h.lu ft3, a0
|
|
fcvt.w.h a0, ft3
|
|
fcvt.wu.h a0, ft3
|
|
fcvt.l.h a0, ft3
|
|
fcvt.lu.h a0, ft3
|
|
fcvt.q.w ft3, a0
|
|
fcvt.q.wu ft3, a0
|
|
fcvt.q.l ft3, a0
|
|
fcvt.q.lu ft3, a0
|
|
fcvt.w.q a0, ft3
|
|
fcvt.wu.q a0, ft3
|
|
fcvt.l.q a0, ft3
|
|
fcvt.lu.q a0, ft3
|
|
|
|
|
|
# Test illegal instructions are detected
|
|
.word 0x00000007 // illegal floating-point load (bad Funct3)
|
|
.word 0x00000027 // illegal floating-point store (bad Funct3)
|
|
.word 0x58F00053 // illegal fsqrt (bad Rs2D)
|
|
.word 0x20007053 // illegal fsgnj (bad Funct3)
|
|
.word 0x28007053 // illegal fmin/max (bad Funct3)
|
|
.word 0xA0007053 // illegal fcmp (bad Funct3)
|
|
.word 0xE0007053 // illegal fclass/fmv (bad Funct3)
|
|
.word 0xF0007053 // illegal fmv (bad Funct3)
|
|
.word 0x43007053 // illegal fcvt.d.* (bad Rs2D)
|
|
.word 0x42207053 // illegal fcvt.d.* (bad Rs2D[1])
|
|
|
|
j done
|
|
|