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

Side by Side Diff: src/compiler/effect-control-linearizer.h

Issue 2639883002: [turbofan] Add Receiver feedback for abstract/strict equality. (Closed)
Patch Set: Created 3 years, 11 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/compiler/effect-control-linearizer.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_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ 5 #ifndef V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_
6 #define V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ 6 #define V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_
7 7
8 #include "src/compiler/common-operator.h" 8 #include "src/compiler/common-operator.h"
9 #include "src/compiler/graph-assembler.h" 9 #include "src/compiler/graph-assembler.h"
10 #include "src/compiler/node.h" 10 #include "src/compiler/node.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 Node* LowerChangeFloat64ToTagged(Node* node); 48 Node* LowerChangeFloat64ToTagged(Node* node);
49 Node* LowerChangeFloat64ToTaggedPointer(Node* node); 49 Node* LowerChangeFloat64ToTaggedPointer(Node* node);
50 Node* LowerChangeTaggedSignedToInt32(Node* node); 50 Node* LowerChangeTaggedSignedToInt32(Node* node);
51 Node* LowerChangeTaggedToBit(Node* node); 51 Node* LowerChangeTaggedToBit(Node* node);
52 Node* LowerChangeTaggedToInt32(Node* node); 52 Node* LowerChangeTaggedToInt32(Node* node);
53 Node* LowerChangeTaggedToUint32(Node* node); 53 Node* LowerChangeTaggedToUint32(Node* node);
54 Node* LowerCheckBounds(Node* node, Node* frame_state); 54 Node* LowerCheckBounds(Node* node, Node* frame_state);
55 Node* LowerCheckInternalizedString(Node* node, Node* frame_state); 55 Node* LowerCheckInternalizedString(Node* node, Node* frame_state);
56 Node* LowerCheckMaps(Node* node, Node* frame_state); 56 Node* LowerCheckMaps(Node* node, Node* frame_state);
57 Node* LowerCheckNumber(Node* node, Node* frame_state); 57 Node* LowerCheckNumber(Node* node, Node* frame_state);
58 Node* LowerCheckReceiver(Node* node, Node* frame_state);
58 Node* LowerCheckString(Node* node, Node* frame_state); 59 Node* LowerCheckString(Node* node, Node* frame_state);
59 Node* LowerCheckIf(Node* node, Node* frame_state); 60 Node* LowerCheckIf(Node* node, Node* frame_state);
60 Node* LowerCheckedInt32Add(Node* node, Node* frame_state); 61 Node* LowerCheckedInt32Add(Node* node, Node* frame_state);
61 Node* LowerCheckedInt32Sub(Node* node, Node* frame_state); 62 Node* LowerCheckedInt32Sub(Node* node, Node* frame_state);
62 Node* LowerCheckedInt32Div(Node* node, Node* frame_state); 63 Node* LowerCheckedInt32Div(Node* node, Node* frame_state);
63 Node* LowerCheckedInt32Mod(Node* node, Node* frame_state); 64 Node* LowerCheckedInt32Mod(Node* node, Node* frame_state);
64 Node* LowerCheckedUint32Div(Node* node, Node* frame_state); 65 Node* LowerCheckedUint32Div(Node* node, Node* frame_state);
65 Node* LowerCheckedUint32Mod(Node* node, Node* frame_state); 66 Node* LowerCheckedUint32Mod(Node* node, Node* frame_state);
66 Node* LowerCheckedInt32Mul(Node* node, Node* frame_state); 67 Node* LowerCheckedInt32Mul(Node* node, Node* frame_state);
67 Node* LowerCheckedInt32ToTaggedSigned(Node* node, Node* frame_state); 68 Node* LowerCheckedInt32ToTaggedSigned(Node* node, Node* frame_state);
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 RegionObservability region_observability_ = RegionObservability::kObservable; 148 RegionObservability region_observability_ = RegionObservability::kObservable;
148 SourcePositionTable* source_positions_; 149 SourcePositionTable* source_positions_;
149 GraphAssembler graph_assembler_; 150 GraphAssembler graph_assembler_;
150 }; 151 };
151 152
152 } // namespace compiler 153 } // namespace compiler
153 } // namespace internal 154 } // namespace internal
154 } // namespace v8 155 } // namespace v8
155 156
156 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ 157 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/effect-control-linearizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698