We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from: llvm/llvm-project@bb8b9ac to: llvm/llvm-project@d214bec commit: 80d88f8
from bb8b9ac0ba5382bcf02f614b5b3a84c3699cf52c to d214bec5161e9e6fd9e4c024f6068597822b1d4e
d214bec5161e9e6fd9e4c024f6068597822b1d4e [clang] Improve deduction of reference typed NTTP (#110393) 4bd81c5738d00c9111fc11cb9990a9377d33eaf3 [Clang] Fix eager skipping in ParseExpressionList() (#110133) b38b34c51a115982912256dd940f2e1b794b7d3a [clang] Remove 'PCH' from more diagnostics that were wrong or misleading NFC (#110724) 6afe56732a172d3f2cbd0330b1fcb34bbfd002a9 [clang] Finish implementation of P0522 (#96023) d1ee9dce2ebad30b3dbc0df4f2a1307f63065b55 [llvm-project][llvm] .gitignore supports filtering folders starting with cmake-build (#110649) 9c868195daf153920272269d2af1c4b62670c4b9 [libc] clean up sprintf macros and float tests (#110759) 4d4beeb43cfdf5c858ced68b541a1e9ef79f4907 [SimplifyCFG] Supporting hoisting/sinking callbases with differing attrs c42659417faf86aa1ed3a34306764192fcdec05b [SimplifyCFG] Add tests for hoisting/sinking callbases with differing attrs; NFC 948326163c96fcd6957d6c318acf3e49be2b11d2 Revert "[SLP]Add debug counter support" ccbda38b7025f3bcd404583c5c20a12ec6fb48f4 Revert "[SLP][NFC]Make a test target specific to avoid failures" c62cb1bf1e6dea19fa42584081bd17226ede2db5 [RISCV][GISel] Stop promoting s32 G_ROTL/ROTR rotate amount to s64 on RV64.
ParseExpressionList()
Compilation time result (by files): Top 5 improvements: git/pack-redundant.ll 930478926 -> 840560809 -9.66% git/notes-merge.ll 696979477 -> 638571606 -8.38% git/hash-lookup.ll 98214915 -> 90040895 -8.32% git/object.ll 285891639 -> 274156315 -4.10% gromacs/mdatoms.cpp.ll 1518507102 -> 1461843221 -3.73% Top 5 regressions: wireshark/packet-babel.c.ll 215058396 -> 262324546 +21.98% git/delta-islands.ll 851249667 -> 1012514570 +18.94% openmpi/support.ll 475143067 -> 551655243 +16.10% openjdk/hb-ot-shaper-indic.ll 1592120071 -> 1830719493 +14.99% git/pack-objects.ll 152727679 -> 175265839 +14.76% Overall: -0.07701847%
Compilation time result (by projects): Top 5 improvements: quickjs 49393484178 -> 49141282434 -0.51% git 154623413048 -> 154024860305 -0.39% velox 1172269245112 -> 1168734850374 -0.30% nghttp2 9760836742 -> 9737516526 -0.24% double_conversion 3778744027 -> 3769769924 -0.24% Top 5 regressions: mimalloc 4625290161 -> 4677819604 +1.14% quest 4584906913 -> 4595460742 +0.23% qemu 316228551903 -> 316571591935 +0.11% Overall: -0.06070448%
Improvements: simplifycfg.NumSinkCommonInstrs 562882 -> 572066 +1.63% simplifycfg.NumSinkCommonCode 261238 -> 264568 +1.27% local.NumPHICSEs 138626 -> 138964 +0.24% licm.NumAddSubHoisted 891 -> 892 +0.11% correlated-value-propagation.NumPhiCommon 39962 -> 40002 +0.10% memdep.NumCacheNonLocal 12644 -> 12655 +0.09% memdep.NumUncacheNonLocal 16225 -> 16235 +0.06% globalopt.NumMarked 2395 -> 2396 +0.04% simplifycfg.NumLookupTables 16747 -> 16753 +0.04% simplifycfg.NumSimpl 35074737 -> 35086307 +0.03% Regressions: gvn.NumPRELoopLoad 2349 -> 2345 -0.17% simplifycfg.NumHoistCommonCode 520281 -> 519418 -0.17% dse.NumRedundantStores 23980 -> 23959 -0.09% deadargelim.NumArgumentsReplacedWithPoison 25930 -> 25908 -0.08% memory-builtins.ObjectVisitorLoad 1573230 -> 1572012 -0.08% indvars.NumFoldedUser 1787 -> 1786 -0.06% sccp.NumDeadBlocks 583891 -> 583594 -0.05% gvn.IsValueFullyAvailableInBlockNumSpeculationsMax 431205 -> 430989 -0.05% sccp.NumInstRemoved 1652111 -> 1651343 -0.05% loop-simplifycfg.NumLoopExitsDeleted 2378 -> 2377 -0.04%
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from: llvm/llvm-project@bb8b9ac
to: llvm/llvm-project@d214bec
commit: 80d88f8
Change Logs
from bb8b9ac0ba5382bcf02f614b5b3a84c3699cf52c to d214bec5161e9e6fd9e4c024f6068597822b1d4e
d214bec5161e9e6fd9e4c024f6068597822b1d4e [clang] Improve deduction of reference typed NTTP (#110393)
4bd81c5738d00c9111fc11cb9990a9377d33eaf3 [Clang] Fix eager skipping in
ParseExpressionList()
(#110133)b38b34c51a115982912256dd940f2e1b794b7d3a [clang] Remove 'PCH' from more diagnostics that were wrong or misleading NFC (#110724)
6afe56732a172d3f2cbd0330b1fcb34bbfd002a9 [clang] Finish implementation of P0522 (#96023)
d1ee9dce2ebad30b3dbc0df4f2a1307f63065b55 [llvm-project][llvm] .gitignore supports filtering folders starting with cmake-build (#110649)
9c868195daf153920272269d2af1c4b62670c4b9 [libc] clean up sprintf macros and float tests (#110759)
4d4beeb43cfdf5c858ced68b541a1e9ef79f4907 [SimplifyCFG] Supporting hoisting/sinking callbases with differing attrs
c42659417faf86aa1ed3a34306764192fcdec05b [SimplifyCFG] Add tests for hoisting/sinking callbases with differing attrs; NFC
948326163c96fcd6957d6c318acf3e49be2b11d2 Revert "[SLP]Add debug counter support"
ccbda38b7025f3bcd404583c5c20a12ec6fb48f4 Revert "[SLP][NFC]Make a test target specific to avoid failures"
c62cb1bf1e6dea19fa42584081bd17226ede2db5 [RISCV][GISel] Stop promoting s32 G_ROTL/ROTR rotate amount to s64 on RV64.
The text was updated successfully, but these errors were encountered: