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
d340408c
Commit
d340408c
authored
Sep 18, 2000
by
Richard Henderson
Committed by
Richard Henderson
Sep 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (try_combine): Allow split to create a single insn.
From-SVN: r36504
parent
a191f0ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
gcc/ChangeLog
+2
-0
gcc/combine.c
+11
-5
No files found.
gcc/ChangeLog
View file @
d340408c
2000-09-18 Richard Henderson <rth@cygnus.com>
* combine.c (try_combine): Allow split to create a single insn.
* machmode.def: Add BImode. Add a column for bitsize.
* machmode.h (DEF_MACHMODE): Adjust for extra column.
(GET_MODE_BITSIZE): Use it.
...
...
gcc/combine.c
View file @
d340408c
...
...
@@ -2107,11 +2107,17 @@ try_combine (i3, i2, i1, new_direct_jump_p)
i3
);
}
if
(
m_split
&&
GET_CODE
(
m_split
)
==
SEQUENCE
&&
XVECLEN
(
m_split
,
0
)
==
2
&&
(
next_real_insn
(
i2
)
==
i3
||
!
use_crosses_set_p
(
PATTERN
(
XVECEXP
(
m_split
,
0
,
0
)),
INSN_CUID
(
i2
))))
if
(
m_split
&&
GET_CODE
(
m_split
)
!=
SEQUENCE
)
{
insn_code_number
=
recog_for_combine
(
&
m_split
,
i3
,
&
new_i3_notes
);
if
(
insn_code_number
>=
0
)
newpat
=
m_split
;
}
else
if
(
m_split
&&
GET_CODE
(
m_split
)
==
SEQUENCE
&&
XVECLEN
(
m_split
,
0
)
==
2
&&
(
next_real_insn
(
i2
)
==
i3
||
!
use_crosses_set_p
(
PATTERN
(
XVECEXP
(
m_split
,
0
,
0
)),
INSN_CUID
(
i2
))))
{
rtx
i2set
,
i3set
;
rtx
newi3pat
=
PATTERN
(
XVECEXP
(
m_split
,
0
,
1
));
...
...
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