Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
48e73d63
Commit
48e73d63
authored
Apr 14, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ereal_from_{int,uint}): New arg, MODE.
From-SVN: r11763
parent
2dab894a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
2 deletions
+68
-2
gcc/real.c
+68
-2
No files found.
gcc/real.c
View file @
48e73d63
...
...
@@ -758,14 +758,17 @@ efixui (x)
/* REAL_VALUE_FROM_INT macro. */
void
ereal_from_int
(
d
,
i
,
j
)
ereal_from_int
(
d
,
i
,
j
,
mode
)
REAL_VALUE_TYPE
*
d
;
HOST_WIDE_INT
i
,
j
;
enum
machine_mode
mode
;
{
unsigned
EMUSHORT
df
[
NE
],
dg
[
NE
];
HOST_WIDE_INT
low
,
high
;
int
sign
;
if
(
GET_MODE_CLASS
(
mode
)
!=
MODE_FLOAT
)
abort
();
sign
=
0
;
low
=
i
;
if
((
high
=
j
)
<
0
)
...
...
@@ -785,6 +788,36 @@ ereal_from_int (d, i, j)
eadd
(
df
,
dg
,
dg
);
if
(
sign
)
eneg
(
dg
);
/* A REAL_VALUE_TYPE may not be wide enough to hold the two HOST_WIDE_INTS.
Avoid double-rounding errors later by rounding off now from the
extra-wide internal format to the requested precision. */
switch
(
GET_MODE_BITSIZE
(
mode
))
{
case
32
:
etoe24
(
dg
,
df
);
e24toe
(
df
,
dg
);
break
;
case
64
:
etoe53
(
dg
,
df
);
e53toe
(
df
,
dg
);
break
;
case
96
:
etoe64
(
dg
,
df
);
e64toe
(
df
,
dg
);
break
;
case
128
:
etoe113
(
dg
,
df
);
e113toe
(
df
,
dg
);
break
;
default
:
abort
();
}
PUT_REAL
(
dg
,
d
);
}
...
...
@@ -792,13 +825,16 @@ ereal_from_int (d, i, j)
/* REAL_VALUE_FROM_UNSIGNED_INT macro. */
void
ereal_from_uint
(
d
,
i
,
j
)
ereal_from_uint
(
d
,
i
,
j
,
mode
)
REAL_VALUE_TYPE
*
d
;
unsigned
HOST_WIDE_INT
i
,
j
;
enum
machine_mode
mode
;
{
unsigned
EMUSHORT
df
[
NE
],
dg
[
NE
];
unsigned
HOST_WIDE_INT
low
,
high
;
if
(
GET_MODE_CLASS
(
mode
)
!=
MODE_FLOAT
)
abort
();
low
=
i
;
high
=
j
;
eldexp
(
eone
,
HOST_BITS_PER_WIDE_INT
,
df
);
...
...
@@ -806,6 +842,36 @@ ereal_from_uint (d, i, j)
emul
(
dg
,
df
,
dg
);
ultoe
(
&
low
,
df
);
eadd
(
df
,
dg
,
dg
);
/* A REAL_VALUE_TYPE may not be wide enough to hold the two HOST_WIDE_INTS.
Avoid double-rounding errors later by rounding off now from the
extra-wide internal format to the requested precision. */
switch
(
GET_MODE_BITSIZE
(
mode
))
{
case
32
:
etoe24
(
dg
,
df
);
e24toe
(
df
,
dg
);
break
;
case
64
:
etoe53
(
dg
,
df
);
e53toe
(
df
,
dg
);
break
;
case
96
:
etoe64
(
dg
,
df
);
e64toe
(
df
,
dg
);
break
;
case
128
:
etoe113
(
dg
,
df
);
e113toe
(
df
,
dg
);
break
;
default
:
abort
();
}
PUT_REAL
(
dg
,
d
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment