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

Side by Side Diff: src/code-stub-assembler.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/builtins/builtins-object-gen.cc ('k') | src/code-stub-assembler.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_CODE_STUB_ASSEMBLER_H_ 5 #ifndef V8_CODE_STUB_ASSEMBLER_H_
6 #define V8_CODE_STUB_ASSEMBLER_H_ 6 #define V8_CODE_STUB_ASSEMBLER_H_
7 7
8 #include <functional> 8 #include <functional>
9 9
10 #include "src/compiler/code-assembler.h" 10 #include "src/compiler/code-assembler.h"
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 Node* IsSpecialReceiverMap(Node* map); 736 Node* IsSpecialReceiverMap(Node* map);
737 Node* IsSpecialReceiverInstanceType(Node* instance_type); 737 Node* IsSpecialReceiverInstanceType(Node* instance_type);
738 Node* IsStringInstanceType(Node* instance_type); 738 Node* IsStringInstanceType(Node* instance_type);
739 Node* IsOneByteStringInstanceType(Node* instance_type); 739 Node* IsOneByteStringInstanceType(Node* instance_type);
740 Node* IsExternalStringInstanceType(Node* instance_type); 740 Node* IsExternalStringInstanceType(Node* instance_type);
741 Node* IsShortExternalStringInstanceType(Node* instance_type); 741 Node* IsShortExternalStringInstanceType(Node* instance_type);
742 Node* IsSequentialStringInstanceType(Node* instance_type); 742 Node* IsSequentialStringInstanceType(Node* instance_type);
743 Node* IsConsStringInstanceType(Node* instance_type); 743 Node* IsConsStringInstanceType(Node* instance_type);
744 Node* IsIndirectStringInstanceType(Node* instance_type); 744 Node* IsIndirectStringInstanceType(Node* instance_type);
745 Node* IsString(Node* object); 745 Node* IsString(Node* object);
746 Node* IsJSObjectMap(Node* map);
746 Node* IsJSObject(Node* object); 747 Node* IsJSObject(Node* object);
747 Node* IsJSGlobalProxy(Node* object); 748 Node* IsJSGlobalProxy(Node* object);
748 Node* IsJSReceiverInstanceType(Node* instance_type); 749 Node* IsJSReceiverInstanceType(Node* instance_type);
749 Node* IsJSReceiver(Node* object); 750 Node* IsJSReceiver(Node* object);
750 Node* IsJSReceiverMap(Node* map); 751 Node* IsJSReceiverMap(Node* map);
751 Node* IsMap(Node* object); 752 Node* IsMap(Node* object);
752 Node* IsCallableMap(Node* map); 753 Node* IsCallableMap(Node* map);
753 Node* IsDeprecatedMap(Node* map); 754 Node* IsDeprecatedMap(Node* map);
754 Node* IsCallable(Node* object); 755 Node* IsCallable(Node* object);
755 Node* IsBoolean(Node* object); 756 Node* IsBoolean(Node* object);
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 } 1629 }
1629 #else 1630 #else
1630 #define CSA_SLOW_ASSERT(csa, x) ((void)0) 1631 #define CSA_SLOW_ASSERT(csa, x) ((void)0)
1631 #endif 1632 #endif
1632 1633
1633 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); 1634 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags);
1634 1635
1635 } // namespace internal 1636 } // namespace internal
1636 } // namespace v8 1637 } // namespace v8
1637 #endif // V8_CODE_STUB_ASSEMBLER_H_ 1638 #endif // V8_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-object-gen.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698