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

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

Issue 2649703002: [Atomics] Make Atomics.compareExchange a builtin using TF (Closed)
Patch Set: rebase and move cmpxchg to builtins-sharedarraybuffer-gen.cc 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
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/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 TFJ(RegExpPrototypeReplace, 2) \ 733 TFJ(RegExpPrototypeReplace, 2) \
734 \ 734 \
735 TFS(RegExpSplit, BUILTIN, kNoExtraICState, RegExpSplit, 1) \ 735 TFS(RegExpSplit, BUILTIN, kNoExtraICState, RegExpSplit, 1) \
736 TFJ(RegExpPrototypeSplit, 2) \ 736 TFJ(RegExpPrototypeSplit, 2) \
737 \ 737 \
738 /* SharedArrayBuffer */ \ 738 /* SharedArrayBuffer */ \
739 CPP(SharedArrayBufferPrototypeGetByteLength) \ 739 CPP(SharedArrayBufferPrototypeGetByteLength) \
740 TFJ(AtomicsLoad, 2) \ 740 TFJ(AtomicsLoad, 2) \
741 TFJ(AtomicsStore, 3) \ 741 TFJ(AtomicsStore, 3) \
742 TFJ(AtomicsExchange, 3) \ 742 TFJ(AtomicsExchange, 3) \
743 CPP(AtomicsCompareExchange) \ 743 TFJ(AtomicsCompareExchange, 4) \
744 CPP(AtomicsAdd) \ 744 CPP(AtomicsAdd) \
745 CPP(AtomicsSub) \ 745 CPP(AtomicsSub) \
746 CPP(AtomicsAnd) \ 746 CPP(AtomicsAnd) \
747 CPP(AtomicsOr) \ 747 CPP(AtomicsOr) \
748 CPP(AtomicsXor) \ 748 CPP(AtomicsXor) \
749 CPP(AtomicsIsLockFree) \ 749 CPP(AtomicsIsLockFree) \
750 CPP(AtomicsWait) \ 750 CPP(AtomicsWait) \
751 CPP(AtomicsWake) \ 751 CPP(AtomicsWake) \
752 \ 752 \
753 /* String */ \ 753 /* String */ \
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 1037
1038 friend class Isolate; 1038 friend class Isolate;
1039 1039
1040 DISALLOW_COPY_AND_ASSIGN(Builtins); 1040 DISALLOW_COPY_AND_ASSIGN(Builtins);
1041 }; 1041 };
1042 1042
1043 } // namespace internal 1043 } // namespace internal
1044 } // namespace v8 1044 } // namespace v8
1045 1045
1046 #endif // V8_BUILTINS_BUILTINS_H_ 1046 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins-sharedarraybuffer.cc » ('j') | src/compiler/arm64/code-generator-arm64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698