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
375de5b6
Commit
375de5b6
authored
Nov 27, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Nov 27, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prettier visualization of COND_EXECs
From-SVN: r37795
parent
7dbe6ae9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
gcc/ChangeLog
+2
-0
gcc/haifa-sched.c
+13
-3
No files found.
gcc/ChangeLog
View file @
375de5b6
2000-11-27 Bernd Schmidt <bernds@redhat.co.uk>
* haifa-sched.c (print_pattern): Prettier output for COND_EXEC.
* reload1.c (reload_cse_simplify_set): Pass down mode to cselib_lookup.
(reload_cse_simplify_operands): Do nothing about operands where both
the operand and the match_operand fail to give us a mode.
...
...
gcc/haifa-sched.c
View file @
375de5b6
...
...
@@ -5492,9 +5492,19 @@ print_pattern (buf, x, verbose)
sprintf
(
buf
,
"use %s"
,
t1
);
break
;
case
COND_EXEC
:
print_value
(
t1
,
COND_EXEC_CODE
(
x
),
verbose
);
print_value
(
t2
,
COND_EXEC_TEST
(
x
),
verbose
);
sprintf
(
buf
,
"cond_exec %s %s"
,
t1
,
t2
);
if
(
GET_CODE
(
COND_EXEC_TEST
(
x
))
==
NE
&&
XEXP
(
COND_EXEC_TEST
(
x
),
1
)
==
const0_rtx
)
print_value
(
t1
,
XEXP
(
COND_EXEC_TEST
(
x
),
0
),
verbose
);
else
if
(
GET_CODE
(
COND_EXEC_TEST
(
x
))
==
EQ
&&
XEXP
(
COND_EXEC_TEST
(
x
),
1
)
==
const0_rtx
)
{
t1
[
0
]
=
'!'
;
print_value
(
t1
+
1
,
XEXP
(
COND_EXEC_TEST
(
x
),
0
),
verbose
);
}
else
print_value
(
t1
,
COND_EXEC_TEST
(
x
),
verbose
);
print_pattern
(
t2
,
COND_EXEC_CODE
(
x
),
verbose
);
sprintf
(
buf
,
"(%s) %s"
,
t1
,
t2
);
break
;
case
PARALLEL
:
{
...
...
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