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
82be40f7
Commit
82be40f7
authored
Sep 08, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Sep 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some vector operation simplifications.
From-SVN: r36263
parent
d5e5ec88
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
gcc/ChangeLog
+5
-0
gcc/combine.c
+39
-0
No files found.
gcc/ChangeLog
View file @
82be40f7
2000-09-08 Bernd Schmidt <bernds@redhat.co.uk>
* combine.c (combine_simplify_rtx): Try to simplify VEC_SELECT of a
VEC_CONCAT.
2000-09-07 Richard Henderson <rth@cygnus.com>
* config/ia64/lib1funcs.asm (__divsi3): Use .s1 for frcpa.
...
...
gcc/combine.c
View file @
82be40f7
...
...
@@ -4539,6 +4539,45 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
break
;
case
VEC_SELECT
:
{
rtx
op0
=
XEXP
(
x
,
0
);
rtx
op1
=
XEXP
(
x
,
1
);
int
len
;
if
(
GET_CODE
(
op1
)
!=
PARALLEL
)
abort
();
len
=
XVECLEN
(
op1
,
0
);
if
(
len
==
1
&&
GET_CODE
(
XVECEXP
(
op1
,
0
,
0
))
==
CONST_INT
&&
GET_CODE
(
op0
)
==
VEC_CONCAT
)
{
int
offset
=
INTVAL
(
XVECEXP
(
op1
,
0
,
0
))
*
GET_MODE_SIZE
(
GET_MODE
(
x
));
/* Try to find the element in the VEC_CONCAT. */
for
(;;)
{
if
(
GET_MODE
(
op0
)
==
GET_MODE
(
x
))
return
op0
;
if
(
GET_CODE
(
op0
)
==
VEC_CONCAT
)
{
HOST_WIDE_INT
op0_size
=
GET_MODE_SIZE
(
GET_MODE
(
XEXP
(
op0
,
0
)));
if
(
op0_size
<
offset
)
op0
=
XEXP
(
op0
,
0
);
else
{
offset
-=
op0_size
;
op0
=
XEXP
(
op0
,
1
);
}
}
else
break
;
}
}
}
break
;
default
:
break
;
}
...
...
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