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

Side by Side Diff: src/builtins.h

Issue 2137203002: [intrinsics] Remove obsolete intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Really nuke TO_NAME. Created 4 years, 5 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 1
2 // Copyright 2011 the V8 project authors. All rights reserved. 2 // Copyright 2011 the V8 project authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #ifndef V8_BUILTINS_H_ 6 #ifndef V8_BUILTINS_H_
7 #define V8_BUILTINS_H_ 7 #define V8_BUILTINS_H_
8 8
9 #include "src/base/flags.h" 9 #include "src/base/flags.h"
10 #include "src/handles.h" 10 #include "src/handles.h"
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 V(ObjectGetOwnPropertySymbols, BUILTIN_EXIT) \ 138 V(ObjectGetOwnPropertySymbols, BUILTIN_EXIT) \
139 V(ObjectGetPrototypeOf, BUILTIN_EXIT) \ 139 V(ObjectGetPrototypeOf, BUILTIN_EXIT) \
140 V(ObjectIs, BUILTIN_EXIT) \ 140 V(ObjectIs, BUILTIN_EXIT) \
141 V(ObjectIsExtensible, BUILTIN_EXIT) \ 141 V(ObjectIsExtensible, BUILTIN_EXIT) \
142 V(ObjectIsFrozen, BUILTIN_EXIT) \ 142 V(ObjectIsFrozen, BUILTIN_EXIT) \
143 V(ObjectIsSealed, BUILTIN_EXIT) \ 143 V(ObjectIsSealed, BUILTIN_EXIT) \
144 V(ObjectKeys, BUILTIN_EXIT) \ 144 V(ObjectKeys, BUILTIN_EXIT) \
145 V(ObjectLookupGetter, BUILTIN_EXIT) \ 145 V(ObjectLookupGetter, BUILTIN_EXIT) \
146 V(ObjectLookupSetter, BUILTIN_EXIT) \ 146 V(ObjectLookupSetter, BUILTIN_EXIT) \
147 V(ObjectPreventExtensions, BUILTIN_EXIT) \ 147 V(ObjectPreventExtensions, BUILTIN_EXIT) \
148 V(ObjectPrototypePropertyIsEnumerable, BUILTIN_EXIT) \
148 V(ObjectProtoToString, BUILTIN_EXIT) \ 149 V(ObjectProtoToString, BUILTIN_EXIT) \
149 V(ObjectSeal, BUILTIN_EXIT) \ 150 V(ObjectSeal, BUILTIN_EXIT) \
150 V(ObjectValues, BUILTIN_EXIT) \ 151 V(ObjectValues, BUILTIN_EXIT) \
151 \ 152 \
152 V(ProxyConstructor, BUILTIN_EXIT) \ 153 V(ProxyConstructor, BUILTIN_EXIT) \
153 V(ProxyConstructor_ConstructStub, BUILTIN_EXIT) \ 154 V(ProxyConstructor_ConstructStub, BUILTIN_EXIT) \
154 \ 155 \
155 V(ReflectDefineProperty, BUILTIN_EXIT) \ 156 V(ReflectDefineProperty, BUILTIN_EXIT) \
156 V(ReflectDeleteProperty, BUILTIN_EXIT) \ 157 V(ReflectDeleteProperty, BUILTIN_EXIT) \
157 V(ReflectGet, BUILTIN_EXIT) \ 158 V(ReflectGet, BUILTIN_EXIT) \
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 friend class BuiltinFunctionTable; 826 friend class BuiltinFunctionTable;
826 friend class Isolate; 827 friend class Isolate;
827 828
828 DISALLOW_COPY_AND_ASSIGN(Builtins); 829 DISALLOW_COPY_AND_ASSIGN(Builtins);
829 }; 830 };
830 831
831 } // namespace internal 832 } // namespace internal
832 } // namespace v8 833 } // namespace v8
833 834
834 #endif // V8_BUILTINS_H_ 835 #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