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/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(); | 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* StringCharAt(); |
299 const Operator* StringCharCodeAt(); | 300 const Operator* StringCharCodeAt(); |
300 const Operator* StringFromCharCode(); | 301 const Operator* StringFromCharCode(); |
301 const Operator* StringFromCodePoint(UnicodeEncoding encoding); | 302 const Operator* StringFromCodePoint(UnicodeEncoding encoding); |
302 | 303 |
303 const Operator* PlainPrimitiveToNumber(); | 304 const Operator* PlainPrimitiveToNumber(); |
304 const Operator* PlainPrimitiveToWord32(); | 305 const Operator* PlainPrimitiveToWord32(); |
305 const Operator* PlainPrimitiveToFloat64(); | 306 const Operator* PlainPrimitiveToFloat64(); |
306 | 307 |
307 const Operator* ChangeTaggedSignedToInt32(); | 308 const Operator* ChangeTaggedSignedToInt32(); |
308 const Operator* ChangeTaggedToInt32(); | 309 const Operator* ChangeTaggedToInt32(); |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 Zone* const zone_; | 406 Zone* const zone_; |
406 | 407 |
407 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 408 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
408 }; | 409 }; |
409 | 410 |
410 } // namespace compiler | 411 } // namespace compiler |
411 } // namespace internal | 412 } // namespace internal |
412 } // namespace v8 | 413 } // namespace v8 |
413 | 414 |
414 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 415 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |