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_JS_OPERATOR_H_ | 5 #ifndef V8_COMPILER_JS_OPERATOR_H_ |
6 #define V8_COMPILER_JS_OPERATOR_H_ | 6 #define V8_COMPILER_JS_OPERATOR_H_ |
7 | 7 |
8 #include "src/compiler/type-hints.h" | 8 #include "src/compiler/type-hints.h" |
9 #include "src/runtime/runtime.h" | 9 #include "src/runtime/runtime.h" |
10 | 10 |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 const Operator* Divide(BinaryOperationHints hints); | 403 const Operator* Divide(BinaryOperationHints hints); |
404 const Operator* Modulus(BinaryOperationHints hints); | 404 const Operator* Modulus(BinaryOperationHints hints); |
405 | 405 |
406 const Operator* ToBoolean(ToBooleanHints hints); | 406 const Operator* ToBoolean(ToBooleanHints hints); |
407 const Operator* ToInteger(); | 407 const Operator* ToInteger(); |
408 const Operator* ToLength(); | 408 const Operator* ToLength(); |
409 const Operator* ToName(); | 409 const Operator* ToName(); |
410 const Operator* ToNumber(); | 410 const Operator* ToNumber(); |
411 const Operator* ToObject(); | 411 const Operator* ToObject(); |
412 const Operator* ToString(); | 412 const Operator* ToString(); |
413 const Operator* Yield(); | |
414 | 413 |
415 const Operator* Create(); | 414 const Operator* Create(); |
416 const Operator* CreateArguments(CreateArgumentsType type); | 415 const Operator* CreateArguments(CreateArgumentsType type); |
417 const Operator* CreateArray(size_t arity, Handle<AllocationSite> site); | 416 const Operator* CreateArray(size_t arity, Handle<AllocationSite> site); |
418 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info, | 417 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info, |
419 PretenureFlag pretenure); | 418 PretenureFlag pretenure); |
420 const Operator* CreateIterResultObject(); | 419 const Operator* CreateIterResultObject(); |
421 const Operator* CreateLiteralArray(Handle<FixedArray> constant_elements, | 420 const Operator* CreateLiteralArray(Handle<FixedArray> constant_elements, |
422 int literal_flags, int literal_index, | 421 int literal_flags, int literal_index, |
423 int number_of_elements); | 422 int number_of_elements); |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 Zone* const zone_; | 486 Zone* const zone_; |
488 | 487 |
489 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 488 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
490 }; | 489 }; |
491 | 490 |
492 } // namespace compiler | 491 } // namespace compiler |
493 } // namespace internal | 492 } // namespace internal |
494 } // namespace v8 | 493 } // namespace v8 |
495 | 494 |
496 #endif // V8_COMPILER_JS_OPERATOR_H_ | 495 #endif // V8_COMPILER_JS_OPERATOR_H_ |
OLD | NEW |