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
b0ce92b4
Commit
b0ce92b4
authored
Dec 08, 2010
by
Michael Meissner
Committed by
Michael Meissner
Dec 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PR 42694: add checks to make sure sqrt is supported
From-SVN: r167594
parent
afca0898
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
2 deletions
+52
-2
gcc/ChangeLog
+8
-0
gcc/builtins.c
+4
-2
gcc/testsuite/ChangeLog
+6
-0
gcc/testsuite/gcc.target/powerpc/ppc-pow.c
+34
-0
No files found.
gcc/ChangeLog
View file @
b0ce92b4
2010
-
12
-
08
Michael
Meissner
<
meissner
@linux
.
vnet
.
ibm
.
com
>
PR
middle
-
end
/
42694
*
builtins
.
c
(
expand_builtin_pow_root
)
:
Don
'
t
optimize
pow
(
x
,
y
)
where
y
is
0
.
25
,
1
.
/
6
.,
or
0
.
75
if
the
target
does
not
have
a
sqrt
instruction
,
but
do
optimize
if
y
is
0
.
5
or
1
.
/
3
.
since
that
changes
an
expensive
call
into
a
cheaper
one
.
2010
-
12
-
08
Richard
Guenther
<
rguenther
@suse
.
de
>
*
tree
-
ssa
-
sccvn
.
c
(
copy_reference_ops_from_ref
)
:
Use
a
shift
gcc/builtins.c
View file @
b0ce92b4
...
...
@@ -3068,7 +3068,8 @@ expand_builtin_pow_root (location_t loc, tree arg0, tree arg1, tree type,
if
(
REAL_VALUES_EQUAL
(
c
,
dconsthalf
))
op
=
build_call_nofold_loc
(
loc
,
sqrtfn
,
1
,
arg0
);
else
/* Don't do this optimization if we don't have a sqrt insn. */
else
if
(
optab_handler
(
sqrt_optab
,
mode
)
!=
CODE_FOR_nothing
)
{
REAL_VALUE_TYPE
dconst1_4
=
dconst1
;
REAL_VALUE_TYPE
dconst3_4
;
...
...
@@ -3114,7 +3115,8 @@ expand_builtin_pow_root (location_t loc, tree arg0, tree arg1, tree type,
op
=
build_call_nofold_loc
(
loc
,
cbrtfn
,
1
,
arg0
);
/* Now try 1/6. */
else
if
(
optimize_insn_for_speed_p
())
else
if
(
optimize_insn_for_speed_p
()
&&
optab_handler
(
sqrt_optab
,
mode
)
!=
CODE_FOR_nothing
)
{
REAL_VALUE_TYPE
dconst1_6
=
dconst1_3
;
SET_REAL_EXP
(
&
dconst1_6
,
REAL_EXP
(
&
dconst1_6
)
-
1
);
...
...
gcc/testsuite/ChangeLog
View file @
b0ce92b4
2010
-
12
-
08
Michael
Meissner
<
meissner
@linux
.
vnet
.
ibm
.
com
>
PR
middle
-
end
/
42694
*
gcc
.
target
/
powerpc
/
ppc
-
pow
.
c
:
New
file
to
make
sure
pow
(
x
,
0
.
75
)
is
not
optimized
if
the
machine
has
no
sqrt
instruction
.
2010
-
12
-
07
Andrey
Belevantsev
<
abel
@ispras
.
ru
>
PR
target
/
43603
...
...
gcc/testsuite/gcc.target/powerpc/ppc-pow.c
0 → 100644
View file @
b0ce92b4
/* { dg-do compile { target { { powerpc*-*-* } && { ! powerpc*-apple-darwin* } } } } */
/* { dg-options "-O2 -ffast-math -mcpu=power6" } */
/* { dg-final { scan-assembler-times "fsqrt" 3 } } */
/* { dg-final { scan-assembler-times "fmul" 1 } } */
/* { dg-final { scan-assembler-times "bl pow" 1 } } */
/* { dg-final { scan-assembler-times "bl sqrt" 1 } } */
double
do_pow_0_75_default
(
double
a
)
{
return
__builtin_pow
(
a
,
0
.
75
);
/* should generate 2 fsqrts */
}
double
do_pow_0_5_default
(
double
a
)
{
return
__builtin_pow
(
a
,
0
.
5
);
/* should generate fsqrt */
}
#pragma GCC target "no-powerpc-gpopt,no-powerpc-gfxopt"
double
do_pow_0_75_nosqrt
(
double
a
)
{
return
__builtin_pow
(
a
,
0
.
75
);
/* should call pow */
}
double
do_pow_0_5_nosqrt
(
double
a
)
{
return
__builtin_pow
(
a
,
0
.
5
);
/* should call sqrt */
}
#pragma GCC reset_options
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