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
eab4abeb
Commit
eab4abeb
authored
Feb 04, 2001
by
Nick Clifton
Committed by
Nick Clifton
Feb 04, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add sopme more names of ARM cores.
From-SVN: r39442
parent
7ce2fcb9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+12
-6
No files found.
gcc/ChangeLog
View file @
eab4abeb
2001-02-04 Nick Clifton <nickc@redhat.com>
* config/arm/arm.c (all_cores): Add 710T, 720T, 740T, 940T, 9e,
StrongARM1110, 10TDMI, and 1020T.
2001-02-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* mips.h (MULTILIB_ISA_DEFAULT): Don't use #elif.
...
...
gcc/config/arm/arm.c
View file @
eab4abeb
...
...
@@ -267,7 +267,10 @@ static struct processors all_cores[] =
{
"arm700"
,
FL_CO_PROC
|
FL_MODE26
|
FL_MODE32
},
{
"arm700i"
,
FL_CO_PROC
|
FL_MODE26
|
FL_MODE32
},
{
"arm710"
,
FL_MODE26
|
FL_MODE32
},
{
"arm710t"
,
FL_MODE26
|
FL_MODE32
|
FL_THUMB
},
{
"arm720"
,
FL_MODE26
|
FL_MODE32
},
{
"arm720t"
,
FL_MODE26
|
FL_MODE32
|
FL_THUMB
},
{
"arm740t"
,
FL_MODE26
|
FL_MODE32
|
FL_THUMB
},
{
"arm710c"
,
FL_MODE26
|
FL_MODE32
},
{
"arm7100"
,
FL_MODE26
|
FL_MODE32
},
{
"arm7500"
,
FL_MODE26
|
FL_MODE32
},
...
...
@@ -279,11 +282,16 @@ static struct processors all_cores[] =
{
"arm9"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
},
{
"arm920"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_LDSCHED
},
{
"arm920t"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
},
{
"arm940t"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
},
{
"arm9tdmi"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
},
{
"arm9e"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_LDSCHED
},
{
"strongarm"
,
FL_MODE26
|
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_LDSCHED
|
FL_STRONG
},
{
"strongarm110"
,
FL_MODE26
|
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_LDSCHED
|
FL_STRONG
},
{
"strongarm1100"
,
FL_MODE26
|
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_LDSCHED
|
FL_STRONG
},
{
"xscale"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
|
FL_STRONG
|
FL_XSCALE
|
FL_ARCH5
|
FL_ARCH5E
},
{
"strongarm1110"
,
FL_MODE26
|
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_LDSCHED
|
FL_STRONG
},
{
"arm10tdmi"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
|
FL_ARCH5
},
{
"arm1020t"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
|
FL_ARCH5
},
{
"xscale"
,
FL_MODE32
|
FL_FAST_MULT
|
FL_ARCH4
|
FL_THUMB
|
FL_LDSCHED
|
FL_STRONG
|
FL_ARCH5
|
FL_ARCH5E
|
FL_XSCALE
},
{
NULL
,
0
}
};
...
...
@@ -2235,8 +2243,10 @@ legitimize_pic_address (orig, mode, reg)
generated insns at the start of the function); false if called
by an exception receiver that needs the PIC register reloaded
(in which case the insns are just dumped at the current location). */
void
arm_finalize_pic
(
int
prologue
)
arm_finalize_pic
(
prologue
)
int
prologue
;
{
#ifndef AOF_ASSEMBLER
rtx
l1
,
pic_tmp
,
pic_tmp2
,
seq
,
pic_rtx
;
...
...
@@ -8817,16 +8827,12 @@ arm_init_builtins ()
/* Initialize arm V5 builtins. */
if
(
arm_arch5
)
{
def_builtin
(
"__builtin_clz"
,
int_ftype_int
,
ARM_BUILTIN_CLZ
);
}
/* Initialize arm V5E builtins. */
if
(
arm_arch5e
)
{
def_builtin
(
"__builtin_prefetch"
,
void_ftype_pchar
,
ARM_BUILTIN_PREFETCH
);
}
}
/* Expand an expression EXP that calls a built-in function,
...
...
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