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
e622cd25
Commit
e622cd25
authored
Feb 12, 1992
by
Chris Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r314
parent
df4f282d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
gcc/config/convex/convex.h
+8
-7
No files found.
gcc/config/convex/convex.h
View file @
e622cd25
...
@@ -165,10 +165,6 @@ extern char *output_call ();
...
@@ -165,10 +165,6 @@ extern char *output_call ();
#define DOUBLE_TYPE_SIZE 64
#define DOUBLE_TYPE_SIZE 64
#define LONG_DOUBLE_TYPE_SIZE 64
#define LONG_DOUBLE_TYPE_SIZE 64
/* The real.h version of this macro inexplicably checks BITS_PER_WORD */
#define REAL_VALUE_TRUNCATE(mode, x) ((mode) == SFmode ? (float) (x) : (x))
/* Declare the standard types used by builtins to match convex stddef.h --
/* Declare the standard types used by builtins to match convex stddef.h --
with int rather than long. */
with int rather than long. */
...
@@ -200,9 +196,9 @@ extern char *output_call ();
...
@@ -200,9 +196,9 @@ extern char *output_call ();
/* Return number of consecutive hard regs needed starting at reg REGNO
/* Return number of consecutive hard regs needed starting at reg REGNO
to hold something of mode MODE.
to hold something of mode MODE.
This is ordinarily the length in words of a value of mode MODE
This is ordinarily the length in words of a value of mode MODE
but can be less for certain modes in special long registers.
but can be less for certain modes in special long registers.
*/
On Convex, all values fit in one register. */
#define HARD_REGNO_NREGS(REGNO, MODE) \
#define HARD_REGNO_NREGS(REGNO, MODE) 1
((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.
On Convex, S registers can hold any type, A registers any nonfloat. */
On Convex, S registers can hold any type, A registers any nonfloat. */
...
@@ -789,6 +785,11 @@ enum reg_class {
...
@@ -789,6 +785,11 @@ enum reg_class {
#define ADDRESS_COST(RTX) (GET_CODE (RTX) == MEM ? 3 : 1)
#define ADDRESS_COST(RTX) (GET_CODE (RTX) == MEM ? 3 : 1)
/* Specify the cost of a branch insn; roughly the number of extra insns that
should be added to avoid a branch. */
#define BRANCH_COST 0
/* Check a `double' value for validity for a particular machine mode. */
/* Check a `double' value for validity for a particular machine mode. */
#define CHECK_FLOAT_VALUE(mode, d) \
#define CHECK_FLOAT_VALUE(mode, d) \
...
...
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