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

Unified Diff: src/bootstrapper.cc

Issue 2649703002: [Atomics] Make Atomics.compareExchange a builtin using TF (Closed)
Patch Set: use TF_BUILTIN macro 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 ac3ca994b41838f5558bbb4ba5098381dcc824ab..01feb4737902c413a0da8039ef0896a76c85d417 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -3737,6 +3737,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