FlagIncludedChunksPlugin.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const { compareIds } = require("../util/comparators");
  7. /** @typedef {import("../Chunk")} Chunk */
  8. /** @typedef {import("../Chunk").ChunkId} ChunkId */
  9. /** @typedef {import("../Compiler")} Compiler */
  10. /** @typedef {import("../Module")} Module */
  11. const PLUGIN_NAME = "FlagIncludedChunksPlugin";
  12. class FlagIncludedChunksPlugin {
  13. /**
  14. * Apply the plugin
  15. * @param {Compiler} compiler the compiler instance
  16. * @returns {void}
  17. */
  18. apply(compiler) {
  19. compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {
  20. compilation.hooks.optimizeChunkIds.tap(PLUGIN_NAME, (chunks) => {
  21. const chunkGraph = compilation.chunkGraph;
  22. // prepare two bit integers for each module
  23. // 2^31 is the max number represented as SMI in v8
  24. // we want the bits distributed this way:
  25. // the bit 2^31 is pretty rar and only one module should get it
  26. // so it has a probability of 1 / modulesCount
  27. // the first bit (2^0) is the easiest and every module could get it
  28. // if it doesn't get a better bit
  29. // from bit 2^n to 2^(n+1) there is a probability of p
  30. // so 1 / modulesCount == p^31
  31. // <=> p = sqrt31(1 / modulesCount)
  32. // so we use a modulo of 1 / sqrt31(1 / modulesCount)
  33. /** @type {WeakMap<Module, number>} */
  34. const moduleBits = new WeakMap();
  35. const modulesCount = compilation.modules.size;
  36. // precalculate the modulo values for each bit
  37. const modulo = 1 / (1 / modulesCount) ** (1 / 31);
  38. /** @type {number[]} */
  39. const modulos = Array.from(
  40. { length: 31 },
  41. /**
  42. * @param {number} x x
  43. * @param {number} i i
  44. * @returns {number} result
  45. */
  46. (x, i) => (modulo ** i) | 0
  47. );
  48. // iterate all modules to generate bit values
  49. let i = 0;
  50. for (const module of compilation.modules) {
  51. let bit = 30;
  52. while (i % modulos[bit] !== 0) {
  53. bit--;
  54. }
  55. moduleBits.set(module, 1 << bit);
  56. i++;
  57. }
  58. // iterate all chunks to generate bitmaps
  59. /** @type {WeakMap<Chunk, number>} */
  60. const chunkModulesHash = new WeakMap();
  61. for (const chunk of chunks) {
  62. let hash = 0;
  63. for (const module of chunkGraph.getChunkModulesIterable(chunk)) {
  64. hash |= /** @type {number} */ (moduleBits.get(module));
  65. }
  66. chunkModulesHash.set(chunk, hash);
  67. }
  68. for (const chunkA of chunks) {
  69. const chunkAHash =
  70. /** @type {number} */
  71. (chunkModulesHash.get(chunkA));
  72. const chunkAModulesCount = chunkGraph.getNumberOfChunkModules(chunkA);
  73. if (chunkAModulesCount === 0) continue;
  74. /** @type {undefined | Module} */
  75. let bestModule;
  76. for (const module of chunkGraph.getChunkModulesIterable(chunkA)) {
  77. if (
  78. bestModule === undefined ||
  79. chunkGraph.getNumberOfModuleChunks(bestModule) >
  80. chunkGraph.getNumberOfModuleChunks(module)
  81. ) {
  82. bestModule = module;
  83. }
  84. }
  85. loopB: for (const chunkB of chunkGraph.getModuleChunksIterable(
  86. /** @type {Module} */ (bestModule)
  87. )) {
  88. // as we iterate the same iterables twice
  89. // skip if we find ourselves
  90. if (chunkA === chunkB) continue;
  91. const chunkBModulesCount =
  92. chunkGraph.getNumberOfChunkModules(chunkB);
  93. // ids for empty chunks are not included
  94. if (chunkBModulesCount === 0) continue;
  95. // instead of swapping A and B just bail
  96. // as we loop twice the current A will be B and B then A
  97. if (chunkAModulesCount > chunkBModulesCount) continue;
  98. // is chunkA in chunkB?
  99. // we do a cheap check for the hash value
  100. const chunkBHash =
  101. /** @type {number} */
  102. (chunkModulesHash.get(chunkB));
  103. if ((chunkBHash & chunkAHash) !== chunkAHash) continue;
  104. // compare all modules
  105. for (const m of chunkGraph.getChunkModulesIterable(chunkA)) {
  106. if (!chunkGraph.isModuleInChunk(m, chunkB)) continue loopB;
  107. }
  108. /** @type {ChunkId[]} */
  109. (chunkB.ids).push(/** @type {ChunkId} */ (chunkA.id));
  110. // https://github.com/webpack/webpack/issues/18837
  111. /** @type {ChunkId[]} */
  112. (chunkB.ids).sort(compareIds);
  113. }
  114. }
  115. });
  116. });
  117. }
  118. }
  119. module.exports = FlagIncludedChunksPlugin;