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
c30ddbc9
Commit
c30ddbc9
authored
Feb 16, 1998
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation for builtin_setjmp related patterns.
From-SVN: r18029
parent
ecf0ad27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
4 deletions
+25
-4
gcc/md.texi
+25
-4
No files found.
gcc/md.texi
View file @
c30ddbc9
...
...
@@ -2462,8 +2462,10 @@ This pattern, if defined, contains code needed at the target of a
nonlocal
goto
after
the
code
already
generated
by
GNU
CC
.
You
will
not
normally
need
to
define
this
pattern
.
A
typical
reason
why
you
might
need
this
pattern
is
if
some
value
,
such
as
a
pointer
to
a
global
table
,
must
be
restored
when
the
frame
pointer
is
restored
.
There
are
no
arguments
.
must
be
restored
when
the
frame
pointer
is
restored
.
Note
that
a
nonlocal
goto
only
ocurrs
within
a
unit
-
of
-
translation
,
so
a
global
table
pointer
that
is
shared
by
all
functions
of
a
given
module
need
not
be
restored
.
There
are
no
arguments
.
@cindex
@code{
exception_receiver
}
instruction
pattern
@item
@samp{
exception_receiver
}
...
...
@@ -2474,14 +2476,33 @@ might need this pattern is if some value, such as a pointer to a global
table
,
must
be
restored
after
control
flow
is
branched
to
the
handler
of
an
exception
.
There
are
no
arguments
.
@cindex
@code{
builtin_setjmp_setup
}
instruction
pattern
@item
@samp{
builtin_setjmp_setup
}
This
pattern
,
if
defined
,
contains
additional
code
needed
to
initialize
the
@code{
jmp_buf
}
.
You
will
not
normally
need
to
define
this
pattern
.
A
typical
reason
why
you
might
need
this
pattern
is
if
some
value
,
such
as
a
pointer
to
a
global
table
,
must
be
restored
.
Though
it
is
preferred
that
the
pointer
value
be
recalculated
if
possible
(
given
the
address
of
a
label
for
instance
).
The
single
argument
is
a
pointer
to
the
@code{
jmp_buf
}
.
Note
that
the
buffer
is
five
words
long
and
that
the
first
three
are
normally
used
by
the
generic
mechanism
.
@cindex
@code{
builtin_setjmp_receiver
}
instruction
pattern
@item
@samp{
builtin_setjmp_receiver
}
This
pattern
,
if
defined
,
contains
code
needed
at
the
site
of
an
builtin
setjmp
that
isn
'
t
needed
at
the
site
of
a
nonlocal
goto
.
You
will
not
normally
need
to
define
this
pattern
.
A
typical
reason
why
you
might
need
this
pattern
is
if
some
value
,
such
as
a
pointer
to
a
global
table
,
must
be
restored
.
This
pattern
is
called
immediate
after
the
call
to
@code{
__dummy
}
has
been
emitted
.
There
are
no
arguments
.
table
,
must
be
restored
.
It
takes
one
argument
,
which
is
the
label
to
which
builtin_longjmp
transfered
control
;
this
pattern
may
be
emitted
at
a
small
offset
from
that
label
.
@cindex
@code{
builtin_longjmp
}
instruction
pattern
@item
@samp{
builtin_longjmp
}
This
pattern
,
if
defined
,
performs
the
entire
action
of
the
longjmp
.
You
will
not
normally
need
to
define
this
pattern
unless
you
also
define
@code{
builtin_setjmp_setup
}
.
The
single
argument
is
a
pointer
to
the
@code{
jmp_buf
}
.
@end
table
@node
Pattern
Ordering
...
...
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