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

Side by Side Diff: src/builtins.h

Issue 1489323002: [builtins] Remove some (now) unused code from C++ builtin adaptor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address feedback. Created 5 years 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/arm64/builtins-arm64.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/handles.h" 8 #include "src/handles.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 V(ReflectGetOwnPropertyDescriptor, NO_EXTRA_ARGUMENTS) \ 65 V(ReflectGetOwnPropertyDescriptor, NO_EXTRA_ARGUMENTS) \
66 V(ReflectGetPrototypeOf, NO_EXTRA_ARGUMENTS) \ 66 V(ReflectGetPrototypeOf, NO_EXTRA_ARGUMENTS) \
67 V(ReflectHas, NO_EXTRA_ARGUMENTS) \ 67 V(ReflectHas, NO_EXTRA_ARGUMENTS) \
68 V(ReflectIsExtensible, NO_EXTRA_ARGUMENTS) \ 68 V(ReflectIsExtensible, NO_EXTRA_ARGUMENTS) \
69 V(ReflectOwnKeys, NO_EXTRA_ARGUMENTS) \ 69 V(ReflectOwnKeys, NO_EXTRA_ARGUMENTS) \
70 V(ReflectPreventExtensions, NO_EXTRA_ARGUMENTS) \ 70 V(ReflectPreventExtensions, NO_EXTRA_ARGUMENTS) \
71 V(ReflectSet, NO_EXTRA_ARGUMENTS) \ 71 V(ReflectSet, NO_EXTRA_ARGUMENTS) \
72 V(ReflectSetPrototypeOf, NO_EXTRA_ARGUMENTS) \ 72 V(ReflectSetPrototypeOf, NO_EXTRA_ARGUMENTS) \
73 \ 73 \
74 V(SymbolConstructor, NO_EXTRA_ARGUMENTS) \ 74 V(SymbolConstructor, NO_EXTRA_ARGUMENTS) \
75 V(SymbolConstructor_ConstructStub, NO_EXTRA_ARGUMENTS) \ 75 V(SymbolConstructor_ConstructStub, NEEDS_CALLED_FUNCTION) \
76 \ 76 \
77 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \ 77 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \
78 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \ 78 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \
79 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \ 79 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \
80 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \ 80 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \
81 \ 81 \
82 V(RestrictedFunctionPropertiesThrower, NO_EXTRA_ARGUMENTS) \ 82 V(RestrictedFunctionPropertiesThrower, NO_EXTRA_ARGUMENTS) \
83 V(RestrictedStrictArgumentsPropertiesThrower, NO_EXTRA_ARGUMENTS) 83 V(RestrictedStrictArgumentsPropertiesThrower, NO_EXTRA_ARGUMENTS)
84 84
85 // Define list of builtins implemented in assembly. 85 // Define list of builtins implemented in assembly.
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 friend class BuiltinFunctionTable; 376 friend class BuiltinFunctionTable;
377 friend class Isolate; 377 friend class Isolate;
378 378
379 DISALLOW_COPY_AND_ASSIGN(Builtins); 379 DISALLOW_COPY_AND_ASSIGN(Builtins);
380 }; 380 };
381 381
382 } // namespace internal 382 } // namespace internal
383 } // namespace v8 383 } // namespace v8
384 384
385 #endif // V8_BUILTINS_H_ 385 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698