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

Side by Side Diff: src/runtime/runtime.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/property-details.h ('k') | src/runtime/runtime-object.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 F(ObjectHasOwnProperty, 2, 1) \ 380 F(ObjectHasOwnProperty, 2, 1) \
381 F(ObjectCreate, 2, 1) \ 381 F(ObjectCreate, 2, 1) \
382 F(InternalSetPrototype, 2, 1) \ 382 F(InternalSetPrototype, 2, 1) \
383 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ 383 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \
384 F(GetProperty, 2, 1) \ 384 F(GetProperty, 2, 1) \
385 F(KeyedGetProperty, 2, 1) \ 385 F(KeyedGetProperty, 2, 1) \
386 F(AddNamedProperty, 4, 1) \ 386 F(AddNamedProperty, 4, 1) \
387 F(SetProperty, 4, 1) \ 387 F(SetProperty, 4, 1) \
388 F(AddElement, 3, 1) \ 388 F(AddElement, 3, 1) \
389 F(AppendElement, 2, 1) \ 389 F(AppendElement, 2, 1) \
390 F(DeleteProperty_Sloppy, 2, 1) \ 390 F(DeleteProperty, 3, 1) \
391 F(DeleteProperty_Strict, 2, 1) \ 391 F(ShrinkPropertyDictionary, 2, 1) \
392 F(HasProperty, 2, 1) \ 392 F(HasProperty, 2, 1) \
393 F(GetOwnPropertyKeys, 2, 1) \ 393 F(GetOwnPropertyKeys, 2, 1) \
394 F(GetInterceptorInfo, 1, 1) \ 394 F(GetInterceptorInfo, 1, 1) \
395 F(ToFastProperties, 1, 1) \ 395 F(ToFastProperties, 1, 1) \
396 F(AllocateHeapNumber, 0, 1) \ 396 F(AllocateHeapNumber, 0, 1) \
397 F(NewObject, 2, 1) \ 397 F(NewObject, 2, 1) \
398 F(FinalizeInstanceSize, 1, 1) \ 398 F(FinalizeInstanceSize, 1, 1) \
399 F(LoadMutableDouble, 2, 1) \ 399 F(LoadMutableDouble, 2, 1) \
400 F(TryMigrateInstance, 1, 1) \ 400 F(TryMigrateInstance, 1, 1) \
401 F(IsJSGlobalProxy, 1, 1) \ 401 F(IsJSGlobalProxy, 1, 1) \
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 kMaybeDeopted = 1 << 3, 845 kMaybeDeopted = 1 << 3,
846 kOptimized = 1 << 4, 846 kOptimized = 1 << 4,
847 kTurboFanned = 1 << 5, 847 kTurboFanned = 1 << 5,
848 kInterpreted = 1 << 6, 848 kInterpreted = 1 << 6,
849 }; 849 };
850 850
851 } // namespace internal 851 } // namespace internal
852 } // namespace v8 852 } // namespace v8
853 853
854 #endif // V8_RUNTIME_RUNTIME_H_ 854 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/property-details.h ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698