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

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

Issue 2810363003: [builtins] Introduce DeleteProperty builtin (Closed)
Patch Set: fix CallableFor not to create handles Created 3 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/builtins/builtins.cc ('k') | src/builtins/builtins-internal-gen.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 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 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_DEFINITIONS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_
6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 \ 236 \
237 /* Built-in functions for Javascript */ \ 237 /* Built-in functions for Javascript */ \
238 /* Special internal builtins */ \ 238 /* Special internal builtins */ \
239 CPP(EmptyFunction) \ 239 CPP(EmptyFunction) \
240 CPP(Illegal) \ 240 CPP(Illegal) \
241 CPP(RestrictedFunctionPropertiesThrower) \ 241 CPP(RestrictedFunctionPropertiesThrower) \
242 CPP(RestrictedStrictArgumentsPropertiesThrower) \ 242 CPP(RestrictedStrictArgumentsPropertiesThrower) \
243 CPP(UnsupportedThrower) \ 243 CPP(UnsupportedThrower) \
244 TFJ(ReturnReceiver, 0) \ 244 TFJ(ReturnReceiver, 0) \
245 \ 245 \
246 TFS(DeleteProperty, kObject, kKey, kLanguageMode) \
247 \
246 /* Array */ \ 248 /* Array */ \
247 ASM(ArrayCode) \ 249 ASM(ArrayCode) \
248 ASM(InternalArrayCode) \ 250 ASM(InternalArrayCode) \
249 CPP(ArrayConcat) \ 251 CPP(ArrayConcat) \
250 /* ES6 #sec-array.isarray */ \ 252 /* ES6 #sec-array.isarray */ \
251 TFJ(ArrayIsArray, 1, kArg) \ 253 TFJ(ArrayIsArray, 1, kArg) \
252 /* ES7 #sec-array.prototype.includes */ \ 254 /* ES7 #sec-array.prototype.includes */ \
253 TFJ(ArrayIncludes, 2, kSearchElement, kFromIndex) \ 255 TFJ(ArrayIncludes, 2, kSearchElement, kFromIndex) \
254 /* ES6 #sec-array.prototype.indexof */ \ 256 /* ES6 #sec-array.prototype.indexof */ \
255 TFJ(ArrayIndexOf, 2, kSearchElement, kFromIndex) \ 257 TFJ(ArrayIndexOf, 2, kSearchElement, kFromIndex) \
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 #define BUILTIN_LIST_TFS(V) \ 1054 #define BUILTIN_LIST_TFS(V) \
1053 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1055 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1054 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1056 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1055 1057
1056 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1058 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1057 1059
1058 } // namespace internal 1060 } // namespace internal
1059 } // namespace v8 1061 } // namespace v8
1060 1062
1061 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1063 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins.cc ('k') | src/builtins/builtins-internal-gen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698