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
ff73fb53
Commit
ff73fb53
authored
Jun 25, 1998
by
Nick Clifton
Committed by
Nick Clifton
Jun 25, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ARG_POINTER_REGNUM to REG_ALLOC_ORDER
From-SVN: r20713
parent
79c11e3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.h
+7
-5
No files found.
gcc/ChangeLog
View file @
ff73fb53
Thu Jun 25 09:54:55 1998 Nick Clifton <nickc@cygnus.com>
* config/arm/arm.h (REG_ALLOC_ORDER): Add ARG_POINTER_REGNUM,
noticed by grahams@rcp.co.uk.
Thu Jun 25 11:12:29 1998 Dave Brolley <brolley@cygnus.com>
* gcc.c (default_compilers): Use new | syntax to eliminate
...
...
gcc/config/arm/arm.h
View file @
ff73fb53
...
...
@@ -759,12 +759,12 @@ extern int arm_arch4;
least likely to contain a function parameter; in addition results are
returned in r0.
*/
#define REG_ALLOC_ORDER \
#define REG_ALLOC_ORDER
\
{ \
3, 2, 1, 0, 12, 14, 4, 5,
\
6, 7, 8, 10, 9, 11, 13, 15,
\
3, 2, 1, 0, 12, 14, 4, 5,
\
6, 7, 8, 10, 9, 11, 13, 15,
\
16, 17, 18, 19, 20, 21, 22, 23, \
24, 25 \
24, 25
, 26
\
}
/* Register and constant classes. */
...
...
@@ -1408,7 +1408,9 @@ do \
&& INTVAL (op) <= 31) \
goto LABEL; \
} \
range = (MODE) == HImode ? (arm_arch4 ? 256 : 4095) : 4096; \
/* NASTY: Since this limits the addressing of unsigned byte loads */
\
range = ((MODE) == HImode || (MODE) == QImode) \
? (arm_arch4 ? 256 : 4095) : 4096; \
if (code == CONST_INT && INTVAL (INDEX) < range \
&& INTVAL (INDEX) > -range) \
goto LABEL; \
...
...
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