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

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

Issue 2519943002: Version 5.7.4.1 (cherry-pick) (Closed)
Patch Set: Created 4 years 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-info.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/node.h" 9 #include "src/compiler/node.h"
10 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 ValueEffectControl LowerEnsureWritableFastElements(Node* node, Node* effect, 171 ValueEffectControl LowerEnsureWritableFastElements(Node* node, Node* effect,
172 Node* control); 172 Node* control);
173 ValueEffectControl LowerMaybeGrowFastElements(Node* node, Node* frame_state, 173 ValueEffectControl LowerMaybeGrowFastElements(Node* node, Node* frame_state,
174 Node* effect, Node* control); 174 Node* effect, Node* control);
175 ValueEffectControl LowerTransitionElementsKind(Node* node, Node* effect, 175 ValueEffectControl LowerTransitionElementsKind(Node* node, Node* effect,
176 Node* control); 176 Node* control);
177 ValueEffectControl LowerLoadTypedElement(Node* node, Node* effect, 177 ValueEffectControl LowerLoadTypedElement(Node* node, Node* effect,
178 Node* control); 178 Node* control);
179 ValueEffectControl LowerStoreTypedElement(Node* node, Node* effect, 179 ValueEffectControl LowerStoreTypedElement(Node* node, Node* effect,
180 Node* control); 180 Node* control);
181 ValueEffectControl LowerLoadFunctionPrototype(Node* node, Node* effect,
182 Node* control);
183 181
184 // Lowering of optional operators. 182 // Lowering of optional operators.
185 ValueEffectControl LowerFloat64RoundUp(Node* node, Node* effect, 183 ValueEffectControl LowerFloat64RoundUp(Node* node, Node* effect,
186 Node* control); 184 Node* control);
187 ValueEffectControl LowerFloat64RoundDown(Node* node, Node* effect, 185 ValueEffectControl LowerFloat64RoundDown(Node* node, Node* effect,
188 Node* control); 186 Node* control);
189 ValueEffectControl LowerFloat64RoundTiesEven(Node* node, Node* effect, 187 ValueEffectControl LowerFloat64RoundTiesEven(Node* node, Node* effect,
190 Node* control); 188 Node* control);
191 ValueEffectControl LowerFloat64RoundTruncate(Node* node, Node* effect, 189 ValueEffectControl LowerFloat64RoundTruncate(Node* node, Node* effect,
192 Node* control); 190 Node* control);
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 SourcePositionTable* source_positions_; 231 SourcePositionTable* source_positions_;
234 232
235 SetOncePointer<Operator const> to_number_operator_; 233 SetOncePointer<Operator const> to_number_operator_;
236 }; 234 };
237 235
238 } // namespace compiler 236 } // namespace compiler
239 } // namespace internal 237 } // namespace internal
240 } // namespace v8 238 } // namespace v8
241 239
242 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ 240 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_
OLDNEW
« no previous file with comments | « src/compiler/access-info.cc ('k') | src/compiler/effect-control-linearizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698