chore_remove_--no-harmony-atomics_related_code.patch 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
  2. From: Shelley Vohr <[email protected]>
  3. Date: Wed, 19 Apr 2023 14:13:23 +0200
  4. Subject: chore: remove --no-harmony-atomics related code
  5. This was removed in https://chromium-review.googlesource.com/c/v8/v8/+/4416459.
  6. This patch can be removed when Node.js upgrades to a version of V8 containing
  7. the above CL.
  8. diff --git a/lib/.eslintrc.yaml b/lib/.eslintrc.yaml
  9. index 74e867ace6207751a96b4da03802b50b620dbd7b..53ceabeb58f56ebd27e60fd49c362d26e361e6d8 100644
  10. --- a/lib/.eslintrc.yaml
  11. +++ b/lib/.eslintrc.yaml
  12. @@ -30,10 +30,6 @@ rules:
  13. message: Use `const { AbortController } = require('internal/abort_controller');` instead of the global.
  14. - name: AbortSignal
  15. message: Use `const { AbortSignal } = require('internal/abort_controller');` instead of the global.
  16. - # Atomics is not available in primordials because it can be
  17. - # disabled with --no-harmony-atomics CLI flag.
  18. - - name: Atomics
  19. - message: Use `const { Atomics } = globalThis;` instead of the global.
  20. - name: Blob
  21. message: Use `const { Blob } = require('buffer');` instead of the global.
  22. - name: BroadcastChannel
  23. diff --git a/lib/internal/main/worker_thread.js b/lib/internal/main/worker_thread.js
  24. index 30f7a5f79e50fdeb4e1775a0e56dafa4c6908898..f7250985277c4127425ef36dff566c1fe06603e2 100644
  25. --- a/lib/internal/main/worker_thread.js
  26. +++ b/lib/internal/main/worker_thread.js
  27. @@ -112,7 +112,7 @@ port.on('message', (message) => {
  28. require('internal/worker').assignEnvironmentData(environmentData);
  29. - if (SharedArrayBuffer !== undefined && Atomics !== undefined) {
  30. + if (SharedArrayBuffer !== undefined) {
  31. // The counter is only passed to the workers created by the main thread,
  32. // not to workers created by other workers.
  33. let cachedCwd = '';
  34. diff --git a/lib/internal/worker.js b/lib/internal/worker.js
  35. index 401bc43550ea7f19847dfd588e3fba0507243905..560f69c6c2de2bd976bcd62cd7ac9c770b838446 100644
  36. --- a/lib/internal/worker.js
  37. +++ b/lib/internal/worker.js
  38. @@ -101,8 +101,7 @@ let cwdCounter;
  39. const environmentData = new SafeMap();
  40. // SharedArrayBuffers can be disabled with --no-harmony-sharedarraybuffer.
  41. -// Atomics can be disabled with --no-harmony-atomics.
  42. -if (isMainThread && SharedArrayBuffer !== undefined && Atomics !== undefined) {
  43. +if (isMainThread && SharedArrayBuffer !== undefined) {
  44. cwdCounter = new Uint32Array(new SharedArrayBuffer(4));
  45. const originalChdir = process.chdir;
  46. process.chdir = function(path) {