-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Do not perform typechecking if files are unchanged when compiling with -p
#40721
Comments
Reading this more, I would think that this is actually a bug rather than a suggestion, but I'm conservatively marking it as a suggestion. Maybe @sheetalkamat can speak to whether the current behavior was intentional or not. |
Classifying it as a bug seems fine to me as well 😄 |
I think the behaviour is intentional.. |
We initially attempted to use Basically, we want the functionality of |
I am not sure what mode that would be.. Note that if project has references to another project, if there are changes in the referenced project, it needs to be built. So that upto date check is correct and because tsc -b means build solution, it will build that referenced solution. So i think tsc -b not building whole world is confusing. |
If you solely use
Adding a flag would be okay for us. We have full control over I am not really following the other parts of your comment, I am sorry. With regards to our input files, we specify all input files and disable all other resolution. E.g. we also remove the I understand your concerns about additional overhead for the majority of If you want, I can help out prototyping to figure out what would work for us. If you could provide me pointers in the code to where I should be looking, I can help debugging next week. |
As a small update: given that this particular use case does not seem to and will not be supported by the TypeScript compiler, we have since been looking at mitigating the impact with GOMA: https://bugs.chromium.org/p/chromium/issues/detail?id=1139220 We are currently in discussion with the GOMA team to figure out an implementation. Sadly, this solution is not available for non-Googlers, which means that Chromium builds for non-Googlers will remain slow. |
Search Terms
incremental, composite
Chrome DevTools and TypeScript
TLDR: integrate/improve incremental build functionality into
-p
Please see the summary at the bottom for the actual feature request in this issue. The rest of it is (important) background information as to why we are making this feature request.
As you might be aware, Chrome DevTools is migrating from the Closure Compiler to the TypeScript compiler.
As part of the integration of TypeScript with GN/Ninja, we have written a desugaring Python script to eventually call
tsc
.The high-level process is as follows:
ts_library.py
tsconfig.json
, based on its file inputs and general configuration. Thistsconfig.json
file is written to the filesystem, see below for an exampletsc
with pinned versions of both Node and TypeScript and point it to thetsconfig.json
file with the-p
compiler flagThis setup is similar to
tsc -b
.However, since Chrome DevTools is part of the Chromium codebase, we have to integrate with GN/Ninja.
As such, GN/Ninja is "running the world", rather than a tool like TypeScript.
Therefore, we are not able to use
tsc -b
, as it assumes thattsc
is the tool "running the world".In general, this setup works.
Sadly, one area that we do have some issues is related to the performance of the TypeScript compiler.
Performance investigation
There are two areas of interest for our integration: the performance of both a clean and an incremental build.
For a clean build, we are mostly bound by the performance of the TypeScript compiler itself.
Since we have no prior information, we can only take advantage of compiler options that improve performance.
For example, we have been using
--skipLibCheck
for all targets except one, as we can assume that libs generally don't have problems across multiple different subfolders.For an incremental build, the situation is a bit different.
Since GN/Ninja is quite smart at figuring out when (not) to run a GN action, we have optimized our TypeScript integration to only run if strictly necessary.
To do so, we are taking advantage of
.tsbuildinfo
files and general caching of results.Sadly, even for incremental builds we are observing quite long compilation times.
Therefore, I decided to do a performance investigation in the TypeScript compiler explicitly for its incremental build performance.
Incremental build analysis
The base assumption that I operated on was the following:
However, I quickly realized that this assumption is not the case.
The scenario that I tested was the following:
tsc
manually as if it were part of a normal GN action and observe its performanceThe command I used to analyze its performance was the following:
Example output (collapsed for brevity):
Since DevTools has a lot of files/LoC, the summation of the invocation times adds up to minutes. In this analysis, I chose the
sdk
folder, as Ninja reports that it is the slowest part of the DevTools build (log collapsed for brevity):After analyzing the flamecharts produced by
tsc
, I observed that TypeScript was indeed checking the source files, even though technically no files had changed.Yet in its flamechart, I found references to the incremental build, which we have turned on via
--composite
(which in turn implies--incremental
).The callstack included:
Based on these functions, I ventured further and eventually found references to a function called
tryReuseStructureFromOldProgram
.This function sounded very interesting, so I decided to figure out its callstack (
console.log(new Error().stack)
):tryReuseStructureFromOldProgram
returns 0 (which implies its program could not be reused), asoldProgram
does not exist.However, when analyzing
createBuilderProgramState
I discovered that it was correctly deducing that there were no files changed.console.log(state.changedFilesSet);
logged an empty set.This is correct, as no files had changed and the full program information from the
.tsbuildinfo
could be used.At this point, I was a bit puzzled.
It seemed like
tsc
was able to figure out nothing had changed, yet it was still doing work.Based on the content of the
.tsbuildinfo
file, I continued searching for its content.There were two interesting fieldnames:
signature
andversion
.When searching for
\.\bsignature\b
, I found two interesting functions:const computeHash = host.createHash || generateDjb2Hash;
.Sadly
computeHash
is passed in as a method parameter into a lot of functions.Therefore, it is difficult to figure out where it is actually used.
The second function was a lot more interesting and also had references to
computeHash
.Based on my reading of these functions,
tsc
can figure when (not) to compile a particular project.This is (as expected) based on file hashes and checking (among other things) the compiler version it was previously compiled with.
While these functions seemed what I was looking for, adding logging to either of those showed that they were not called at all.
I added additional logging to numerous callsides of
updateShapeSignature
, yet none of these were called.At this point, I was a bit confused as to how/why the
.tsbuildinfo
was seemingly used, but not used determining whether it should compile at all.TLDR: integrate/improve incremental build functionality into
-p
Eventually I realized the following:
tsc -b
andtsc -w
can make efficient decisions about recompilation.These two modes can figure out whether recompilation is necessary and bail out if the above mentioned functions determine that nothing has changed.
However,
tsc -p
does not take advantage of this functionality.To improve the incremental build performance of DevTools (where the assumption is that
tsc
is not "running the world"), can we extendtsc -p
to prevent unnecessary checking when no files have changed?Essentially, my expectation would be that the
time third_party/node/node.py
command I posted all the way at the top would do no (or near zero) work, if nothing has changed.This would have significant performance improvements for DevTools, where a majority of the files rarely change and rebuilds are very frequent.
Checklist
My suggestion meets these guidelines:
The text was updated successfully, but these errors were encountered: