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

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

Issue 2666283002: [turbofan] Constant propagation for JumpIfFalse/JumpIfTrue. (Closed)
Patch Set: REBASE Created 3 years, 10 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 | « no previous file | 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 Node* IsSpecialReceiverMap(Node* map); 678 Node* IsSpecialReceiverMap(Node* map);
679 Node* IsSpecialReceiverInstanceType(Node* instance_type); 679 Node* IsSpecialReceiverInstanceType(Node* instance_type);
680 Node* IsStringInstanceType(Node* instance_type); 680 Node* IsStringInstanceType(Node* instance_type);
681 Node* IsString(Node* object); 681 Node* IsString(Node* object);
682 Node* IsJSObject(Node* object); 682 Node* IsJSObject(Node* object);
683 Node* IsJSGlobalProxy(Node* object); 683 Node* IsJSGlobalProxy(Node* object);
684 Node* IsJSReceiverInstanceType(Node* instance_type); 684 Node* IsJSReceiverInstanceType(Node* instance_type);
685 Node* IsJSReceiver(Node* object); 685 Node* IsJSReceiver(Node* object);
686 Node* IsMap(Node* object); 686 Node* IsMap(Node* object);
687 Node* IsCallableMap(Node* map); 687 Node* IsCallableMap(Node* map);
688 Node* IsBoolean(Node* object);
688 Node* IsName(Node* object); 689 Node* IsName(Node* object);
689 Node* IsSymbol(Node* object); 690 Node* IsSymbol(Node* object);
690 Node* IsPrivateSymbol(Node* object); 691 Node* IsPrivateSymbol(Node* object);
691 Node* IsJSValue(Node* object); 692 Node* IsJSValue(Node* object);
692 Node* IsJSArray(Node* object); 693 Node* IsJSArray(Node* object);
693 Node* IsNativeContext(Node* object); 694 Node* IsNativeContext(Node* object);
694 Node* IsWeakCell(Node* object); 695 Node* IsWeakCell(Node* object);
695 Node* IsFixedDoubleArray(Node* object); 696 Node* IsFixedDoubleArray(Node* object);
696 Node* IsHashTable(Node* object); 697 Node* IsHashTable(Node* object);
697 Node* IsDictionary(Node* object); 698 Node* IsDictionary(Node* object);
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
1318 } 1319 }
1319 #else 1320 #else
1320 #define CSA_SLOW_ASSERT(csa, x) ((void)0) 1321 #define CSA_SLOW_ASSERT(csa, x) ((void)0)
1321 #endif 1322 #endif
1322 1323
1323 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); 1324 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags);
1324 1325
1325 } // namespace internal 1326 } // namespace internal
1326 } // namespace v8 1327 } // namespace v8
1327 #endif // V8_CODE_STUB_ASSEMBLER_H_ 1328 #endif // V8_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698