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

Side by Side Diff: src/compiler/node-properties.cc

Issue 928213003: Model exceptional edges from call nodes in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #include "src/compiler/node-properties.h" 5 #include "src/compiler/node-properties.h"
6 6
7 #include "src/compiler/common-operator.h" 7 #include "src/compiler/common-operator.h"
8 #include "src/compiler/operator-properties.h" 8 #include "src/compiler/operator-properties.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 145
146 146
147 // static 147 // static
148 void NodeProperties::RemoveNonValueInputs(Node* node) { 148 void NodeProperties::RemoveNonValueInputs(Node* node) {
149 node->TrimInputCount(node->op()->ValueInputCount()); 149 node->TrimInputCount(node->op()->ValueInputCount());
150 } 150 }
151 151
152 152
153 // static 153 // static
154 void NodeProperties::ReplaceWithValue(Node* node, Node* value, Node* effect) { 154 void NodeProperties::ReplaceWithValue(Node* node, Node* value, Node* effect) {
155 DCHECK(node->op()->ControlOutputCount() == 0);
156 if (!effect && node->op()->EffectInputCount() > 0) { 155 if (!effect && node->op()->EffectInputCount() > 0) {
157 effect = NodeProperties::GetEffectInput(node); 156 effect = NodeProperties::GetEffectInput(node);
158 } 157 }
159 158
160 // Requires distinguishing between value and effect edges. 159 // Requires distinguishing between value, effect and control edges.
161 for (Edge edge : node->use_edges()) { 160 for (Edge edge : node->use_edges()) {
162 if (IsEffectEdge(edge)) { 161 if (IsControlEdge(edge)) {
162 DCHECK_EQ(IrOpcode::kIfSuccess, edge.from()->opcode());
163 Node* control = NodeProperties::GetControlInput(node);
164 edge.from()->ReplaceUses(control);
165 edge.UpdateTo(NULL);
166 } else if (IsEffectEdge(edge)) {
163 DCHECK_NOT_NULL(effect); 167 DCHECK_NOT_NULL(effect);
164 edge.UpdateTo(effect); 168 edge.UpdateTo(effect);
165 } else { 169 } else {
166 edge.UpdateTo(value); 170 edge.UpdateTo(value);
167 } 171 }
168 } 172 }
169 } 173 }
170 174
171 175
172 // static 176 // static
(...skipping 21 matching lines...) Expand all
194 // static 198 // static
195 bool NodeProperties::IsInputRange(Edge edge, int first, int num) { 199 bool NodeProperties::IsInputRange(Edge edge, int first, int num) {
196 if (num == 0) return false; 200 if (num == 0) return false;
197 int const index = edge.index(); 201 int const index = edge.index();
198 return first <= index && index < first + num; 202 return first <= index && index < first + num;
199 } 203 }
200 204
201 } // namespace compiler 205 } // namespace compiler
202 } // namespace internal 206 } // namespace internal
203 } // namespace v8 207 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/node-properties.h ('k') | src/compiler/opcodes.h » ('j') | src/compiler/schedule.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698