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
28cf078d
Commit
28cf078d
authored
Aug 28, 1992
by
James Van Artsdalen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(sin_optab,cos_optab): Define optabs for sin and cos.
(init_optabs): Initialize them. From-SVN: r1978
parent
d70326a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
gcc/optabs.c
+34
-0
No files found.
gcc/optabs.c
View file @
28cf078d
...
...
@@ -73,6 +73,8 @@ optab abs_optab;
optab
one_cmpl_optab
;
optab
ffs_optab
;
optab
sqrt_optab
;
optab
sin_optab
;
optab
cos_optab
;
optab
cmp_optab
;
optab
ucmp_optab
;
/* Used only for libcalls for unsigned comparisons. */
...
...
@@ -3355,6 +3357,8 @@ init_optabs ()
one_cmpl_optab
=
init_optab
(
NOT
);
ffs_optab
=
init_optab
(
FFS
);
sqrt_optab
=
init_optab
(
SQRT
);
sin_optab
=
init_optab
(
UNKNOWN
);
cos_optab
=
init_optab
(
UNKNOWN
);
strlen_optab
=
init_optab
(
UNKNOWN
);
#ifdef HAVE_addqi3
...
...
@@ -4250,6 +4254,36 @@ init_optabs ()
/* No library calls here! If there is no sqrt instruction expand_builtin
should force the library call. */
#ifdef HAVE_sinsf2
if
(
HAVE_sinsf2
)
sin_optab
->
handlers
[(
int
)
SFmode
].
insn_code
=
CODE_FOR_sinsf2
;
#endif
#ifdef HAVE_sindf2
if
(
HAVE_sindf2
)
sin_optab
->
handlers
[(
int
)
DFmode
].
insn_code
=
CODE_FOR_sindf2
;
#endif
#ifdef HAVE_sintf2
if
(
HAVE_sintf2
)
sin_optab
->
handlers
[(
int
)
TFmode
].
insn_code
=
CODE_FOR_sintf2
;
#endif
/* No library calls here! If there is no sin instruction expand_builtin
should force the library call. */
#ifdef HAVE_cossf2
if
(
HAVE_cossf2
)
cos_optab
->
handlers
[(
int
)
SFmode
].
insn_code
=
CODE_FOR_cossf2
;
#endif
#ifdef HAVE_cosdf2
if
(
HAVE_cosdf2
)
cos_optab
->
handlers
[(
int
)
DFmode
].
insn_code
=
CODE_FOR_cosdf2
;
#endif
#ifdef HAVE_costf2
if
(
HAVE_costf2
)
cos_optab
->
handlers
[(
int
)
TFmode
].
insn_code
=
CODE_FOR_costf2
;
#endif
/* No library calls here! If there is no cos instruction expand_builtin
should force the library call. */
#ifdef HAVE_strlenqi
if
(
HAVE_strlenqi
)
strlen_optab
->
handlers
[(
int
)
QImode
].
insn_code
=
CODE_FOR_strlenqi
;
...
...
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