Closed Bug 1207882 Opened 9 years ago Closed 9 years ago

Initial partial implementation for a new faster build backend

Categories

(Firefox Build System :: General, defect)

defect
Not set
normal

Tracking

(firefox44 fixed)

RESOLVED FIXED
mozilla44
Tracking Status
firefox44 --- fixed

People

(Reporter: glandium, Assigned: glandium)

References

(Blocks 1 open bug)

Details

Attachments

(5 files, 1 obsolete file)

Assignee: nobody → mh+mozilla
Attachment #8665215 - Flags: review?(gps)
Attachment #8665216 - Flags: review?(gps)
This currently works because other things in the build system are creating those directories, but it's not a safe thing to rely on.
Attachment #8665217 - Flags: review?(gps)
Since reading context['FINAL_TARGET'] can have side effects, use it lazily.
Attachment #8665218 - Flags: review?(gps)
Forgot to git add a file.
Attachment #8665219 - Attachment is obsolete: true
Attachment #8665219 - Flags: review?(gps)
Attachment #8665360 - Flags: review?(gps)
Attachment #8665215 - Flags: review?(gps) → review+
Attachment #8665216 - Flags: review?(gps) → review+
Attachment #8665217 - Flags: review?(gps) → review+
Attachment #8665218 - Flags: review?(gps) → review+
Comment on attachment 8665360 [details] [diff] [review] Add an initial partial implementation of a new, faster, build backend Review of attachment 8665360 [details] [diff] [review]: ----------------------------------------------------------------- Great start! I'm not done with review, so no change on review flag. Install manifests support preprocessor entries. You can even define per-file DEFINES. Is there a reason you are doing all the preprocessor foo in make/PP_TARGETS instead of using install manifests?
(In reply to Gregory Szorc [:gps] from comment #7) > Install manifests support preprocessor entries. You can even define per-file > DEFINES. Is there a reason you are doing all the preprocessor foo in > make/PP_TARGETS instead of using install manifests? Yes there is: the fact that some use options that are not supported by install manifests. The end game is to use install manifests for everything, but I didn't want to block on that.
Blocks: 1207893
Comment on attachment 8665360 [details] [diff] [review] Add an initial partial implementation of a new, faster, build backend Review of attachment 8665360 [details] [diff] [review]: ----------------------------------------------------------------- ::: config/faster/rules.mk @@ +68,5 @@ > +# fallback > +$(TOPOBJDIR)/faster/%: ; > + > +# And files under dist/ are meant to be copied from their first dependency > +# if there is not other rule. There is a typo here: s/not/no/ @@ +70,5 @@ > + > +# And files under dist/ are meant to be copied from their first dependency > +# if there is not other rule. > +$(TOPOBJDIR)/dist/%: > + cp $< $@ I'll add a rm -f $@ before the cp, because it is necessary when running `mach build faster` after a standard `mach build`.
Comment on attachment 8665360 [details] [diff] [review] Add an initial partial implementation of a new, faster, build backend Review of attachment 8665360 [details] [diff] [review]: ----------------------------------------------------------------- Great work! This is pretty much an r+. But I'll wait to look at the other patches in my queue before formally granting r+. Feel free to upload the final revision for review so I can heave peace of mind w.r.t. the make voodoo. If I had one higher-level critique, it would be that a lot of the optimizations in the new backend could be applied to the existing backend. For example, processing of jar manifests is currently processed in the libs tier, which isn't optimally traversed. We could give jar manifests their own .mk file and process them in one batch. Of course there are l10n repack implications for JAR manifests, so maybe that isn't the best of examples :) ::: config/faster/rules.mk @@ +148,5 @@ > +# $(TOPSRCDIR)/path/to/jar.mn, the default would be $(TOPOBJDIR)/path/to. > +# In case a different path must be used for the object directory, the `objdir` > +# variable can be set. For example: > +# jar-foo: objdir=/some/other/path > +jar-%: objdir ?= $(dir $(<:$(TOPSRCDIR)%=$(TOPOBJDIR)%)) You managed to confuse 2 build peers and induce copious amounts of swearing with this line. And I'm still not convinced I fully grok what is going on. Please add a comment on the make wizardry, specifically the "$(<:". ::: python/mozbuild/mozbuild/backend/fastermake.py @@ +42,5 @@ > + # We currently ignore a lot of object types, so just acknowledge > + # everything. > + obj.ack() > + > + if not isinstance(obj, Defines) and isinstance(obj, ContextDerived): It seems fragile to pull out the defines this way. Makes me realize that we should probably be setting defines on a per-object basis in case we ever add per-object define adjustment. @@ +72,5 @@ > + mozpath.join('components', mozpath.basename(f)) > + ) > + if f.endswith('.manifest'): > + self._manifest_entries[ > + mozpath.join(obj.install_target, 'chrome.manifest')] \ I prefer using a variable to hold the key to increase readability.
Comment on attachment 8665360 [details] [diff] [review] Add an initial partial implementation of a new, faster, build backend Review of attachment 8665360 [details] [diff] [review]: ----------------------------------------------------------------- The other patches all seem reasonably sane. This looks good enough for something that isn't part of the build (yet). Let's ship it and see what our early adopters say.
Attachment #8665360 - Flags: review?(gps) → review+
(In reply to Gregory Szorc [:gps] from comment #10) > If I had one higher-level critique, it would be that a lot of the > optimizations in the new backend could be applied to the existing backend. > For example, processing of jar manifests is currently processed in the libs > tier, which isn't optimally traversed. We could give jar manifests their own > .mk file and process them in one batch. Of course there are l10n repack > implications for JAR manifests, so maybe that isn't the best of examples :) That is exactly why this can't be done with the existing backend ;) > ::: config/faster/rules.mk > @@ +148,5 @@ > > +# $(TOPSRCDIR)/path/to/jar.mn, the default would be $(TOPOBJDIR)/path/to. > > +# In case a different path must be used for the object directory, the `objdir` > > +# variable can be set. For example: > > +# jar-foo: objdir=/some/other/path > > +jar-%: objdir ?= $(dir $(<:$(TOPSRCDIR)%=$(TOPOBJDIR)%)) > > You managed to confuse 2 build peers and induce copious amounts of swearing > with this line. And I'm still not convinced I fully grok what is going on. > Please add a comment on the make wizardry, specifically the "$(<:". It's not /that/ magic. it's the $(FOO:old%=new%) form applied to $<, with old = $(TOPSRCDIR) and new = $(TOPOBJDIR) > ::: python/mozbuild/mozbuild/backend/fastermake.py > @@ +42,5 @@ > > + # We currently ignore a lot of object types, so just acknowledge > > + # everything. > > + obj.ack() > > + > > + if not isinstance(obj, Defines) and isinstance(obj, ContextDerived): > > It seems fragile to pull out the defines this way. Makes me realize that we > should probably be setting defines on a per-object basis in case we ever add > per-object define adjustment. That is indeed one of the shortcomings of the current data model that this patch reveals. Another one being the number of different data types indicating file copies and preprocessing in subtly different ways.
(In reply to Mike Hommey [:glandium] from comment #12) > It's not /that/ magic. it's the $(FOO:old%=new%) form applied to $<, with > old = $(TOPSRCDIR) and new = $(TOPOBJDIR) I completely forgot about substitution references and their special syntax. This makes sense. But please throw in a comment. Or perhaps use $(patsubst) instead?
Note the comment just above /is/ about that variable. I'll switch to patsubst.
Blocks: 1209401
Blocks: 1209403
Depends on: 1216901
Product: Core → Firefox Build System
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: