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

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

Issue 2606733002: [stubs] Port FastNewObjectStub to TF (Closed)
Patch Set: Review feedback 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
« no previous file with comments | « src/builtins/arm64/builtins-arm64.cc ('k') | src/builtins/builtins-constructor.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_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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 // DBG: Builtin in platform-dependent assembly, used by the debugger. 46 // DBG: Builtin in platform-dependent assembly, used by the debugger.
47 // Args: name 47 // Args: name
48 #define BUILTIN_LIST(CPP, API, TFJ, TFS, ASM, ASH, DBG) \ 48 #define BUILTIN_LIST(CPP, API, TFJ, TFS, ASM, ASH, DBG) \
49 ASM(Abort) \ 49 ASM(Abort) \
50 /* Code aging */ \ 50 /* Code aging */ \
51 CODE_AGE_LIST_WITH_ARG(DECLARE_CODE_AGE_BUILTIN, ASM) \ 51 CODE_AGE_LIST_WITH_ARG(DECLARE_CODE_AGE_BUILTIN, ASM) \
52 \ 52 \
53 /* Declared first for dependency reasons */ \ 53 /* Declared first for dependency reasons */ \
54 ASM(CompileLazy) \ 54 ASM(CompileLazy) \
55 TFS(ToObject, BUILTIN, kNoExtraICState, TypeConversion) \ 55 TFS(ToObject, BUILTIN, kNoExtraICState, TypeConversion) \
56 TFS(FastNewObject, BUILTIN, kNoExtraICState, FastNewObject) \
56 \ 57 \
57 /* Calls */ \ 58 /* Calls */ \
58 ASM(ArgumentsAdaptorTrampoline) \ 59 ASM(ArgumentsAdaptorTrampoline) \
59 /* ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) */ \ 60 /* ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) */ \
60 ASM(CallFunction_ReceiverIsNullOrUndefined) \ 61 ASM(CallFunction_ReceiverIsNullOrUndefined) \
61 ASM(CallFunction_ReceiverIsNotNullOrUndefined) \ 62 ASM(CallFunction_ReceiverIsNotNullOrUndefined) \
62 ASM(CallFunction_ReceiverIsAny) \ 63 ASM(CallFunction_ReceiverIsAny) \
63 ASM(TailCallFunction_ReceiverIsNullOrUndefined) \ 64 ASM(TailCallFunction_ReceiverIsNullOrUndefined) \
64 ASM(TailCallFunction_ReceiverIsNotNullOrUndefined) \ 65 ASM(TailCallFunction_ReceiverIsNotNullOrUndefined) \
65 ASM(TailCallFunction_ReceiverIsAny) \ 66 ASM(TailCallFunction_ReceiverIsAny) \
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 857
857 friend class Isolate; 858 friend class Isolate;
858 859
859 DISALLOW_COPY_AND_ASSIGN(Builtins); 860 DISALLOW_COPY_AND_ASSIGN(Builtins);
860 }; 861 };
861 862
862 } // namespace internal 863 } // namespace internal
863 } // namespace v8 864 } // namespace v8
864 865
865 #endif // V8_BUILTINS_BUILTINS_H_ 866 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/builtins/arm64/builtins-arm64.cc ('k') | src/builtins/builtins-constructor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698