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
58733f96
Commit
58733f96
authored
Feb 24, 1995
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define long double versions of sin/cos
From-SVN: r9055
parent
f33985c6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
gcc/config/i386/i386.md
+14
-0
No files found.
gcc/config/i386/i386.md
View file @
58733f96
...
@@ -3489,6 +3489,13 @@
...
@@ -3489,6 +3489,13 @@
&& (TARGET_IEEE_FP || flag_fast_math) "
&& (TARGET_IEEE_FP || flag_fast_math) "
"fsin")
"fsin")
(define_insn "sinxf2"
[
(set (match_operand:XF 0 "register_operand" "=f")
(unspec:XF
[
(match_operand:XF 1 "register_operand" "0")
]
1))]
"! TARGET_NO_FANCY_MATH_387 && TARGET_80387
&& (TARGET_IEEE_FP || flag_fast_math) "
"fsin")
(define_insn "cosdf2"
(define_insn "cosdf2"
[
(set (match_operand:DF 0 "register_operand" "=f")
[
(set (match_operand:DF 0 "register_operand" "=f")
(unspec:DF
[
(match_operand:DF 1 "register_operand" "0")
]
2))]
(unspec:DF
[
(match_operand:DF 1 "register_operand" "0")
]
2))]
...
@@ -3511,6 +3518,13 @@
...
@@ -3511,6 +3518,13 @@
&& (TARGET_IEEE_FP || flag_fast_math) "
&& (TARGET_IEEE_FP || flag_fast_math) "
"fcos")
"fcos")
(define_insn "cosxf2"
[
(set (match_operand:XF 0 "register_operand" "=f")
(unspec:XF
[
(match_operand:XF 1 "register_operand" "0")
]
2))]
"! TARGET_NO_FANCY_MATH_387 && TARGET_80387
&& (TARGET_IEEE_FP || flag_fast_math) "
"fcos")
;;- one complement instructions
;;- one complement instructions
(define_insn "one_cmplsi2"
(define_insn "one_cmplsi2"
...
...
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