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
d327883a
Commit
d327883a
authored
May 31, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(decrement_and_branch_until_zero):
Reverse all conditions in reload cases. From-SVN: r4611
parent
a2d72452
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gcc/config/pa/pa.md
+5
-5
No files found.
gcc/config/pa/pa.md
View file @
d327883a
...
...
@@ -2908,15 +2908,15 @@
output_asm_insn (
\"
ldw %0,%4
\;
ldo %1(%4),%4
\;
stw %4,%0
\"
, operands);
/
* Short branch. Normal handling of nullification. *
/
if (get_attr_length (insn) == 4)
return
\"
comb,%
B
2,n 0,%4,%3
\"
;
return
\"
comb,%
S
2,n 0,%4,%3
\"
;
/
*
Long Conditional branch forward with delay slot nullified if
branch is taken.
*
/
else if (get_attr_length (insn) == 5)
return
\"
comclr,%
S
2 0,%4,0
\;
bl,n %3,0
\"
;
return
\"
comclr,%
B
2 0,%4,0
\;
bl,n %3,0
\"
;
else
/
*
Long Conditional branch backwards with delay slot nullified
if branch is not taken.
*
/
return
\"
comb,%
S
2 0,%4,.+16
\;
nop
\;
bl %3,0
\"
;
return
\"
comb,%
B
2 0,%4,.+16
\;
nop
\;
bl %3,0
\"
;
}
}
else
...
...
@@ -2935,10 +2935,10 @@
output_asm_insn (
\"
ldw %0,%4
\;
ldo %1(%4),%4
\;
stw %4,%0
\"
, operands);
/
* Short form. *
/
if (get_attr_length (insn) == 4)
return
\"
comb,%
B
2 0,%4,%3%#
\"
;
return
\"
comb,%
S
2 0,%4,%3%#
\"
;
/
* Long form. *
/
else
return
\"
comclr,%
S
2 0,%4,0
\;
bl%
*
%3,0
\"
;
return
\"
comclr,%
B
2 0,%4,0
\;
bl%
*
%3,0
\"
;
}
}
}"
...
...
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