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
09a1d028
Commit
09a1d028
authored
May 20, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1029
parent
53a66787
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
gcc/config/pa/pa.h
+11
-4
No files found.
gcc/config/pa/pa.h
View file @
09a1d028
...
...
@@ -749,7 +749,7 @@ HP9000/800 immediate field sizes:
/* Arguments larger than eight bytes are passed by invisible reference */
#define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \
((TYPE)
? int_size_in_bytes (TYPE) > 8 : GET_MODE_SIZE (MOD
E) > 8)
((TYPE)
&& int_size_in_bytes (TYP
E) > 8)
extern
struct
rtx_def
*
hppa_compare_op0
,
*
hppa_compare_op1
;
extern
enum
cmp_type
hppa_branch_type
;
...
...
@@ -1317,8 +1317,12 @@ while (0)
/* Compute extra cost of moving data between one register class
and another. */
#define REGISTER_MOVE_COST(CLASS1, CLASS2) \
(((CLASS1 == FP_REGS && CLASS2 == GENERAL_REGS) \
|| (CLASS1 == GENERAL_REGS && CLASS2 == FP_REGS)) ? 6 : 2)
((((CLASS1 == FP_REGS || CLASS1 == SNAKE_FP_REGS \
|| CLASS1 == HI_SNAKE_FP_REGS) \
&& (CLASS2 == R1_REGS | CLASS2 == GENERAL_REGS)) \
|| ((CLASS2 == R1_REGS | CLASS1 == GENERAL_REGS) \
&& (CLASS2 == FP_REGS || CLASS2 == SNAKE_FP_REGS \
|| CLASS2 == HI_SNAKE_FP_REGS))) ? 6 : 2)
/* Provide the costs of a rtl expression. This is in the body of a
switch on CODE. The purpose for the cost of MULT is to encourage
...
...
@@ -1634,13 +1638,16 @@ do { fprintf (FILE, "\t.SPACE $PRIVATE$\n\
output_operand (XEXP (addr, 0), 0); \
fputs (")", FILE); \
break; \
case CONST_INT: \
fprintf (FILE, "%d(0,0)", INTVAL (addr)); \
break; \
default: \
output_addr_const (FILE, addr); \
}}
#define SMALL_INT(OP) INT_14_BITS (OP)
/* Define functions in
hp
pa.c and used in insn-output.c. */
/* Define functions in pa.c and used in insn-output.c. */
extern
char
*
output_move_double
();
extern
char
*
output_fp_move_double
();
...
...
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