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
693e265f
Commit
693e265f
authored
Apr 22, 1998
by
Michael Meissner
Committed by
Michael Meissner
Apr 22, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add match_insn2; Fix prototype in loop.c
From-SVN: r19377
parent
43ee49e8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
4 deletions
+39
-4
gcc/ChangeLog
+9
-1
gcc/genrecog.c
+1
-0
gcc/loop.c
+3
-2
gcc/md.texi
+19
-0
gcc/rtl.def
+7
-1
No files found.
gcc/ChangeLog
View file @
693e265f
Wed Apr 22 17:07:35 1998 Michael Meissner <meissner@cygnus.com>
* loop.c (note_addr_stored): Correct function to take 2 arguments,
instead of 1.
* rtl.def (MATCH_INSN2): Add new matching pattern.
* genrecog.c (add_to_sequence): Support MATCH_INSN2.
Wed Apr 22 15:52:22 1998 John Carr <jfc@mit.edu>
* emit-rtl.c (gen_highpart): The high part of a CONST_INT is not zero
if HOST_BITS_PER_WIDE_INT is larger than BITS_PER_WORD.
* final.c (split_double): Sign extend both halves of a split CONST_INT.
Wed Apr 22 10:42:45 1998 Jeffrey A Law (law@cygnus.com)
...
...
gcc/genrecog.c
View file @
693e265f
...
...
@@ -353,6 +353,7 @@ add_to_sequence (pattern, last, position)
case
MATCH_SCRATCH
:
case
MATCH_OPERATOR
:
case
MATCH_PARALLEL
:
case
MATCH_INSN2
:
new
->
opno
=
XINT
(
pattern
,
0
);
new
->
code
=
(
code
==
MATCH_PARALLEL
?
PARALLEL
:
UNKNOWN
);
new
->
enforce_mode
=
0
;
...
...
gcc/loop.c
View file @
693e265f
...
...
@@ -285,7 +285,7 @@ static int consec_sets_invariant_p PROTO((rtx, int, rtx));
static
rtx
libcall_other_reg
PROTO
((
rtx
,
rtx
));
static
int
labels_in_range_p
PROTO
((
rtx
,
int
));
static
void
count_loop_regs_set
PROTO
((
rtx
,
rtx
,
char
*
,
rtx
*
,
int
*
,
int
));
static
void
note_addr_stored
PROTO
((
rtx
));
static
void
note_addr_stored
PROTO
((
rtx
,
rtx
));
static
int
loop_reg_used_before_p
PROTO
((
rtx
,
rtx
,
rtx
,
rtx
,
rtx
));
static
void
scan_loop
PROTO
((
rtx
,
rtx
,
int
,
int
));
#if 0
...
...
@@ -2825,8 +2825,9 @@ labels_in_range_p (insn, end)
/* Record that a memory reference X is being set. */
static
void
note_addr_stored
(
x
)
note_addr_stored
(
x
,
y
)
rtx
x
;
rtx
y
ATTRIBUTE_UNUSED
;
{
register
int
i
;
...
...
gcc/md.texi
View file @
693e265f
...
...
@@ -401,6 +401,25 @@ An insn that matches this pattern might look like:
Like
@code
{
match_op_dup
},
but
for
@code
{
match_parallel
}
instead
of
@code
{
match_operator
}.
@findex
match_insn
@item
(
match_insn
@var
{
predicate
})
Match
a
complete
insn
.
Unlike
the
other
@code
{
match_
*
}
recognizers
,
@code
{
match_insn
}
does
not
take
an
operand
number
.
The
machine
mode
@var
{
m
}
of
@code
{
match_insn
}
works
like
that
of
@code
{
match_operand
}
:
it
is
passed
as
the
second
argument
to
the
predicate
function
,
and
that
function
is
solely
responsible
for
deciding
whether
the
expression
to
be
matched
``
has
''
that
mode
.
@findex
match_insn2
@item
(
match_insn2
@var
{
n
}
@var
{
predicate
})
Match
a
complete
insn
.
The
machine
mode
@var
{
m
}
of
@code
{
match_insn2
}
works
like
that
of
@code
{
match_operand
}
:
it
is
passed
as
the
second
argument
to
the
predicate
function
,
and
that
function
is
solely
responsible
for
deciding
whether
the
expression
to
be
matched
``
has
''
that
mode
.
@findex
address
@item
(
address
(
match_operand
:
@var
{
m
}
@var
{
n
}
"address_operand"
""
))
This
complex
of
expressions
is
a
placeholder
for
an
operand
number
...
...
gcc/rtl.def
View file @
693e265f
/* This file contains the definitions and documentation for the
Register Transfer Expressions (rtx's) that make up the
Register Transfer Language (rtl) used in the Back End of the GNU compiler.
Copyright (C) 1987, 88, 92, 94, 95,
1997
Free Software Foundation, Inc.
Copyright (C) 1987, 88, 92, 94, 95,
97, 1998
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -54,6 +54,7 @@ Boston, MA 02111-1307, USA. */
"b" an rtx code for a bit-field operation (ZERO_EXTRACT, SIGN_EXTRACT)
"i" an rtx code for a machine insn (INSN, JUMP_INSN, CALL_INSN)
"m" an rtx code for something that matches in insns (e.g, MATCH_DUP)
"g" an rtx code for grouping insns together (e.g, GROUP_PARALLEL)
"x" everything else
*/
...
...
@@ -165,6 +166,11 @@ DEF_RTL_EXPR(MATCH_PAR_DUP, "match_par_dup", "iE", 'm')
DEF_RTL_EXPR(MATCH_INSN, "match_insn", "s", 'm')
/* Appears only in machine descriptions.
Operand 0 is the operand number, as in match_operand.
Operand 1 is the predicate to apply to the insn. */
DEF_RTL_EXPR(MATCH_INSN2, "match_insn2", "is", 'm')
/* Appears only in machine descriptions.
Defines the pattern for one kind of instruction.
Operand:
0: names this instruction.
...
...
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