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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [testsuite/] [test-code-or1k/] [testfloat/] [systflags.c] - Blame information for rev 233

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 233 julius
 
2
/*
3
===============================================================================
4
 
5
This C source file is part of TestFloat, Release 2a, a package of programs
6
for testing the correctness of floating-point arithmetic complying to the
7
IEC/IEEE Standard for Floating-Point.
8
 
9
Written by John R. Hauser.  More information is available through the Web
10
page `http://HTTP.CS.Berkeley.EDU/~jhauser/arithmetic/TestFloat.html'.
11
 
12
THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
13
has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
14
TIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
15
PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
16
AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
17
 
18
Derivative works are acceptable, even for commercial purposes, so long as
19
(1) they include prominent notice that the work is derivative, and (2) they
20
include prominent notice akin to these four paragraphs for those parts of
21
this code that are retained.
22
 
23
Modified for use with or1ksim's testsuite.
24
 
25
Contributor Julius Baxter <julius.baxter@orsoc.se>
26
 
27
===============================================================================
28
*/
29
 
30
#include "milieu.h"
31
#include "systflags.h"
32
#include "spr-defs.h"
33
//#include <stdio.h>
34
 
35
// Float flag values, from softfloat.h
36
enum {
37
    float_flag_invalid   =  1,
38
    float_flag_divbyzero =  4,
39
    float_flag_overflow  =  8,
40
    float_flag_underflow = 16,
41
    float_flag_inexact   = 32
42
};
43
 
44
/*
45
-------------------------------------------------------------------------------
46
Clears the system's IEC/IEEE floating-point exception flags.  Returns the
47
previous value of the flags.
48
-------------------------------------------------------------------------------
49
*/
50
int8 syst_float_flags_clear( void )
51
{
52
 
53
  // Read the FPCSR
54
  unsigned int spr = SPR_FPCSR;
55
  unsigned int value;
56
  int8 flags = 0;
57
  // Read the SPR
58
  asm("l.mfspr\t\t%0,%1,0" : "=r" (value) : "r" (spr));
59
 
60
  // Extract the flags from OR1K's FPCSR, put into testfloat's flags format  
61
  if (value & SPR_FPCSR_IXF)
62
    flags |= float_flag_inexact;
63
 
64
  if (value & SPR_FPCSR_UNF)
65
    flags |= float_flag_underflow;
66
 
67
  if (value & SPR_FPCSR_OVF)
68
    flags |= float_flag_overflow;
69
 
70
  if (value & SPR_FPCSR_DZF)
71
    flags |= float_flag_divbyzero;
72
 
73
  if (value & SPR_FPCSR_IVF)
74
    flags |= float_flag_invalid;
75
 
76
  //  printf("testfloat: getting flags, FPCSR: 0x%x, softfloatflags: 0x%x\n", 
77
  //         value & SPR_FPCSR_ALLF, flags);
78
 
79
  // Clear flags in FPCSR
80
  value &= ~(SPR_FPCSR_ALLF);
81
 
82
  // Write value back to FPCSR
83
  asm("l.mtspr\t\t%0,%1,0": : "r" (spr), "r" (value));
84
 
85
  return flags;
86
 
87
}
88
 

powered by: WebSVN 2.1.0

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