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
9704efe6
Commit
9704efe6
authored
Jul 26, 1996
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
install EH code
From-SVN: r12568
parent
39950dff
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
gcc/config/rs6000/rs6000.h
+7
-0
gcc/config/sparc/sparc.h
+3
-1
gcc/config/sparc/sparc.md
+2
-1
gcc/config/vax/vax.h
+3
-1
No files found.
gcc/config/rs6000/rs6000.h
View file @
9704efe6
...
@@ -2310,6 +2310,13 @@ extern int rs6000_trunc_used;
...
@@ -2310,6 +2310,13 @@ extern int rs6000_trunc_used;
#define READONLY_DATA_SECTION read_only_data_section
#define READONLY_DATA_SECTION read_only_data_section
/* Define the name of the section to use for the exception tables.
TODO: test and see if we can use read_only_data_section, if so,
remove this. */
#define EXCEPTION_SECTION data_section
/* If we are referencing a function that is static or is known to be
/* If we are referencing a function that is static or is known to be
in this file, make the SYMBOL_REF special. We can use this to indicate
in this file, make the SYMBOL_REF special. We can use this to indicate
that we can branch to this function without emitting a no-op after the
that we can branch to this function without emitting a no-op after the
...
...
gcc/config/sparc/sparc.h
View file @
9704efe6
...
@@ -895,7 +895,7 @@ extern int sparc_mode_class[];
...
@@ -895,7 +895,7 @@ extern int sparc_mode_class[];
#define FRAME_POINTER_REGNUM 30
#define FRAME_POINTER_REGNUM 30
#if 0
#if 0
/* Register that is used for the return address. */
/* Register that is used for the return address
for the flat model
. */
#define RETURN_ADDR_REGNUM 15
#define RETURN_ADDR_REGNUM 15
#endif
#endif
...
@@ -2168,6 +2168,8 @@ extern struct rtx_def *sparc_builtin_saveregs ();
...
@@ -2168,6 +2168,8 @@ extern struct rtx_def *sparc_builtin_saveregs ();
? gen_rtx (REG, Pmode, 31) \
? gen_rtx (REG, Pmode, 31) \
: gen_rtx (MEM, Pmode, \
: gen_rtx (MEM, Pmode, \
memory_address (Pmode, plus_constant (frame, 15 * UNITS_PER_WORD))))
memory_address (Pmode, plus_constant (frame, 15 * UNITS_PER_WORD))))
#define DOESNT_NEED_UNWINDER (! TARGET_FLAT)
/* Addressing modes, and classification of registers for them. */
/* Addressing modes, and classification of registers for them. */
...
...
gcc/config/sparc/sparc.md
View file @
9704efe6
...
@@ -5392,7 +5392,8 @@
...
@@ -5392,7 +5392,8 @@
[(set_attr "type" "multi")])
[(set_attr "type" "multi")])
(define_insn "return"
(define_insn "return"
[(return)]
[(return)
(use (reg:SI 31))]
"! TARGET_EPILOGUE"
"! TARGET_EPILOGUE"
"* return output_return (operands);"
"* return output_return (operands);"
[(set_attr "type" "multi")])
[(set_attr "type" "multi")])
...
...
gcc/config/vax/vax.h
View file @
9704efe6
...
@@ -566,7 +566,9 @@ gen_rtx (PLUS, Pmode, frame, gen_rtx (CONST_INT, VOIDmode, 12))
...
@@ -566,7 +566,9 @@ gen_rtx (PLUS, Pmode, frame, gen_rtx (CONST_INT, VOIDmode, 12))
can ignore COUNT. */
can ignore COUNT. */
#define RETURN_ADDR_RTX(COUNT, FRAME) \
#define RETURN_ADDR_RTX(COUNT, FRAME) \
gen_rtx (MEM, Pmode, plus_constant (FRAME, RETURN_ADDRESS_OFFSET))
((COUNT == 0) \
? gen_rtx (MEM, Pmode, plus_constant (FRAME, RETURN_ADDRESS_OFFSET)) \
: (rtx) 0)
/* Addressing modes, and classification of registers for them. */
/* Addressing modes, and classification of registers for them. */
...
...
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