| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ | 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 #include "src/compiler/operator.h" | 10 #include "src/compiler/operator.h" |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); | 284 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); |
| 285 const Operator* SpeculativeNumberShiftRightLogical(NumberOperationHint hint); | 285 const Operator* SpeculativeNumberShiftRightLogical(NumberOperationHint hint); |
| 286 const Operator* SpeculativeNumberBitwiseAnd(NumberOperationHint hint); | 286 const Operator* SpeculativeNumberBitwiseAnd(NumberOperationHint hint); |
| 287 const Operator* SpeculativeNumberBitwiseOr(NumberOperationHint hint); | 287 const Operator* SpeculativeNumberBitwiseOr(NumberOperationHint hint); |
| 288 const Operator* SpeculativeNumberBitwiseXor(NumberOperationHint hint); | 288 const Operator* SpeculativeNumberBitwiseXor(NumberOperationHint hint); |
| 289 | 289 |
| 290 const Operator* SpeculativeNumberLessThan(NumberOperationHint hint); | 290 const Operator* SpeculativeNumberLessThan(NumberOperationHint hint); |
| 291 const Operator* SpeculativeNumberLessThanOrEqual(NumberOperationHint hint); | 291 const Operator* SpeculativeNumberLessThanOrEqual(NumberOperationHint hint); |
| 292 const Operator* SpeculativeNumberEqual(NumberOperationHint hint); | 292 const Operator* SpeculativeNumberEqual(NumberOperationHint hint); |
| 293 | 293 |
| 294 const Operator* ReferenceEqual(Type* type); | 294 const Operator* ReferenceEqual(); |
| 295 | 295 |
| 296 const Operator* StringEqual(); | 296 const Operator* StringEqual(); |
| 297 const Operator* StringLessThan(); | 297 const Operator* StringLessThan(); |
| 298 const Operator* StringLessThanOrEqual(); | 298 const Operator* StringLessThanOrEqual(); |
| 299 const Operator* StringCharCodeAt(); | 299 const Operator* StringCharCodeAt(); |
| 300 const Operator* StringFromCharCode(); | 300 const Operator* StringFromCharCode(); |
| 301 | 301 |
| 302 const Operator* PlainPrimitiveToNumber(); | 302 const Operator* PlainPrimitiveToNumber(); |
| 303 const Operator* PlainPrimitiveToWord32(); | 303 const Operator* PlainPrimitiveToWord32(); |
| 304 const Operator* PlainPrimitiveToFloat64(); | 304 const Operator* PlainPrimitiveToFloat64(); |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 Zone* const zone_; | 387 Zone* const zone_; |
| 388 | 388 |
| 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 390 }; | 390 }; |
| 391 | 391 |
| 392 } // namespace compiler | 392 } // namespace compiler |
| 393 } // namespace internal | 393 } // namespace internal |
| 394 } // namespace v8 | 394 } // namespace v8 |
| 395 | 395 |
| 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |