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
68340ae9
Commit
68340ae9
authored
Apr 09, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
Apr 09, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up ia64 compilations
From-SVN: r41204
parent
46ed7963
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletions
+15
-1
gcc/ChangeLog
+7
-0
gcc/config/ia64/ia64.c
+8
-1
No files found.
gcc/ChangeLog
View file @
68340ae9
2001
-
04
-
05
Bernd
Schmidt
<
bernds
@redhat
.
com
>
*
ia64
.
c
(
ia64_flag_schedule_insns2
)
:
New
variable
.
(
ia64_override_options
)
:
Initialize
it
.
Clear
flag_schedule_insns_after_reload
.
(
ia64_reorg
)
:
Only
do
scheduling
if
ia64_flag_schedule_insns2
.
Mon
Apr
9
15
:
09
:
13
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
md
(
truncdfsf2_
*
)
:
Add
i387
->
int
/
sse
reg
alternatives
;
...
...
gcc/config/ia64/ia64.c
View file @
68340ae9
...
...
@@ -91,6 +91,10 @@ static const char * const ia64_output_reg_names[8] =
/* String used with the -mfixed-range= option. */
const
char
*
ia64_fixed_range_string
;
/* Determines whether we run our final scheduling pass or not. We always
avoid the normal second scheduling pass. */
static
int
ia64_flag_schedule_insns2
;
/* Variables which are this size or smaller are put in the sdata/sbss
sections. */
...
...
@@ -3715,6 +3719,9 @@ ia64_override_options ()
if
(
ia64_fixed_range_string
)
fix_range
(
ia64_fixed_range_string
);
ia64_flag_schedule_insns2
=
flag_schedule_insns_after_reload
;
flag_schedule_insns_after_reload
=
0
;
ia64_section_threshold
=
g_switch_set
?
g_switch_value
:
IA64_DEFAULT_GVALUE
;
init_machine_status
=
ia64_init_machine_status
;
...
...
@@ -6213,7 +6220,7 @@ ia64_reorg (insns)
find_basic_blocks
(
insns
,
max_reg_num
(),
NULL
);
life_analysis
(
insns
,
NULL
,
PROP_DEATH_NOTES
);
if
(
optimize
)
if
(
ia64_flag_schedule_insns2
)
{
ia64_final_schedule
=
1
;
schedule_ebbs
(
rtl_dump_file
);
...
...
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