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
8864db87
Commit
8864db87
authored
Oct 06, 2011
by
Richard Henderson
Committed by
Richard Henderson
Oct 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vshuffle: Use correct mode for mask operand.
From-SVN: r179622
parent
92aea285
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
9 deletions
+12
-9
gcc/ChangeLog
+5
-0
gcc/optabs.c
+7
-9
No files found.
gcc/ChangeLog
View file @
8864db87
2001-10-06 Richard Henderson <rth@redhat.com>
* optabs.c (expand_vec_shuffle_expr): Use the proper mode for the
mask operand. Tidy the code.
2011-10-06 Jakub Jelinek <jakub@redhat.com>
* tree-vect-patterns.c (vect_pattern_recog_1): Use
gcc/optabs.c
View file @
8864db87
...
...
@@ -6650,9 +6650,8 @@ expand_vec_shuffle_expr (tree type, tree v0, tree v1, tree mask, rtx target)
struct
expand_operand
ops
[
4
];
enum
insn_code
icode
;
enum
machine_mode
mode
=
TYPE_MODE
(
type
);
rtx
rtx_v0
,
rtx_mask
;
gcc_assert
(
expand_vec_shuffle_expr_p
(
mode
,
v0
,
v1
,
mask
));
gcc_
checking_
assert
(
expand_vec_shuffle_expr_p
(
mode
,
v0
,
v1
,
mask
));
if
(
TREE_CODE
(
mask
)
==
VECTOR_CST
)
{
...
...
@@ -6675,24 +6674,23 @@ expand_vec_shuffle_expr (tree type, tree v0, tree v1, tree mask, rtx target)
return
expand_expr_real_1
(
call
,
target
,
VOIDmode
,
EXPAND_NORMAL
,
NULL
);
}
vshuffle
:
vshuffle
:
icode
=
direct_optab_handler
(
vshuffle_optab
,
mode
);
if
(
icode
==
CODE_FOR_nothing
)
return
0
;
rtx_mask
=
expand_normal
(
mask
);
create_output_operand
(
&
ops
[
0
],
target
,
mode
);
create_input_operand
(
&
ops
[
3
],
rtx_mask
,
mode
);
create_input_operand
(
&
ops
[
3
],
expand_normal
(
mask
),
TYPE_MODE
(
TREE_TYPE
(
mask
)));
if
(
operand_equal_p
(
v0
,
v1
,
0
))
{
rtx_v0
=
expand_normal
(
v0
);
if
(
!
insn_operand_matches
(
icode
,
1
,
rtx_v0
))
rtx
rtx
_v0
=
expand_normal
(
v0
);
if
(
!
insn_operand_matches
(
icode
,
1
,
rtx_v0
))
rtx_v0
=
force_reg
(
mode
,
rtx_v0
);
gcc_checking_assert
(
insn_operand_matches
(
icode
,
2
,
rtx_v0
));
gcc_checking_assert
(
insn_operand_matches
(
icode
,
2
,
rtx_v0
));
create_fixed_operand
(
&
ops
[
1
],
rtx_v0
);
create_fixed_operand
(
&
ops
[
2
],
rtx_v0
);
...
...
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