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
4a1d48f6
Commit
4a1d48f6
authored
Feb 07, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
Feb 07, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document MD_INIT_BUILTINS, MD_EXPAND_BUILTIN
From-SVN: r39516
parent
bcd7edfe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
gcc/ChangeLog
+2
-0
gcc/tm.texi
+29
-0
No files found.
gcc/ChangeLog
View file @
4a1d48f6
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
* builtins.c (expand_builtin_setjmp_receiver): Emit an ASM_INPUT as
* builtins.c (expand_builtin_setjmp_receiver): Emit an ASM_INPUT as
a scheduling barrier at the end.
a scheduling barrier at the end.
* tm.texi (MD_INIT_BUILTINS, MD_EXPAND_BUILTIN): Document.
2001-02-07 Alexandre Oliva <aoliva@redhat.com>
2001-02-07 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.md (reload_outsf): Removed.
* config/sh/sh.md (reload_outsf): Removed.
...
...
gcc/tm.texi
View file @
4a1d48f6
...
@@ -8377,4 +8377,33 @@ converting code to conditional execution in the basic blocks
...
@@ -8377,4 +8377,33 @@ converting code to conditional execution in the basic blocks
A
C
expression
to
cancel
any
machine
dependent
modifications
in
A
C
expression
to
cancel
any
machine
dependent
modifications
in
converting
code
to
conditional
execution
in
the
basic
blocks
converting
code
to
conditional
execution
in
the
basic
blocks
@code{
TEST_BB
}
,
@code{
THEN_BB
}
,
@code{
ELSE_BB
}
,
and
@code{
JOIN_BB
}
.
@code{
TEST_BB
}
,
@code{
THEN_BB
}
,
@code{
ELSE_BB
}
,
and
@code{
JOIN_BB
}
.
@findex
MD_INIT_BUILTINS
@item
MD_INIT_BUILTINS
Define
this
macro
if
you
have
any
machine
-
specific
builtin
functions
that
need
to
be
defined
.
It
should
be
a
C
expression
that
performs
the
necessary
setup
.
Machine
specific
builtins
can
be
useful
to
expand
special
machine
instructions
that
would
otherwise
not
normally
be
generated
because
they
have
no
equivalent
in
the
source
language
(
for
example
,
SIMD
vector
instructions
or
prefetch
instructions
).
To
create
a
builtin
function
,
call
the
function
@code{
builtin_function
}
which
is
defined
by
the
language
frontend
.
You
can
use
any
type
nodes
set
up
by
@code{
build_common_tree_nodes
}
and
@code{
build_common_tree_nodes_2
};
only
language
frontends
that
use
these
two
functions
will
use
@samp{
MD_INIT_BUILTINS
}
.
@findex
MD_EXPAND_BUILTIN
@item
MD_EXPAND_BUILTIN
(
@var{
exp
}
,
@var{
target
}
,
@var{
subtarget
}
,
@var{
mode
}
,
@var{
ignore
}
)
Expand
a
call
to
a
machine
specific
builtin
that
was
set
up
by
@samp{
MD_INIT_BUILTINS
}
.
@var{
exp
}
is
the
expression
for
the
function
call
;
the
result
should
go
to
@var{
target
}
if
that
is
convenient
,
and
have
mode
@var{
mode
}
if
that
is
convenient
.
@var{
subtarget
}
may
be
used
as
the
target
for
computing
one
of
@var{
exp
}'
s
operands
.
@var{
ignore
}
is
nonzero
if
the
value
is
to
be
ignored
.
This
macro
should
return
the
result
of
the
call
to
the
builtin
.
@end
table
@end
table
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