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

Side by Side Diff: src/code-stub-assembler.h

Issue 2733563002: [ic] Inline LoadIC into LdaNamedProperty bytecode handler (Closed)
Patch Set: Remove LoadFeedbackSlot Created 3 years, 9 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-factory.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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 Node* IsSpecialReceiverInstanceType(Node* instance_type); 690 Node* IsSpecialReceiverInstanceType(Node* instance_type);
691 Node* IsStringInstanceType(Node* instance_type); 691 Node* IsStringInstanceType(Node* instance_type);
692 Node* IsString(Node* object); 692 Node* IsString(Node* object);
693 Node* IsJSObject(Node* object); 693 Node* IsJSObject(Node* object);
694 Node* IsJSGlobalProxy(Node* object); 694 Node* IsJSGlobalProxy(Node* object);
695 Node* IsJSReceiverInstanceType(Node* instance_type); 695 Node* IsJSReceiverInstanceType(Node* instance_type);
696 Node* IsJSReceiver(Node* object); 696 Node* IsJSReceiver(Node* object);
697 Node* IsJSReceiverMap(Node* map); 697 Node* IsJSReceiverMap(Node* map);
698 Node* IsMap(Node* object); 698 Node* IsMap(Node* object);
699 Node* IsCallableMap(Node* map); 699 Node* IsCallableMap(Node* map);
700 Node* IsDeprecatedMap(Node* map);
700 Node* IsCallable(Node* object); 701 Node* IsCallable(Node* object);
701 Node* IsBoolean(Node* object); 702 Node* IsBoolean(Node* object);
702 Node* IsHeapNumber(Node* object); 703 Node* IsHeapNumber(Node* object);
703 Node* IsName(Node* object); 704 Node* IsName(Node* object);
704 Node* IsSymbol(Node* object); 705 Node* IsSymbol(Node* object);
705 Node* IsPrivateSymbol(Node* object); 706 Node* IsPrivateSymbol(Node* object);
706 Node* IsJSValue(Node* object); 707 Node* IsJSValue(Node* object);
707 Node* IsJSArray(Node* object); 708 Node* IsJSArray(Node* object);
708 Node* IsNativeContext(Node* object); 709 Node* IsNativeContext(Node* object);
709 Node* IsWeakCell(Node* object); 710 Node* IsWeakCell(Node* object);
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
1422 } 1423 }
1423 #else 1424 #else
1424 #define CSA_SLOW_ASSERT(csa, x) ((void)0) 1425 #define CSA_SLOW_ASSERT(csa, x) ((void)0)
1425 #endif 1426 #endif
1426 1427
1427 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); 1428 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags);
1428 1429
1429 } // namespace internal 1430 } // namespace internal
1430 } // namespace v8 1431 } // namespace v8
1431 #endif // V8_CODE_STUB_ASSEMBLER_H_ 1432 #endif // V8_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/code-factory.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698