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
9e525635
Commit
9e525635
authored
Apr 20, 2000
by
Richard Henderson
Committed by
Richard Henderson
Apr 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (emit_iv_add_mult): Revert last change.
From-SVN: r33302
parent
c52fbf0f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
51 deletions
+9
-51
gcc/ChangeLog
+4
-0
gcc/loop.c
+5
-51
No files found.
gcc/ChangeLog
View file @
9e525635
2000
-
04
-
20
Richard
Henderson
<
rth
@cygnus
.
com
>
*
loop
.
c
(
emit_iv_add_mult
)
:
Revert
last
change
.
2000
-
04
-
20
Zack
Weinberg
<
zack
@wolery
.
cumb
.
org
>
*
cpplib
.
h
(
enum
cpp_ttype
)
:
Add
token
types
for
all
...
...
gcc/loop.c
View file @
9e525635
...
...
@@ -7640,24 +7640,11 @@ emit_iv_add_mult (b, m, a, reg, insert_before)
{
rtx
seq
;
rtx
result
;
rtx
last
;
rtx
set
;
rtx
exp
;
enum
machine_mode
mode
=
GET_MODE
(
reg
);
/* Prevent unexpected sharing of these rtx. */
a
=
copy_rtx
(
a
);
b
=
copy_rtx
(
b
);
/* We may be faced to (plus (symbol_ref) (const_int)). We want to simplify
this to CONST rtx. */
exp
=
simplify_rtx
(
a
);
if
(
exp
)
a
=
exp
;
exp
=
simplify_rtx
(
b
);
if
(
exp
)
b
=
exp
;
/* Increase the lifetime of any invariants moved further in code. */
update_reg_last_use
(
a
,
insert_before
);
update_reg_last_use
(
b
,
insert_before
);
...
...
@@ -7670,7 +7657,7 @@ emit_iv_add_mult (b, m, a, reg, insert_before)
seq
=
gen_sequence
();
end_sequence
();
last
=
emit_insn_before
(
seq
,
insert_before
);
emit_insn_before
(
seq
,
insert_before
);
/* It is entirely possible that the expansion created lots of new
registers. Iterate over the sequence we just created and
...
...
@@ -7681,47 +7668,14 @@ emit_iv_add_mult (b, m, a, reg, insert_before)
int
i
;
for
(
i
=
0
;
i
<
XVECLEN
(
seq
,
0
);
++
i
)
{
set
=
single_set
(
XVECEXP
(
seq
,
0
,
i
));
rtx
set
=
single_set
(
XVECEXP
(
seq
,
0
,
i
));
if
(
set
&&
GET_CODE
(
SET_DEST
(
set
))
==
REG
)
record_base_value
(
REGNO
(
SET_DEST
(
set
)),
SET_SRC
(
set
),
0
);
}
last
=
XVECEXP
(
seq
,
0
,
i
-
1
);
}
else
{
set
=
single_set
(
last
);
if
(
set
&&
GET_CODE
(
SET_DEST
(
set
))
==
REG
)
record_base_value
(
REGNO
(
SET_DEST
(
set
)),
SET_SRC
(
set
),
0
);
}
if
(
!
last
)
return
;
/* Sequence really ought to end by set storing final value to the register.
Attach note indicating expression we've just calculated to it. This is
important for second run of loop optimizer to understand strength reduced
givs from the first run. */
if
(
GET_CODE
(
last
)
!=
INSN
)
abort
();
set
=
single_set
(
last
);
if
(
!
set
)
return
;
if
(
SET_DEST
(
set
)
!=
reg
)
abort
();
/* In case we start to emit some usefull notes to these insns, get abort
here, since we need to decide what information is more important. */
if
(
find_reg_note
(
last
,
REG_EQUIV
,
NULL_RTX
)
||
find_reg_note
(
last
,
REG_EQUAL
,
NULL_RTX
))
abort
();
/* Expression we've just caluclated. */
exp
=
simplify_gen_binary
(
PLUS
,
mode
,
simplify_gen_binary
(
MULT
,
mode
,
b
,
m
),
a
);
REG_NOTES
(
last
)
=
gen_rtx_EXPR_LIST
(
REG_EQUAL
,
exp
,
REG_NOTES
(
last
));
else
if
(
GET_CODE
(
seq
)
==
SET
&&
GET_CODE
(
SET_DEST
(
seq
))
==
REG
)
record_base_value
(
REGNO
(
SET_DEST
(
seq
)),
SET_SRC
(
seq
),
0
);
}
/* Test whether A * B can be computed without
...
...
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