Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
4877a06f
Commit
4877a06f
authored
27 years ago
by
Jason Merrill
Browse files
Options
Downloads
Patches
Plain Diff
dwarf2 EH support
From-SVN: r15257
parent
9dfc6eba
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gcc/frame.h
+35
-0
35 additions, 0 deletions
gcc/frame.h
with
35 additions
and
0 deletions
gcc/frame.h
0 → 100644
+
35
−
0
View file @
4877a06f
/* Copyright (C) 1997 Free Software Foundation, Inc.
This file is part of GNU CC. */
typedef
struct
frame_state
{
void
*
cfa
;
void
*
eh_ptr
;
long
cfa_offset
;
long
args_size
;
long
reg_or_offset
[
FIRST_PSEUDO_REGISTER
+
1
];
unsigned
short
cfa_reg
;
unsigned
short
retaddr_column
;
char
saved
[
FIRST_PSEUDO_REGISTER
+
1
];
}
frame_state
;
/* Values for 'saved' above. */
#define REG_UNSAVED 0
#define REG_SAVED_OFFSET 1
#define REG_SAVED_REG 2
/* Called either from crtbegin.o or a static constructor to register the
unwind info for an object or translation unit, respectively. */
extern
void
__register_frame
(
void
*
);
/* Called from crtend.o to deregister the unwind info for an object. */
extern
void
__deregister_frame
(
void
*
);
/* Called from __throw to find the registers to restore for a given
PC_TARGET. The caller should allocate a local variable of `struct
frame_state' (declared in frame.h) and pass its address to STATE_IN.
Returns NULL on failure, otherwise returns STATE_IN. */
extern
struct
frame_state
*
__frame_state_for
(
void
*
,
struct
frame_state
*
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment