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

Side by Side Diff: src/objects.h

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: fix win Created 3 years, 10 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 6867 matching lines...) Expand 10 before | Expand all | Expand 10 after
6878 V(Set.prototype, values, SetValues) \ 6878 V(Set.prototype, values, SetValues) \
6879 V(WeakMap.prototype, delete, WeakMapDelete) \ 6879 V(WeakMap.prototype, delete, WeakMapDelete) \
6880 V(WeakMap.prototype, has, WeakMapHas) \ 6880 V(WeakMap.prototype, has, WeakMapHas) \
6881 V(WeakMap.prototype, set, WeakMapSet) \ 6881 V(WeakMap.prototype, set, WeakMapSet) \
6882 V(WeakSet.prototype, add, WeakSetAdd) \ 6882 V(WeakSet.prototype, add, WeakSetAdd) \
6883 V(WeakSet.prototype, delete, WeakSetDelete) \ 6883 V(WeakSet.prototype, delete, WeakSetDelete) \
6884 V(WeakSet.prototype, has, WeakSetHas) 6884 V(WeakSet.prototype, has, WeakSetHas)
6885 6885
6886 #define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \ 6886 #define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \
6887 V(Atomics, load, AtomicsLoad) \ 6887 V(Atomics, load, AtomicsLoad) \
6888 V(Atomics, store, AtomicsStore) 6888 V(Atomics, store, AtomicsStore) \
6889 V(Atomics, exchange, AtomicsExchange)
6889 6890
6890 enum BuiltinFunctionId { 6891 enum BuiltinFunctionId {
6891 kArrayCode, 6892 kArrayCode,
6892 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \ 6893 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \
6893 k##name, 6894 k##name,
6894 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) 6895 FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
6895 ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) 6896 ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
6896 #undef DECLARE_FUNCTION_ID 6897 #undef DECLARE_FUNCTION_ID
6897 // Fake id for a special case of Math.pow. Note, it continues the 6898 // Fake id for a special case of Math.pow. Note, it continues the
6898 // list of math functions. 6899 // list of math functions.
(...skipping 4630 matching lines...) Expand 10 before | Expand all | Expand 10 after
11529 } 11530 }
11530 }; 11531 };
11531 11532
11532 11533
11533 } // NOLINT, false-positive due to second-order macros. 11534 } // NOLINT, false-positive due to second-order macros.
11534 } // NOLINT, false-positive due to second-order macros. 11535 } // NOLINT, false-positive due to second-order macros.
11535 11536
11536 #include "src/objects/object-macros-undef.h" 11537 #include "src/objects/object-macros-undef.h"
11537 11538
11538 #endif // V8_OBJECTS_H_ 11539 #endif // V8_OBJECTS_H_
OLDNEW
« src/compiler/x64/code-generator-x64.cc ('K') | « src/compiler/x64/instruction-selector-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698