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
9894a291
Commit
9894a291
authored
Apr 09, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(FINAL_PRESCAN_INSN): Define.
From-SVN: r7012
parent
74f171be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
gcc/config/rs6000/rs6000.h
+10
-2
No files found.
gcc/config/rs6000/rs6000.h
View file @
9894a291
...
@@ -1282,9 +1282,17 @@ struct rs6000_args {int words, fregno, nargs_prototype; };
...
@@ -1282,9 +1282,17 @@ struct rs6000_args {int words, fregno, nargs_prototype; };
}
}
/* Define this if some processing needs to be done immediately before
/* Define this if some processing needs to be done immediately before
emitting code for an insn.
*/
emitting code for an insn.
/* #define FINAL_PRESCAN_INSN(INSN,OPERANDS,NOPERANDS) */
For the RS/6000, we check if there is a dead PRE_INC value. If so,
replace it with a normal displacement. This is done in case the
output of the load insn duplicates the register being incremented.
That produces an insn that isn't valid for PowerPC. */
#define FINAL_PRESCAN_INSN(INSN,OPERANDS,NOPERANDS) \
if (find_reg_note (INSN, REG_INC, NULL_RTX) \
&& find_reg_note (INSN, REG_DEAD, NULL_RTX)) \
rs6000_convert_preincs (PATTERN (INSN), INSN);
/* Specify the machine mode that this machine uses
/* Specify the machine mode that this machine uses
for the index in the tablejump instruction. */
for the index in the tablejump instruction. */
...
...
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