Skip to content

Commit

Permalink
Introduce 4-stages profiledbootstrap to get a better profile.
Browse files Browse the repository at this point in the history
2017-06-19  Martin Liska  <[email protected]>

	* doc/install.texi: Document that PGO runs in 4 stages.
2017-06-19  Martin Liska  <[email protected]>

	* Makefile.def: Define 4 stages PGO bootstrap.
	* Makefile.tpl: Define FLAGS.
	* Makefile.in: Regenerate.

From-SVN: r249366
  • Loading branch information
marxin authored and Martin Liska committed Jun 19, 2017
1 parent 871cc21 commit 0d053a4
Show file tree
Hide file tree
Showing 6 changed files with 2,719 additions and 57 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2017-06-19 Martin Liska <[email protected]>

* Makefile.def: Define 4 stages PGO bootstrap.
* Makefile.tpl: Define FLAGS.
* Makefile.in: Regenerate.

2017-06-14 Ian Lance Taylor <[email protected]>

* Makefile.def: Add check-gotools to go check targets.
Expand Down
5 changes: 4 additions & 1 deletion Makefile.def
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,10 @@ bootstrap_stage = {
bootstrap_stage = {
id=profile ; prev=1 ; };
bootstrap_stage = {
id=feedback ; prev=profile ;
id=train; prev=profile ;
bootstrap_target=profiledbootstrap ; };
bootstrap_stage = {
id=feedback ; prev=train;
bootstrap_target=profiledbootstrap ; };
bootstrap_stage = {
id=autoprofile ; prev=1 ;
Expand Down
Loading

0 comments on commit 0d053a4

Please sign in to comment.