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

Side by Side Diff: src/builtins.h

Issue 1266013006: [stubs] Unify (and optimize) implementation of ToObject. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add missing support for %_ToObject in TurboFan and Crankshaft. Created 5 years, 4 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/code-factory.h » ('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 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 V(SAR_STRONG, 1) \ 175 V(SAR_STRONG, 1) \
176 V(SHR, 1) \ 176 V(SHR, 1) \
177 V(SHR_STRONG, 1) \ 177 V(SHR_STRONG, 1) \
178 V(DELETE, 2) \ 178 V(DELETE, 2) \
179 V(IN, 1) \ 179 V(IN, 1) \
180 V(INSTANCE_OF, 1) \ 180 V(INSTANCE_OF, 1) \
181 V(CALL_NON_FUNCTION, 0) \ 181 V(CALL_NON_FUNCTION, 0) \
182 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ 182 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \
183 V(CALL_FUNCTION_PROXY, 1) \ 183 V(CALL_FUNCTION_PROXY, 1) \
184 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ 184 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \
185 V(TO_OBJECT, 0) \
186 V(TO_NUMBER, 0) \ 185 V(TO_NUMBER, 0) \
187 V(TO_STRING, 0) \ 186 V(TO_STRING, 0) \
188 V(TO_NAME, 0) \ 187 V(TO_NAME, 0) \
189 V(STRING_ADD_LEFT, 1) \ 188 V(STRING_ADD_LEFT, 1) \
190 V(STRING_ADD_LEFT_STRONG, 1) \ 189 V(STRING_ADD_LEFT_STRONG, 1) \
191 V(STRING_ADD_RIGHT, 1) \ 190 V(STRING_ADD_RIGHT, 1) \
192 V(STRING_ADD_RIGHT_STRONG, 1) \ 191 V(STRING_ADD_RIGHT_STRONG, 1) \
193 V(APPLY_PREPARE, 1) \ 192 V(APPLY_PREPARE, 1) \
194 V(REFLECT_APPLY_PREPARE, 1) \ 193 V(REFLECT_APPLY_PREPARE, 1) \
195 V(REFLECT_CONSTRUCT_PREPARE, 2) \ 194 V(REFLECT_CONSTRUCT_PREPARE, 2) \
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 348
350 friend class BuiltinFunctionTable; 349 friend class BuiltinFunctionTable;
351 friend class Isolate; 350 friend class Isolate;
352 351
353 DISALLOW_COPY_AND_ASSIGN(Builtins); 352 DISALLOW_COPY_AND_ASSIGN(Builtins);
354 }; 353 };
355 354
356 } } // namespace v8::internal 355 } } // namespace v8::internal
357 356
358 #endif // V8_BUILTINS_H_ 357 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/code-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698