OLD | NEW |
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 #ifndef V8_COMPILER_JS_TYPE_FEEDBACK_H_ | 5 #ifndef V8_COMPILER_JS_TYPE_FEEDBACK_H_ |
6 #define V8_COMPILER_JS_TYPE_FEEDBACK_H_ | 6 #define V8_COMPILER_JS_TYPE_FEEDBACK_H_ |
7 | 7 |
8 #include "src/utils.h" | 8 #include "src/utils.h" |
9 | 9 |
10 #include "src/compiler/graph-reducer.h" | 10 #include "src/compiler/graph-reducer.h" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 Graph* graph() { return jsgraph_->graph(); } | 84 Graph* graph() { return jsgraph_->graph(); } |
85 JSGraph* jsgraph() { return jsgraph_; } | 85 JSGraph* jsgraph() { return jsgraph_; } |
86 CommonOperatorBuilder* common() { return jsgraph_->common(); } | 86 CommonOperatorBuilder* common() { return jsgraph_->common(); } |
87 SimplifiedOperatorBuilder* simplified() { return &simplified_; } | 87 SimplifiedOperatorBuilder* simplified() { return &simplified_; } |
88 | 88 |
89 void BuildMapCheck(Node* receiver, Handle<Map> map, bool smi_check, | 89 void BuildMapCheck(Node* receiver, Handle<Map> map, bool smi_check, |
90 Node* effect, Node* control, Node** success, Node** fail); | 90 Node* effect, Node* control, Node** success, Node** fail); |
91 | 91 |
92 void GatherReceiverTypes(Node* receiver, Node* effect, TypeFeedbackId id, | 92 void GatherReceiverTypes(Node* receiver, Node* effect, TypeFeedbackId id, |
93 Handle<Name> property, SmallMapList* maps); | 93 Handle<Name> property, SmallMapList* maps); |
| 94 |
| 95 Node* GetFrameStateBefore(Node* node); |
94 }; | 96 }; |
95 | 97 |
96 } // namespace compiler | 98 } // namespace compiler |
97 } // namespace internal | 99 } // namespace internal |
98 } // namespace v8 | 100 } // namespace v8 |
99 | 101 |
100 #endif | 102 #endif |
OLD | NEW |