Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: src/bootstrapper.cc

Issue 2649703002: [Atomics] Make Atomics.compareExchange a builtin using TF (Closed)
Patch Set: PPC and S390 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/builtins/builtins.h » ('j') | src/builtins/builtins-sharedarraybuffer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/bootstrapper.cc
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index f76aa35bbea0674adbc27d5b3da24a21c7fae67d..2c62a6618cf553808387cc3789c61f00ee29471d 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -3729,6 +3729,9 @@ void Genesis::InitializeGlobal_harmony_sharedarraybuffer() {
SimpleInstallFunction(atomics_object,
factory->InternalizeUtf8String("exchange"),
Builtins::kAtomicsExchange, 3, true);
+ SimpleInstallFunction(atomics_object,
+ factory->InternalizeUtf8String("compareExchange"),
+ Builtins::kAtomicsCompareExchange, 4, true);
}
void Genesis::InitializeGlobal_harmony_array_prototype_values() {
« no previous file with comments | « no previous file | src/builtins/builtins.h » ('j') | src/builtins/builtins-sharedarraybuffer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698