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

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

Issue 2373983004: [turbofan] inline %StringIteratorPrototype%.next in JSBuiltinReducer. (Closed)
Patch Set: Reland "[turbofan] inline %StringIteratorPrototype%.next in JSBuiltinReducer" Created 4 years, 2 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/node.h" 9 #include "src/compiler/node.h"
10 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 ValueEffectControl LowerObjectIsString(Node* node, Node* effect, 135 ValueEffectControl LowerObjectIsString(Node* node, Node* effect,
136 Node* control); 136 Node* control);
137 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect, 137 ValueEffectControl LowerObjectIsUndetectable(Node* node, Node* effect,
138 Node* control); 138 Node* control);
139 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect, 139 ValueEffectControl LowerArrayBufferWasNeutered(Node* node, Node* effect,
140 Node* control); 140 Node* control);
141 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect, 141 ValueEffectControl LowerStringCharCodeAt(Node* node, Node* effect,
142 Node* control); 142 Node* control);
143 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect, 143 ValueEffectControl LowerStringFromCharCode(Node* node, Node* effect,
144 Node* control); 144 Node* control);
145 ValueEffectControl LowerStringFromCodePoint(Node* node, Node* effect,
146 Node* control);
145 ValueEffectControl LowerStringEqual(Node* node, Node* effect, Node* control); 147 ValueEffectControl LowerStringEqual(Node* node, Node* effect, Node* control);
146 ValueEffectControl LowerStringLessThan(Node* node, Node* effect, 148 ValueEffectControl LowerStringLessThan(Node* node, Node* effect,
147 Node* control); 149 Node* control);
148 ValueEffectControl LowerStringLessThanOrEqual(Node* node, Node* effect, 150 ValueEffectControl LowerStringLessThanOrEqual(Node* node, Node* effect,
149 Node* control); 151 Node* control);
150 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state, 152 ValueEffectControl LowerCheckFloat64Hole(Node* node, Node* frame_state,
151 Node* effect, Node* control); 153 Node* effect, Node* control);
152 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state, 154 ValueEffectControl LowerCheckTaggedHole(Node* node, Node* frame_state,
153 Node* effect, Node* control); 155 Node* effect, Node* control);
154 ValueEffectControl LowerConvertTaggedHoleToUndefined(Node* node, Node* effect, 156 ValueEffectControl LowerConvertTaggedHoleToUndefined(Node* node, Node* effect,
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 RegionObservability region_observability_ = RegionObservability::kObservable; 219 RegionObservability region_observability_ = RegionObservability::kObservable;
218 220
219 SetOncePointer<Operator const> to_number_operator_; 221 SetOncePointer<Operator const> to_number_operator_;
220 }; 222 };
221 223
222 } // namespace compiler 224 } // namespace compiler
223 } // namespace internal 225 } // namespace internal
224 } // namespace v8 226 } // namespace v8
225 227
226 #endif // V8_COMPILER_EFFECT_CONTROL_LINEARIZER_H_ 228 #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