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

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

Issue 2763533002: [WIP] JSForInLowering and JSForInHasOwnProperty.
Patch Set: Hack around the issue with indices not being available always. 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/compiler/access-builder.cc ('k') | 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 Node* LowerStringLessThanOrEqual(Node* node); 104 Node* LowerStringLessThanOrEqual(Node* node);
105 Node* LowerCheckFloat64Hole(Node* node, Node* frame_state); 105 Node* LowerCheckFloat64Hole(Node* node, Node* frame_state);
106 Node* LowerCheckTaggedHole(Node* node, Node* frame_state); 106 Node* LowerCheckTaggedHole(Node* node, Node* frame_state);
107 Node* LowerConvertTaggedHoleToUndefined(Node* node); 107 Node* LowerConvertTaggedHoleToUndefined(Node* node);
108 Node* LowerPlainPrimitiveToNumber(Node* node); 108 Node* LowerPlainPrimitiveToNumber(Node* node);
109 Node* LowerPlainPrimitiveToWord32(Node* node); 109 Node* LowerPlainPrimitiveToWord32(Node* node);
110 Node* LowerPlainPrimitiveToFloat64(Node* node); 110 Node* LowerPlainPrimitiveToFloat64(Node* node);
111 Node* LowerEnsureWritableFastElements(Node* node); 111 Node* LowerEnsureWritableFastElements(Node* node);
112 Node* LowerMaybeGrowFastElements(Node* node, Node* frame_state); 112 Node* LowerMaybeGrowFastElements(Node* node, Node* frame_state);
113 void LowerTransitionElementsKind(Node* node); 113 void LowerTransitionElementsKind(Node* node);
114 Node* LowerLoadFieldByIndex(Node* node);
114 Node* LowerLoadTypedElement(Node* node); 115 Node* LowerLoadTypedElement(Node* node);
115 void LowerStoreTypedElement(Node* node); 116 void LowerStoreTypedElement(Node* node);
116 117
117 // Lowering of optional operators. 118 // Lowering of optional operators.
118 Maybe<Node*> LowerFloat64RoundUp(Node* node); 119 Maybe<Node*> LowerFloat64RoundUp(Node* node);
119 Maybe<Node*> LowerFloat64RoundDown(Node* node); 120 Maybe<Node*> LowerFloat64RoundDown(Node* node);
120 Maybe<Node*> LowerFloat64RoundTiesEven(Node* node); 121 Maybe<Node*> LowerFloat64RoundTiesEven(Node* node);
121 Maybe<Node*> LowerFloat64RoundTruncate(Node* node); 122 Maybe<Node*> LowerFloat64RoundTruncate(Node* node);
122 123
123 Node* AllocateHeapNumberWithValue(Node* node); 124 Node* AllocateHeapNumberWithValue(Node* node);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 RegionObservability region_observability_ = RegionObservability::kObservable; 156 RegionObservability region_observability_ = RegionObservability::kObservable;
156 SourcePositionTable* source_positions_; 157 SourcePositionTable* source_positions_;
157 GraphAssembler graph_assembler_; 158 GraphAssembler graph_assembler_;
158 }; 159 };
159 160
160 } // namespace compiler 161 } // namespace compiler
161 } // namespace internal 162 } // namespace internal
162 } // namespace v8 163 } // namespace v8
163 164
164 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ 165 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_
OLDNEW
« no previous file with comments | « src/compiler/access-builder.cc ('k') | src/compiler/effect-control-linearizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698