| 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_OPERATOR_PROPERTIES_H_ | 5 #ifndef V8_COMPILER_OPERATOR_PROPERTIES_H_ |
| 6 #define V8_COMPILER_OPERATOR_PROPERTIES_H_ | 6 #define V8_COMPILER_OPERATOR_PROPERTIES_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 static inline bool HasValueOutput(Operator* op); | 31 static inline bool HasValueOutput(Operator* op); |
| 32 static inline bool HasEffectOutput(Operator* op); | 32 static inline bool HasEffectOutput(Operator* op); |
| 33 static inline bool HasControlOutput(Operator* op); | 33 static inline bool HasControlOutput(Operator* op); |
| 34 | 34 |
| 35 static inline int GetValueOutputCount(Operator* op); | 35 static inline int GetValueOutputCount(Operator* op); |
| 36 static inline int GetEffectOutputCount(Operator* op); | 36 static inline int GetEffectOutputCount(Operator* op); |
| 37 static inline int GetControlOutputCount(Operator* op); | 37 static inline int GetControlOutputCount(Operator* op); |
| 38 | 38 |
| 39 static inline bool IsBasicBlockBegin(Operator* op); | 39 static inline bool IsBasicBlockBegin(Operator* op); |
| 40 static inline bool CanLazilyDeoptimize(Operator* op); | |
| 41 }; | 40 }; |
| 42 } | 41 } |
| 43 } | 42 } |
| 44 } // namespace v8::internal::compiler | 43 } // namespace v8::internal::compiler |
| 45 | 44 |
| 46 #endif // V8_COMPILER_OPERATOR_PROPERTIES_H_ | 45 #endif // V8_COMPILER_OPERATOR_PROPERTIES_H_ |
| OLD | NEW |