| Index: src/compiler/js-graph.h
|
| diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h
|
| index 8f81555cb22abb21822979f32bb2b599aa350b82..4b3ed4856a338221c8657635253476d50b7c53dd 100644
|
| --- a/src/compiler/js-graph.h
|
| +++ b/src/compiler/js-graph.h
|
| @@ -142,6 +142,10 @@ class V8_EXPORT_PRIVATE JSGraph : public NON_EXPORTED_BASE(ZoneObject) {
|
| // values for a certain part of the frame state.
|
| Node* EmptyStateValues();
|
|
|
| + // Typed state values with a single dead input. This is useful to represent
|
| + // dead accumulator.
|
| + Node* SingleDeadTypedStateValues();
|
| +
|
| // Create a control node that serves as dependency for dead nodes.
|
| Node* Dead();
|
|
|
| @@ -181,6 +185,7 @@ class V8_EXPORT_PRIVATE JSGraph : public NON_EXPORTED_BASE(ZoneObject) {
|
| kOneConstant,
|
| kNaNConstant,
|
| kEmptyStateValues,
|
| + kSingleDeadTypedStateValues,
|
| kDead,
|
| kNumCachedNodes // Must remain last.
|
| };
|
|
|