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
5034b7bd
Commit
5034b7bd
authored
Jun 08, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(override_options): Add vr4100 and vr4300 support.
From-SVN: r12248
parent
03b28f88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
gcc/config/mips/mips.c
+23
-0
No files found.
gcc/config/mips/mips.c
View file @
5034b7bd
...
...
@@ -3290,7 +3290,15 @@ override_options ()
else
{
char
*
p
=
mips_cpu_string
;
int
seen_v
=
FALSE
;
/* We need to cope with the various "vr" prefixes for the NEC 4300
and 4100 processors. */
if
(
*
p
==
'v'
||
*
p
==
'V'
)
{
seen_v
=
TRUE
;
p
++
;
}
if
(
*
p
==
'r'
||
*
p
==
'R'
)
p
++
;
...
...
@@ -3313,6 +3321,16 @@ override_options ()
case
'4'
:
if
(
!
strcmp
(
p
,
"4000"
)
||
!
strcmp
(
p
,
"4k"
)
||
!
strcmp
(
p
,
"4K"
))
mips_cpu
=
PROCESSOR_R4000
;
/* The vr4100 is a non-FP ISA III processor with some extra
instructions. */
else
if
(
!
strcmp
(
p
,
"4100"
))
{
mips_cpu
=
PROCESSOR_R4100
;
target_flags
|=
MASK_SOFT_FLOAT
;
}
/* The vr4300 is a standard ISA III processor, but with a different
pipeline. */
else
if
(
!
strcmp
(
p
,
"4300"
))
mips_cpu
=
PROCESSOR_R4300
;
/* The r4400 is exactly the same as the r4000 from the compiler's
viewpoint. */
else
if
(
!
strcmp
(
p
,
"4400"
))
...
...
@@ -3339,6 +3357,9 @@ override_options ()
break
;
}
if
(
seen_v
&&
mips_cpu
!=
PROCESSOR_R4300
&&
mips_cpu
!=
PROCESSOR_R4100
)
mips_cpu
=
PROCESSOR_DEFAULT
;
if
(
mips_cpu
==
PROCESSOR_DEFAULT
)
{
error
(
"bad value (%s) for -mcpu= switch"
,
mips_cpu_string
);
...
...
@@ -3349,6 +3370,8 @@ override_options ()
if
((
mips_cpu
==
PROCESSOR_R3000
&&
mips_isa
>
1
)
||
(
mips_cpu
==
PROCESSOR_R6000
&&
mips_isa
>
2
)
||
((
mips_cpu
==
PROCESSOR_R4000
||
mips_cpu
==
PROCESSOR_R4100
||
mips_cpu
==
PROCESSOR_R4300
||
mips_cpu
==
PROCESSOR_R4600
||
mips_cpu
==
PROCESSOR_R4650
)
&&
mips_isa
>
3
))
...
...
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