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
4b71cd6e
Commit
4b71cd6e
authored
Jun 15, 1994
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support 32x32->64 bit multiply
From-SVN: r7480
parent
1ecba59d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
5 deletions
+28
-5
gcc/config/i386/i386.h
+4
-0
gcc/config/i386/i386.md
+24
-5
No files found.
gcc/config/i386/i386.h
View file @
4b71cd6e
...
...
@@ -410,6 +410,7 @@ enum reg_class
{
NO_REGS
,
AREG
,
DREG
,
CREG
,
BREG
,
AD_REGS
,
/* %eax/%edx for DImode */
Q_REGS
,
/* %eax %ebx %ecx %edx */
SIREG
,
DIREG
,
INDEX_REGS
,
/* %eax %ebx %ecx %edx %esi %edi %ebp */
...
...
@@ -428,6 +429,7 @@ enum reg_class
#define REG_CLASS_NAMES \
{ "NO_REGS", \
"AREG", "DREG", "CREG", "BREG", \
"AD_REGS", \
"Q_REGS", \
"SIREG", "DIREG", \
"INDEX_REGS", \
...
...
@@ -443,6 +445,7 @@ enum reg_class
#define REG_CLASS_CONTENTS \
{ 0, \
0x1, 0x2, 0x4, 0x8,
/* AREG, DREG, CREG, BREG */
\
0x3,
/* AD_REGS */
\
0xf,
/* Q_REGS */
\
0x10, 0x20,
/* SIREG, DIREG */
\
0x1007f,
/* INDEX_REGS */
\
...
...
@@ -514,6 +517,7 @@ extern enum reg_class regclass_map[FIRST_PSEUDO_REGISTER];
(C) == 'b' ? BREG : \
(C) == 'c' ? CREG : \
(C) == 'd' ? DREG : \
(C) == 'A' ? AD_REGS : \
(C) == 'D' ? DIREG : \
(C) == 'S' ? SIREG : NO_REGS)
...
...
gcc/config/i386/i386.md
View file @
4b71cd6e
...
...
@@ -2343,15 +2343,34 @@
return AS3 (imul%L0,%2,%1,%0);
}")
(define_insn ""
(define_insn "
umulqihi3
"
[
(set (match_operand:HI 0 "general_operand" "=a")
(mult:HI (zero_extend:HI
(match_operand:QI 1 "nonimmediate_operand" "%0"))
(zero_extend:HI
(match_operand:QI 2 "nonimmediate_operand" "qm"))))]
(mult:HI (zero_extend:HI (match_operand:QI 1 "nonimmediate_operand" "%0"))
(zero_extend:HI (match_operand:QI 2 "nonimmediate_operand" "qm"))))]
""
"mul%B0 %2")
(define_insn "mulqihi3"
[
(set (match_operand:HI 0 "general_operand" "=a")
(mult:HI (sign_extend:HI (match_operand:QI 1 "nonimmediate_operand" "%0"))
(sign_extend:HI (match_operand:QI 2 "nonimmediate_operand" "qm"))))]
""
"imul%B0 %2")
(define_insn "umulsidi3"
[
(set (match_operand:DI 0 "register_operand" "=A")
(mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "%0"))
(zero_extend:DI (match_operand:SI 2 "nonimmediate_operand" "rm"))))]
""
"mul%L0 %2")
(define_insn "mulsidi3"
[
(set (match_operand:DI 0 "register_operand" "=A")
(mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "%0"))
(sign_extend:DI (match_operand:SI 2 "nonimmediate_operand" "rm"))))]
""
"imul%L0 %2")
;; The patterns that match these are at the end of this file.
(define_expand "mulxf3"
...
...
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