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

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

Issue 1921483002: [turbofan] Wire in floating control during effect linearization phase. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix lines in the drawing (gcc, really?) Created 4 years, 7 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/effect-control-linearizer.cc ('k') | src/compiler/node-properties.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_NODE_PROPERTIES_H_ 5 #ifndef V8_COMPILER_NODE_PROPERTIES_H_
6 #define V8_COMPILER_NODE_PROPERTIES_H_ 6 #define V8_COMPILER_NODE_PROPERTIES_H_
7 7
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/types.h" 9 #include "src/types.h"
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 // Determines whether exceptions thrown by the given node are handled locally 75 // Determines whether exceptions thrown by the given node are handled locally
76 // within the graph (i.e. an IfException projection is present). 76 // within the graph (i.e. an IfException projection is present).
77 static bool IsExceptionalCall(Node* node); 77 static bool IsExceptionalCall(Node* node);
78 78
79 // --------------------------------------------------------------------------- 79 // ---------------------------------------------------------------------------
80 // Miscellaneous mutators. 80 // Miscellaneous mutators.
81 81
82 static void ReplaceValueInput(Node* node, Node* value, int index); 82 static void ReplaceValueInput(Node* node, Node* value, int index);
83 static void ReplaceContextInput(Node* node, Node* context); 83 static void ReplaceContextInput(Node* node, Node* context);
84 static void ReplaceControlInput(Node* node, Node* control); 84 static void ReplaceControlInput(Node* node, Node* control, int index = 0);
85 static void ReplaceEffectInput(Node* node, Node* effect, int index = 0); 85 static void ReplaceEffectInput(Node* node, Node* effect, int index = 0);
86 static void ReplaceFrameStateInput(Node* node, int index, Node* frame_state); 86 static void ReplaceFrameStateInput(Node* node, int index, Node* frame_state);
87 static void RemoveFrameStateInput(Node* node, int index); 87 static void RemoveFrameStateInput(Node* node, int index);
88 static void RemoveNonValueInputs(Node* node); 88 static void RemoveNonValueInputs(Node* node);
89 static void RemoveValueInputs(Node* node); 89 static void RemoveValueInputs(Node* node);
90 90
91 // Replaces all value inputs of {node} with the single input {value}. 91 // Replaces all value inputs of {node} with the single input {value}.
92 static void ReplaceValueInputs(Node* node, Node* value); 92 static void ReplaceValueInputs(Node* node, Node* value);
93 93
94 // Merge the control node {node} into the end of the graph, introducing a 94 // Merge the control node {node} into the end of the graph, introducing a
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 157
158 private: 158 private:
159 static inline bool IsInputRange(Edge edge, int first, int count); 159 static inline bool IsInputRange(Edge edge, int first, int count);
160 }; 160 };
161 161
162 } // namespace compiler 162 } // namespace compiler
163 } // namespace internal 163 } // namespace internal
164 } // namespace v8 164 } // namespace v8
165 165
166 #endif // V8_COMPILER_NODE_PROPERTIES_H_ 166 #endif // V8_COMPILER_NODE_PROPERTIES_H_
OLDNEW
« no previous file with comments | « src/compiler/effect-control-linearizer.cc ('k') | src/compiler/node-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698