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
34b650b3
Commit
34b650b3
authored
Apr 27, 1992
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r844
parent
31d04616
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
35 deletions
+26
-35
gcc/config/mips/mips.c
+0
-0
gcc/config/mips/mips.h
+26
-35
gcc/config/mips/mips.md
+0
-0
No files found.
gcc/config/mips/mips.c
View file @
34b650b3
This diff is collapsed.
Click to expand it.
gcc/config/mips/mips.h
View file @
34b650b3
...
...
@@ -49,7 +49,8 @@ enum cmp_type {
enum
delay_type
{
DELAY_NONE
,
/* no delay slot */
DELAY_LOAD
,
/* load from memory delay */
DELAY_HILO
/* move from/to hi/lo registers */
DELAY_HILO
,
/* move from/to hi/lo registers */
DELAY_FCMP
/* delay after doing c.<xx>.{d,s} */
};
/* Which processor to schedule for. Since there is no difference between
...
...
@@ -120,12 +121,14 @@ extern unsigned long compute_frame_size ();
extern
void
expand_block_move
();
extern
int
equality_op
();
extern
int
fcmp_op
();
extern
int
fpsw_register_operand
();
extern
struct
rtx_def
*
function_arg
();
extern
void
function_arg_advance
();
extern
int
function_arg_partial_nregs
();
extern
void
function_epilogue
();
extern
void
function_prologue
();
extern
void
gen_conditional_branch
();
extern
struct
rtx_def
*
gen_int_relational
();
extern
void
init_cumulative_args
();
extern
int
large_int
();
extern
int
md_register_operand
();
...
...
@@ -145,6 +148,7 @@ extern void mips_output_filename ();
extern
void
mips_output_lineno
();
extern
char
*
output_block_move
();
extern
void
override_options
();
extern
int
pc_or_label_operand
();
extern
void
print_operand_address
();
extern
void
print_operand
();
extern
void
print_options
();
...
...
@@ -416,7 +420,7 @@ while (0)
/* Print subsidiary information on the compiler version in use. */
#define MIPS_VERSION "[AL 1.1, MM 1
5
]"
#define MIPS_VERSION "[AL 1.1, MM 1
6
]"
#ifndef MACHINE_TYPE
#define MACHINE_TYPE "BSD Mips"
...
...
@@ -646,7 +650,7 @@ do { \
#define MASK_DEBUG 0x40000000
/* Eliminate version # in .s file */
#define MASK_DEBUG_A 0x20000000
/* don't allow <label>($reg) addrs */
#define MASK_DEBUG_B 0x10000000
/* GO_IF_LEGITIMATE_ADDRESS debug */
#define MASK_DEBUG_C 0x08000000
/*
suppress normal divmod
patterns */
#define MASK_DEBUG_C 0x08000000
/*
allow new seq, sne, etc.
patterns */
#define MASK_DEBUG_D 0x04000000
/* don't do define_split's */
#define MASK_DEBUG_E 0x02000000
/* function_arg debug */
#define MASK_DEBUG_F 0x01000000
/* don't try to suppress load nop's */
...
...
@@ -1280,8 +1284,8 @@ extern enum reg_class mips_regno_to_class[];
'f' Floating point registers
'h' Hi register
'l' Lo register
'
s' Status
registers
'
x' Multiply/divide registers
*/
'
x' Multiply/divide
registers
'
z' FP Status register
*/
extern
enum
reg_class
mips_char_to_class
[];
...
...
@@ -2547,47 +2551,34 @@ do \
} \
while (0)
/* A list of names to be used for additional modes for condition
code values in registers (*note Jump Patterns::.). These names
a
re added to `enum machine_mode' and all have class `MODE_CC'.
By convention, they should start
with `CC' and end with `mode'.
/* A list of names to be used for additional modes for condition
code
values in registers. These names are added to `enum machine_mode'
a
nd all have class `MODE_CC'. By convention, they should start
with `CC' and end with `mode'.
You should only define this macro if your machine does not use
`cc0' and only if additional modes are required.
On the MIPS, we use CC_FPmode for all floating point, CC_EQmode for
integer equality/inequality comparisons, CC_0mode for comparisons
against 0, and CCmode for other integer comparisons. */
On the MIPS, we use CC_FPmode for all floating point except for not
equal, CC_REV_FPmode for not equal (to reverse the sense of the
jump), CC_EQmode for integer equality/inequality comparisons,
CC_0mode for comparisons against 0, and CCmode for other integer
comparisons. */
#define EXTRA_CC_MODES CC_EQmode, CC_FPmode, CC_0mode
#define EXTRA_CC_MODES CC_EQmode, CC_FPmode, CC_0mode
, CC_REV_FPmode
/* A list of C strings giving the names for the modes listed in
`EXTRA_CC_MODES'. For example, the Sparc defines this macro and
`EXTRA_CC_MODES' as
`EXTRA_CC_MODES'. */
#define EXTRA_CC_MODES CC_NOOVmode, CCFPmode
#define EXTRA_CC_NAMES "CC_NOOV", "CCFP"
This macro is not required if `EXTRA_CC_MODES' is not defined. */
#define EXTRA_CC_NAMES "CC_EQ", "CC_FP", "CC_0"
#define EXTRA_CC_NAMES "CC_EQ", "CC_FP", "CC_0", "CC_REV_FP"
/* Returns a mode from class `MODE_CC' to be used when comparison
operation code OP is applied to rtx X. For example, on the
Sparc, `SELECT_CC_MODE' is defined as (see *note Jump
Patterns::. for a description of the reason for this definition)
#define SELECT_CC_MODE(OP,X) \
(GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT ? CCFPmode \
: (GET_CODE (X) == PLUS || GET_CODE (X) == MINUS \
|| GET_CODE (X) == NEG) \
? CC_NOOVmode : CCmode)
This macro is not required if `EXTRA_CC_MODES' is not defined. */
operation code OP is applied to rtx X. */
#define SELECT_CC_MODE (OP, X) \
(GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT ? CC_FPmode : \
(OP == EQ || OP == NE) ? CC_EQmode : CCmode)
#define SELECT_CC_MODE(OP, X) \
(GET_MODE_CLASS (GET_MODE (X)) != MODE_FLOAT \
? SImode \
: ((OP == NE) ? CC_REV_FPmode : CC_FPmode))
/* Control the assembler format that we output. */
...
...
gcc/config/mips/mips.md
View file @
34b650b3
This diff is collapsed.
Click to expand it.
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