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

Side by Side Diff: src/builtins.h

Issue 1881383003: [Atomics] code stubs for atomic operations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix unused function Created 4 years, 8 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 | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 V(OnStackReplacement, BUILTIN, UNINITIALIZED, kNoExtraICState) \ 296 V(OnStackReplacement, BUILTIN, UNINITIALIZED, kNoExtraICState) \
297 V(InterruptCheck, BUILTIN, UNINITIALIZED, kNoExtraICState) \ 297 V(InterruptCheck, BUILTIN, UNINITIALIZED, kNoExtraICState) \
298 V(StackCheck, BUILTIN, UNINITIALIZED, kNoExtraICState) \ 298 V(StackCheck, BUILTIN, UNINITIALIZED, kNoExtraICState) \
299 \ 299 \
300 V(MarkCodeAsToBeExecutedOnce, BUILTIN, UNINITIALIZED, kNoExtraICState) \ 300 V(MarkCodeAsToBeExecutedOnce, BUILTIN, UNINITIALIZED, kNoExtraICState) \
301 V(MarkCodeAsExecutedOnce, BUILTIN, UNINITIALIZED, kNoExtraICState) \ 301 V(MarkCodeAsExecutedOnce, BUILTIN, UNINITIALIZED, kNoExtraICState) \
302 V(MarkCodeAsExecutedTwice, BUILTIN, UNINITIALIZED, kNoExtraICState) \ 302 V(MarkCodeAsExecutedTwice, BUILTIN, UNINITIALIZED, kNoExtraICState) \
303 CODE_AGE_LIST_WITH_ARG(DECLARE_CODE_AGE_BUILTIN, V) 303 CODE_AGE_LIST_WITH_ARG(DECLARE_CODE_AGE_BUILTIN, V)
304 304
305 // Define list of builtins implemented in TurboFan (with JS linkage). 305 // Define list of builtins implemented in TurboFan (with JS linkage).
306 #define BUILTIN_LIST_T(V) \ 306 #define BUILTIN_LIST_T(V) \
307 V(GeneratorPrototypeNext, 2) \ 307 V(GeneratorPrototypeNext, 2) \
308 V(GeneratorPrototypeReturn, 2) \ 308 V(GeneratorPrototypeReturn, 2) \
309 V(GeneratorPrototypeThrow, 2) \ 309 V(GeneratorPrototypeThrow, 2) \
310 V(MathCeil, 2) \ 310 V(MathCeil, 2) \
311 V(MathClz32, 2) \ 311 V(MathClz32, 2) \
312 V(MathFloor, 2) \ 312 V(MathFloor, 2) \
313 V(MathRound, 2) \ 313 V(MathRound, 2) \
314 V(MathSqrt, 2) \ 314 V(MathSqrt, 2) \
315 V(MathTrunc, 2) \ 315 V(MathTrunc, 2) \
316 V(ObjectHasOwnProperty, 2) \ 316 V(ObjectHasOwnProperty, 2) \
317 V(StringPrototypeCharAt, 2) \ 317 V(StringPrototypeCharAt, 2) \
318 V(StringPrototypeCharCodeAt, 2) 318 V(StringPrototypeCharCodeAt, 2) \
319 V(AtomicsLoadCheck, 3)
319 320
320 // Define list of builtin handlers implemented in assembly. 321 // Define list of builtin handlers implemented in assembly.
321 #define BUILTIN_LIST_H(V) \ 322 #define BUILTIN_LIST_H(V) \
322 V(LoadIC_Slow, LOAD_IC) \ 323 V(LoadIC_Slow, LOAD_IC) \
323 V(KeyedLoadIC_Slow, KEYED_LOAD_IC) \ 324 V(KeyedLoadIC_Slow, KEYED_LOAD_IC) \
324 V(StoreIC_Slow, STORE_IC) \ 325 V(StoreIC_Slow, STORE_IC) \
325 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ 326 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \
326 V(LoadIC_Normal, LOAD_IC) \ 327 V(LoadIC_Normal, LOAD_IC) \
327 V(StoreIC_Normal, STORE_IC) 328 V(StoreIC_Normal, STORE_IC)
328 329
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 MacroAssembler* masm); \ 667 MacroAssembler* masm); \
667 static void Generate_Make##C##CodeYoungAgainOddMarking( \ 668 static void Generate_Make##C##CodeYoungAgainOddMarking( \
668 MacroAssembler* masm); 669 MacroAssembler* masm);
669 CODE_AGE_LIST(DECLARE_CODE_AGE_BUILTIN_GENERATOR) 670 CODE_AGE_LIST(DECLARE_CODE_AGE_BUILTIN_GENERATOR)
670 #undef DECLARE_CODE_AGE_BUILTIN_GENERATOR 671 #undef DECLARE_CODE_AGE_BUILTIN_GENERATOR
671 672
672 static void Generate_MarkCodeAsToBeExecutedOnce(MacroAssembler* masm); 673 static void Generate_MarkCodeAsToBeExecutedOnce(MacroAssembler* masm);
673 static void Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm); 674 static void Generate_MarkCodeAsExecutedOnce(MacroAssembler* masm);
674 static void Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm); 675 static void Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm);
675 676
677 static void Generate_AtomicsLoadCheck(compiler::CodeStubAssembler* assembler);
678
676 static void InitBuiltinFunctionTable(); 679 static void InitBuiltinFunctionTable();
677 680
678 bool initialized_; 681 bool initialized_;
679 682
680 friend class BuiltinFunctionTable; 683 friend class BuiltinFunctionTable;
681 friend class Isolate; 684 friend class Isolate;
682 685
683 DISALLOW_COPY_AND_ASSIGN(Builtins); 686 DISALLOW_COPY_AND_ASSIGN(Builtins);
684 }; 687 };
685 688
686 } // namespace internal 689 } // namespace internal
687 } // namespace v8 690 } // namespace v8
688 691
689 #endif // V8_BUILTINS_H_ 692 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698