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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/builtins/builtins.h » ('j') | src/builtins/builtins-sharedarraybuffer.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/bootstrapper.h" 5 #include "src/bootstrapper.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api-natives.h" 8 #include "src/api-natives.h"
9 #include "src/base/ieee754.h" 9 #include "src/base/ieee754.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 3711 matching lines...) Expand 10 before | Expand all | Expand 10 after
3722 DCHECK(atomics_object->IsJSObject()); 3722 DCHECK(atomics_object->IsJSObject());
3723 JSObject::AddProperty(global, name, atomics_object, DONT_ENUM); 3723 JSObject::AddProperty(global, name, atomics_object, DONT_ENUM);
3724 3724
3725 SimpleInstallFunction(atomics_object, factory->InternalizeUtf8String("load"), 3725 SimpleInstallFunction(atomics_object, factory->InternalizeUtf8String("load"),
3726 Builtins::kAtomicsLoad, 2, true); 3726 Builtins::kAtomicsLoad, 2, true);
3727 SimpleInstallFunction(atomics_object, factory->InternalizeUtf8String("store"), 3727 SimpleInstallFunction(atomics_object, factory->InternalizeUtf8String("store"),
3728 Builtins::kAtomicsStore, 3, true); 3728 Builtins::kAtomicsStore, 3, true);
3729 SimpleInstallFunction(atomics_object, 3729 SimpleInstallFunction(atomics_object,
3730 factory->InternalizeUtf8String("exchange"), 3730 factory->InternalizeUtf8String("exchange"),
3731 Builtins::kAtomicsExchange, 3, true); 3731 Builtins::kAtomicsExchange, 3, true);
3732 SimpleInstallFunction(atomics_object,
3733 factory->InternalizeUtf8String("compareExchange"),
3734 Builtins::kAtomicsCompareExchange, 4, true);
3732 } 3735 }
3733 3736
3734 void Genesis::InitializeGlobal_harmony_array_prototype_values() { 3737 void Genesis::InitializeGlobal_harmony_array_prototype_values() {
3735 if (!FLAG_harmony_array_prototype_values) return; 3738 if (!FLAG_harmony_array_prototype_values) return;
3736 Handle<JSFunction> array_constructor(native_context()->array_function()); 3739 Handle<JSFunction> array_constructor(native_context()->array_function());
3737 Handle<JSObject> array_prototype( 3740 Handle<JSObject> array_prototype(
3738 JSObject::cast(array_constructor->instance_prototype())); 3741 JSObject::cast(array_constructor->instance_prototype()));
3739 Handle<Object> values_iterator = 3742 Handle<Object> values_iterator =
3740 JSObject::GetProperty(array_prototype, factory()->iterator_symbol()) 3743 JSObject::GetProperty(array_prototype, factory()->iterator_symbol())
3741 .ToHandleChecked(); 3744 .ToHandleChecked();
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after
5121 } 5124 }
5122 5125
5123 5126
5124 // Called when the top-level V8 mutex is destroyed. 5127 // Called when the top-level V8 mutex is destroyed.
5125 void Bootstrapper::FreeThreadResources() { 5128 void Bootstrapper::FreeThreadResources() {
5126 DCHECK(!IsActive()); 5129 DCHECK(!IsActive());
5127 } 5130 }
5128 5131
5129 } // namespace internal 5132 } // namespace internal
5130 } // namespace v8 5133 } // namespace v8
OLDNEW
« 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