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
379eaa6f
Commit
379eaa6f
authored
Jun 25, 2012
by
Richard Henderson
Committed by
Richard Henderson
Jun 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i386: Use vpmacsdd for mulv4si3
From-SVN: r188958
parent
ac357108
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+4
-0
gcc/config/i386/sse.md
+6
-0
No files found.
gcc/ChangeLog
View file @
379eaa6f
2012-06-25 Richard Henderson <rth@redhat.com>
* config/i386.sse.md (mul<VI4_AVX2>3): Use xop_pmacsdd.
2012-06-25 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (ix86_rtx_costs) [MULT]: Only apply XOP cost
to V16QImode.
(ix86_expand_vec_interleave): New.
...
...
gcc/config/i386/sse.md
View file @
379eaa6f
...
...
@@ -5564,6 +5564,12 @@
operands
[
2
]
= force_const_mem (
<MODE>
mode, operands
[
2
]
);
ix86_fixup_binary_operands_no_copy (MULT,
<MODE>
mode, operands);
}
else if (TARGET_XOP)
{
rtx z = force_reg (
<MODE>
mode, CONST0_RTX (
<MODE>
mode));
emit_insn (gen_xop_pmacsdd (operands
[
0
]
, operands
[
1
]
, operands
[
2
]
, z));
DONE;
}
else
{
ix86_expand_sse2_mulv4si3 (operands
[
0
]
, operands
[
1
]
, operands
[
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