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

Side by Side Diff: src/runtime/runtime.h

Issue 2853393002: [builtins] Migrate Object.keys to CodeStubAssembler builtin. (Closed)
Patch Set: Really fix the test, meh. Created 3 years, 7 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/code-stub-assembler.cc ('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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 F(NumberToSmi, 1, 1) \ 384 F(NumberToSmi, 1, 1) \
385 F(SmiLexicographicCompare, 2, 1) \ 385 F(SmiLexicographicCompare, 2, 1) \
386 F(MaxSmi, 0, 1) \ 386 F(MaxSmi, 0, 1) \
387 F(IsSmi, 1, 1) \ 387 F(IsSmi, 1, 1) \
388 F(GetHoleNaNUpper, 0, 1) \ 388 F(GetHoleNaNUpper, 0, 1) \
389 F(GetHoleNaNLower, 0, 1) 389 F(GetHoleNaNLower, 0, 1)
390 390
391 #define FOR_EACH_INTRINSIC_OBJECT(F) \ 391 #define FOR_EACH_INTRINSIC_OBJECT(F) \
392 F(AddDictionaryProperty, 3, 1) \ 392 F(AddDictionaryProperty, 3, 1) \
393 F(GetPrototype, 1, 1) \ 393 F(GetPrototype, 1, 1) \
394 F(ObjectKeys, 1, 1) \
394 F(ObjectHasOwnProperty, 2, 1) \ 395 F(ObjectHasOwnProperty, 2, 1) \
395 F(ObjectCreate, 2, 1) \ 396 F(ObjectCreate, 2, 1) \
396 F(InternalSetPrototype, 2, 1) \ 397 F(InternalSetPrototype, 2, 1) \
397 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ 398 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \
398 F(GetProperty, 2, 1) \ 399 F(GetProperty, 2, 1) \
399 F(KeyedGetProperty, 2, 1) \ 400 F(KeyedGetProperty, 2, 1) \
400 F(AddNamedProperty, 4, 1) \ 401 F(AddNamedProperty, 4, 1) \
401 F(SetProperty, 4, 1) \ 402 F(SetProperty, 4, 1) \
402 F(AddElement, 3, 1) \ 403 F(AddElement, 3, 1) \
403 F(AppendElement, 2, 1) \ 404 F(AppendElement, 2, 1) \
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 kMaybeDeopted = 1 << 3, 858 kMaybeDeopted = 1 << 3,
858 kOptimized = 1 << 4, 859 kOptimized = 1 << 4,
859 kTurboFanned = 1 << 5, 860 kTurboFanned = 1 << 5,
860 kInterpreted = 1 << 6, 861 kInterpreted = 1 << 6,
861 }; 862 };
862 863
863 } // namespace internal 864 } // namespace internal
864 } // namespace v8 865 } // namespace v8
865 866
866 #endif // V8_RUNTIME_RUNTIME_H_ 867 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698