The new option -fproc-stat-info=<file> can be used to generate report
about used memory and execution tile of each stage of compilation.
Documentation for this option can be found in UserManual.rst. The
option can be used in parallel builds.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/docs/UsersManual.rst | ||
---|---|---|
770 | Please add a header to the output .CSV, specifying the units of measure where relevant. | |
786 | Why not just -fproc-stat-report in this case? | |
787 | I think it is better if the units are specified along (and locale-formatted, if possible): clang-11: output=/tmp/foo-123456.o total=84,000 ms user=76,000 ms mem=87,496 kb | |
clang/include/clang/Driver/Job.h | ||
144 | mutable Optional<llvm::sys::ProcessStatistics> ProcStat; and then you won't need .isSet(). | |
clang/lib/Driver/Driver.cpp | ||
3942 | There is a large piece of code in the if statement, I would add curly brackets: | |
3944 | Use Optional<> like state above, then the condition changes to: and then usage below becomes: | |
3946 | if (StatReportFile.equals("-") || StatReportFile.empty()) { |
clang/docs/UsersManual.rst | ||
---|---|---|
786 | It can save an Option.. | |
787 | Sorry, I tend to disagree with the argument for decimal separators and locale differences. They make behaviors divergent and make the output difficult to parse by a script. (Scripts may have to use LANG=C clang -fproc-stat-report=- to cancel the locale effect) |
clang/docs/UsersManual.rst | ||
---|---|---|
786 | I was thinking in terms of user experience, I find it a bit awkward. If you want stdin, you say mytool < file, if you want stdout you say mytool and pipe the output down the line. Is there a need to state the output when we're not writing to a file? There is a precedent for this, other tools like xray have llvm-xray account %s -o -, but it's there for completness, you could just say llvm-xray account %s. | |
787 | In my sense, CSV or YAML are for machine parsing, TXT is for human consumption. A script should not parse a human-targetted output. |
clang/docs/UsersManual.rst | ||
---|---|---|
770 | CSV was chosen because such file is a simple union of records. It is convenient if multiple processes write to it. A process locks the file, writes to it and unlock it. If header is required, thing get more complicated. A process locks file, then moves to the end and get current position. If it is the beginning of the file, this process if the first writer, so it writes header. Then it writes line of data and unlock file. On the other hand, CSV file is proposed for parsing by scripts. Does such complication really makes sense? | |
786 | Agree, it looks awkward. I will add variant without value. | |
787 | I don't think an option for output format is needed here (but it could be useful if we supported JSON in addition to CSV). However the proposed format indeed is more readable. I am going to change printing accordingly, but without locale specifics. For users of this feature C locale is convenient. |
clang/docs/UsersManual.rst | ||
---|---|---|
770 | Thanks for the explanation! Yes, it would be more complicated indeed if locking is required. Let's forget the header if it's not practical. However that raises a question: is it up to the user/build system to delete the log file on startup? Otherwise each build would indefintely append, you wouldn't know where your last build started in the log? How do you address that currently? | |
787 | Sounds good! |
Updated patch
- added variant of the option without file, it is used to print statistics on stdout.
- Updated file locking mechanism.
- Updated test and documentation accordingly.
clang/lib/Driver/Driver.cpp | ||
---|---|---|
87 |
clang/docs/UsersManual.rst | ||
---|---|---|
770 |
Yes, the log file is only appended. Users need to delete it if they want it contains results of one run only. However this feature is also used to collect statistics. User runs the same build several times and average needed metric for the same output file. |
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3946 | In the case where !ProcStat, I am wondering if we shouldn't emit zero values, in the report file at least. Otherwise if an invocation fails, it won't be there in the report and we might wonder why. Emitting 0 might indicate that something went wrong. | |
3978 | If the goal is to report accurate information, maybe it's worth looping here a bit in case of an error, to give the chance to other clang.exe instances to release the file lock? What do you think? (same for tryToLock) |
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3946 | The feature allows getting statistics using conventional tools like make. In this case the absence of numbers for a particular file is not an issue, maybe the file has already been built. If something goes wrong, clang must handle it in Compilation::ExecuteCommand and react properly. The fact of failed invocation would be handled by build tool. For the purpose of monitoring performance numbers it is more convenient to record successful compilations only. | |
3978 | Actually this method makes blocking request and waits infinitely. There is long discussion of how this lock helper must be implemented: https://reviews.llvm.org/D79066. Finally the variant with timeout was removed, only blocking one remained. The method has prefix try because it requires handling result value. If you think the name or interface might be better, you can participate in the discussion in D79066, that patch isn't committed yet. |
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3946 | Ok, thanks for clarifying! Could you please do an early exit here? ie. if (!ProcStat) return; | |
3978 | Thanks! In the same way as above, I think the code will read better if it did early exits. Also, I don't think you need handleAllErrors, you could replace it with toString and report the error code the user: if (EC) return; auto L=OS.tryToLock(); if (!L) { llvm::errs() ... << toString(L.takeError()); return; } OS << Buffer; |
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3978 | It becomes better. Thanks! |
Thanks again for the changes @sepavloff! Looks good to me!
You might wait a bit before commiting, if there are further comments.
clang/lib/Driver/Driver.cpp | ||
---|---|---|
3971 | Please note that I've just moved this function to llvm::sys::printArg, you will need to update before commit. |
Could you add quotation marks around the executable name to make the CSV file easier to parse?
clang/test/Driver/report-stat.c | ||
---|---|---|
1 | Hi @sepavloff, is it possible to add -fintegrated-as to the clang invocation? As it is, the test fails on our AIX target because we don't use the integrated assembler by default. |
clang/test/Driver/report-stat.c | ||
---|---|---|
1 | fyi, I added the option in 979bcbd3a6f7ea784f2098ad4cf613fbd6b09e38 |
Please add a header to the output .CSV, specifying the units of measure where relevant.