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
b99d7d97
Commit
b99d7d97
authored
Aug 15, 2018
by
Qing Zhao
Committed by
Qing Zhao
Aug 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not expand the call to memcmp at all when overflow is detected.
From-SVN: r263563
parent
0cd020ae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
4 deletions
+21
-4
gcc/ChangeLog
+6
-0
gcc/builtins.c
+6
-1
gcc/testsuite/ChangeLog
+6
-0
gcc/testsuite/gcc.dg/strcmpopt_6.c
+3
-3
No files found.
gcc/ChangeLog
View file @
b99d7d97
2018-08-15 Qing Zhao <qing.zhao@oracle.com>
PR testsuite/86519
* builtins.c (expand_builtin_memcmp): Do not expand the call
when overflow is detected.
2018-08-15 Martin Sebor <msebor@redhat.com>
PR tree-optimization/71625
...
...
gcc/builtins.c
View file @
b99d7d97
...
...
@@ -4481,11 +4481,16 @@ expand_builtin_memcmp (tree exp, rtx target, bool result_eq)
/*objsize=*/
NULL_TREE
);
}
/* If the specified length exceeds the size of either object,
call the function. */
if
(
!
no_overflow
)
return
NULL_RTX
;
/* Due to the performance benefit, always inline the calls first
when result_eq is false. */
rtx
result
=
NULL_RTX
;
if
(
!
result_eq
&&
fcode
!=
BUILT_IN_BCMP
&&
no_overflow
)
if
(
!
result_eq
&&
fcode
!=
BUILT_IN_BCMP
)
{
result
=
inline_expand_builtin_string_cmp
(
exp
,
target
);
if
(
result
)
...
...
gcc/testsuite/ChangeLog
View file @
b99d7d97
2018-08-15 Qing Zhao <qing.zhao@oracle.com>
PR testsuite/86519
* gcc.dg/strcmpopt_6.c: Scan the assembly file instead of
the .expand file.
2018-08-15 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* gcc.dg/wmain.c: New test.
...
...
gcc/testsuite/gcc.dg/strcmpopt_6.c
View file @
b99d7d97
/* When the specified length exceeds one of the arguments of the call to memcmp,
the call to memcmp should NOT be inlined. */
/* { dg-do
run
} */
/* { dg-options "-O2 -
fdump-rtl-expand -
Wno-stringop-overflow" } */
/* { dg-do
compile
} */
/* { dg-options "-O2 -Wno-stringop-overflow" } */
typedef
struct
{
char
s
[
8
];
int
x
;
}
S
;
...
...
@@ -33,4 +33,4 @@ int main (void)
}
/* { dg-final { scan-
rtl-dump-times "__builtin_memcmp" 6 "expand"
} } */
/* { dg-final { scan-
assembler-times "memcmp" 2
} } */
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