| OLD | NEW |
| 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 25 matching lines...) Expand all Loading... |
| 36 static inline void ReplaceEffectInput(Node* node, Node* effect, | 36 static inline void ReplaceEffectInput(Node* node, Node* effect, |
| 37 int index = 0); | 37 int index = 0); |
| 38 static inline void ReplaceFrameStateInput(Node* node, Node* frame_state); | 38 static inline void ReplaceFrameStateInput(Node* node, Node* frame_state); |
| 39 static inline void RemoveNonValueInputs(Node* node); | 39 static inline void RemoveNonValueInputs(Node* node); |
| 40 static inline void ReplaceWithValue(Node* node, Node* value, | 40 static inline void ReplaceWithValue(Node* node, Node* value, |
| 41 Node* effect = NULL); | 41 Node* effect = NULL); |
| 42 | 42 |
| 43 static inline bool IsTyped(Node* node); | 43 static inline bool IsTyped(Node* node); |
| 44 static inline Bounds GetBounds(Node* node); | 44 static inline Bounds GetBounds(Node* node); |
| 45 static inline void SetBounds(Node* node, Bounds bounds); | 45 static inline void SetBounds(Node* node, Bounds bounds); |
| 46 static inline void RemoveBounds(Node* node); | |
| 47 static inline bool AllValueInputsAreTyped(Node* node); | 46 static inline bool AllValueInputsAreTyped(Node* node); |
| 48 | 47 |
| 49 static inline int FirstValueIndex(Node* node); | 48 static inline int FirstValueIndex(Node* node); |
| 50 static inline int FirstContextIndex(Node* node); | 49 static inline int FirstContextIndex(Node* node); |
| 51 static inline int FirstFrameStateIndex(Node* node); | 50 static inline int FirstFrameStateIndex(Node* node); |
| 52 static inline int FirstEffectIndex(Node* node); | 51 static inline int FirstEffectIndex(Node* node); |
| 53 static inline int FirstControlIndex(Node* node); | 52 static inline int FirstControlIndex(Node* node); |
| 54 static inline int PastValueIndex(Node* node); | 53 static inline int PastValueIndex(Node* node); |
| 55 static inline int PastContextIndex(Node* node); | 54 static inline int PastContextIndex(Node* node); |
| 56 static inline int PastFrameStateIndex(Node* node); | 55 static inline int PastFrameStateIndex(Node* node); |
| 57 static inline int PastEffectIndex(Node* node); | 56 static inline int PastEffectIndex(Node* node); |
| 58 static inline int PastControlIndex(Node* node); | 57 static inline int PastControlIndex(Node* node); |
| 59 | 58 |
| 60 static inline bool IsInputRange(Edge edge, int first, int count); | 59 static inline bool IsInputRange(Edge edge, int first, int count); |
| 61 }; | 60 }; |
| 62 | 61 |
| 63 } // namespace compiler | 62 } // namespace compiler |
| 64 } // namespace internal | 63 } // namespace internal |
| 65 } // namespace v8 | 64 } // namespace v8 |
| 66 | 65 |
| 67 #endif // V8_COMPILER_NODE_PROPERTIES_H_ | 66 #endif // V8_COMPILER_NODE_PROPERTIES_H_ |
| OLD | NEW |