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

Side by Side Diff: src/builtins/builtins.h

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: Created 3 years, 11 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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 TFJ(RegExpPrototypeStickyGetter, 0) \ 686 TFJ(RegExpPrototypeStickyGetter, 0) \
687 TFJ(RegExpPrototypeTest, 1) \ 687 TFJ(RegExpPrototypeTest, 1) \
688 CPP(RegExpPrototypeToString) \ 688 CPP(RegExpPrototypeToString) \
689 TFJ(RegExpPrototypeUnicodeGetter, 0) \ 689 TFJ(RegExpPrototypeUnicodeGetter, 0) \
690 CPP(RegExpRightContextGetter) \ 690 CPP(RegExpRightContextGetter) \
691 \ 691 \
692 /* SharedArrayBuffer */ \ 692 /* SharedArrayBuffer */ \
693 CPP(SharedArrayBufferPrototypeGetByteLength) \ 693 CPP(SharedArrayBufferPrototypeGetByteLength) \
694 TFJ(AtomicsLoad, 2) \ 694 TFJ(AtomicsLoad, 2) \
695 TFJ(AtomicsStore, 3) \ 695 TFJ(AtomicsStore, 3) \
696 TFJ(AtomicsExchange, 3) \
696 \ 697 \
697 /* String */ \ 698 /* String */ \
698 ASM(StringConstructor) \ 699 ASM(StringConstructor) \
699 ASM(StringConstructor_ConstructStub) \ 700 ASM(StringConstructor_ConstructStub) \
700 CPP(StringFromCodePoint) \ 701 CPP(StringFromCodePoint) \
701 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ 702 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \
702 TFJ(StringFromCharCode, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ 703 TFJ(StringFromCharCode, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
703 /* ES6 section 21.1.3.1 String.prototype.charAt ( pos ) */ \ 704 /* ES6 section 21.1.3.1 String.prototype.charAt ( pos ) */ \
704 TFJ(StringPrototypeCharAt, 1) \ 705 TFJ(StringPrototypeCharAt, 1) \
705 /* ES6 section 21.1.3.2 String.prototype.charCodeAt ( pos ) */ \ 706 /* ES6 section 21.1.3.2 String.prototype.charCodeAt ( pos ) */ \
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 914
914 friend class Isolate; 915 friend class Isolate;
915 916
916 DISALLOW_COPY_AND_ASSIGN(Builtins); 917 DISALLOW_COPY_AND_ASSIGN(Builtins);
917 }; 918 };
918 919
919 } // namespace internal 920 } // namespace internal
920 } // namespace v8 921 } // namespace v8
921 922
922 #endif // V8_BUILTINS_BUILTINS_H_ 923 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698