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
df031c43
Commit
df031c43
authored
Apr 18, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r774
parent
44ace968
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
11 deletions
+22
-11
gcc/config/rs6000/rs6000.md
+22
-11
No files found.
gcc/config/rs6000/rs6000.md
View file @
df031c43
...
...
@@ -1061,17 +1061,6 @@
int start = INTVAL (operands
[
3
]
) & 31;
int size = INTVAL (operands
[
2
]
) & 31;
if ((start
<
16
&&
start
+
size
<=
16
)
||
start
>
= 16)
{
operands
[
3
]
= gen_rtx (CONST_INT, VOIDmode,
((1 << (16 - (start & 15)))
-
(1 << (16 - (start & 15) - size))));
if (start < 16)
return
\"
andiu. %4,%1,%3
\"
;
else
return
\"
andil. %4,%1,%3
\"
;
}
if (start + size >= 32)
operands
[
3
]
= const0_rtx;
else
...
...
@@ -1092,6 +1081,17 @@
int start = INTVAL (operands
[
3
]
) & 31;
int size = INTVAL (operands
[
2
]
) & 31;
if ((start
<
16
&&
start
+
size
<=
16
)
||
start
>
= 16)
{
operands
[
3
]
= gen_rtx (CONST_INT, VOIDmode,
((1 << (16 - (start & 15)))
-
(1 << (16 - (start & 15) - size))));
if (start < 16)
return
\"
andiu. %4,%1,%3
\"
;
else
return
\"
andil. %4,%1,%3
\"
;
}
if (start + size >= 32)
operands
[
3
]
= const0_rtx;
else
...
...
@@ -1114,6 +1114,17 @@
int start = INTVAL (operands
[
3
]
) & 31;
int size = INTVAL (operands
[
2
]
) & 31;
if ((start
<
16
&&
start
+
size
<=
16
)
||
start
>
= 16)
{
operands
[
3
]
= gen_rtx (CONST_INT, VOIDmode,
((1 << (16 - (start & 15)))
-
(1 << (16 - (start & 15) - size))));
if (start < 16)
return
\"
andiu. %0,%1,%3
\"
;
else
return
\"
andil. %0,%1,%3
\"
;
}
if (start + size >= 32)
operands
[
3
]
= const0_rtx;
else
...
...
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