| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 static inline bool HasValueOutput(Operator* op); | 29 static inline bool HasValueOutput(Operator* op); |
| 30 static inline bool HasEffectOutput(Operator* op); | 30 static inline bool HasEffectOutput(Operator* op); |
| 31 static inline bool HasControlOutput(Operator* op); | 31 static inline bool HasControlOutput(Operator* op); |
| 32 | 32 |
| 33 static inline int GetValueOutputCount(Operator* op); | 33 static inline int GetValueOutputCount(Operator* op); |
| 34 static inline int GetEffectOutputCount(Operator* op); | 34 static inline int GetEffectOutputCount(Operator* op); |
| 35 static inline int GetControlOutputCount(Operator* op); | 35 static inline int GetControlOutputCount(Operator* op); |
| 36 | 36 |
| 37 static inline bool IsBasicBlockBegin(Operator* op); | 37 static inline bool IsBasicBlockBegin(Operator* op); |
| 38 | |
| 39 static inline bool CanBeScheduled(Operator* op); | |
| 40 static inline bool HasFixedSchedulePosition(Operator* op); | |
| 41 static inline bool IsScheduleRoot(Operator* op); | |
| 42 | |
| 43 static inline bool CanLazilyDeoptimize(Operator* op); | 38 static inline bool CanLazilyDeoptimize(Operator* op); |
| 44 }; | 39 }; |
| 45 } | 40 } |
| 46 } | 41 } |
| 47 } // namespace v8::internal::compiler | 42 } // namespace v8::internal::compiler |
| 48 | 43 |
| 49 #endif // V8_COMPILER_OPERATOR_PROPERTIES_H_ | 44 #endif // V8_COMPILER_OPERATOR_PROPERTIES_H_ |
| OLD | NEW |