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
0c478921
Commit
0c478921
authored
Nov 10, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Nov 10, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ia64 float extend splitter crash.
From-SVN: r37365
parent
6fb85418
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
4 deletions
+30
-4
gcc/ChangeLog
+5
-0
gcc/config/ia64/ia64.md
+24
-3
gcc/toplev.c
+1
-1
No files found.
gcc/ChangeLog
View file @
0c478921
...
...
@@ -3,6 +3,11 @@
* regrename.c (build_def_use): Mark contents of REG_INC notes as
needing replacement.
* config/ia64/ia64.md (extendsfdf2, extendsftf2, extenddftf2): Emit
a no-op move if regs are equal.
* toplev.c (rest_of_compilation): Do the noop moves elimination pass
when calling jump after post-reload splitting.
2000-11-09 Jan van Male <jan.vanmale@fenk.wau.nl>
* c-tree.texi: Fix typos.
...
...
gcc/config/ia64/ia64.md
View file @
0c478921
...
...
@@ -1073,7 +1073,14 @@
getf.d %0 = %1"
"reload_completed"
[(set (match_dup 0) (float_extend:DF (match_dup 1)))]
"if (true_regnum (operands[0]) == true_regnum (operands[1])) DONE;"
"
{
if (true_regnum (operands[0]) == true_regnum (operands[1]))
{
emit_insn (gen_movdi (pic_offset_table_rtx, pic_offset_table_rtx));
DONE;
}
}"
[(set_attr "type" "F,F,M,M,M,M")])
(define_insn_and_split "extendsftf2"
...
...
@@ -1089,7 +1096,14 @@
stfe %0 = %1%P0"
"reload_completed"
[(set (match_dup 0) (float_extend:TF (match_dup 1)))]
"if (true_regnum (operands[0]) == true_regnum (operands[1])) DONE;"
"
{
if (true_regnum (operands[0]) == true_regnum (operands[1]))
{
emit_insn (gen_movdi (pic_offset_table_rtx, pic_offset_table_rtx));
DONE;
}
}"
[(set_attr "type" "F,F,M,M,M")])
(define_insn_and_split "extenddftf2"
...
...
@@ -1105,7 +1119,14 @@
stfe %0 = %1%P0"
"reload_completed"
[(set (match_dup 0) (float_extend:TF (match_dup 1)))]
"if (true_regnum (operands[0]) == true_regnum (operands[1])) DONE;"
"
{
if (true_regnum (operands[0]) == true_regnum (operands[1]))
{
emit_insn (gen_movdi (pic_offset_table_rtx, pic_offset_table_rtx));
DONE;
}
}"
[(set_attr "type" "F,F,M,M,M")])
(define_insn "truncdfsf2"
...
...
gcc/toplev.c
View file @
0c478921
...
...
@@ -3484,7 +3484,7 @@ rest_of_compilation (decl)
open_dump_file
(
DFI_flow2
,
decl
);
jump_optimize
(
insns
,
!
JUMP_CROSS_JUMP
,
!
JUMP_NOOP_MOVES
,
!
JUMP_AFTER_REGSCAN
);
JUMP_NOOP_MOVES
,
!
JUMP_AFTER_REGSCAN
);
find_basic_blocks
(
insns
,
max_reg_num
(),
rtl_dump_file
);
/* On some machines, the prologue and epilogue code, or parts thereof,
...
...
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