| 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_INL_H_ | 5 #ifndef V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ |
| 6 #define V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ | 6 #define V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/compiler/common-operator.h" |
| 9 | |
| 10 #include "src/compiler/js-operator.h" | 9 #include "src/compiler/js-operator.h" |
| 11 #include "src/compiler/opcodes.h" | 10 #include "src/compiler/opcodes.h" |
| 12 #include "src/compiler/operator-properties.h" | 11 #include "src/compiler/operator-properties.h" |
| 13 | 12 |
| 14 namespace v8 { | 13 namespace v8 { |
| 15 namespace internal { | 14 namespace internal { |
| 16 namespace compiler { | 15 namespace compiler { |
| 17 | 16 |
| 18 inline bool OperatorProperties::HasValueInput(Operator* op) { | 17 inline bool OperatorProperties::HasValueInput(Operator* op) { |
| 19 return OperatorProperties::GetValueInputCount(op) > 0; | 18 return OperatorProperties::GetValueInputCount(op) > 0; |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 default: | 171 default: |
| 173 return false; | 172 return false; |
| 174 } | 173 } |
| 175 return false; | 174 return false; |
| 176 } | 175 } |
| 177 } | 176 } |
| 178 } | 177 } |
| 179 } // namespace v8::internal::compiler | 178 } // namespace v8::internal::compiler |
| 180 | 179 |
| 181 #endif // V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ | 180 #endif // V8_COMPILER_OPERATOR_PROPERTIES_INL_H_ |
| OLD | NEW |