| 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/runtime/runtime.h" | 8 #include "src/runtime/runtime.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 TypeofMode typeof_mode); | 434 TypeofMode typeof_mode); |
| 435 | 435 |
| 436 const Operator* TypeOf(); | 436 const Operator* TypeOf(); |
| 437 const Operator* InstanceOf(); | 437 const Operator* InstanceOf(); |
| 438 | 438 |
| 439 const Operator* ForInDone(); | 439 const Operator* ForInDone(); |
| 440 const Operator* ForInNext(); | 440 const Operator* ForInNext(); |
| 441 const Operator* ForInPrepare(); | 441 const Operator* ForInPrepare(); |
| 442 const Operator* ForInStep(); | 442 const Operator* ForInStep(); |
| 443 | 443 |
| 444 const Operator* LoadMessage(); |
| 445 const Operator* StoreMessage(); |
| 446 |
| 444 const Operator* StackCheck(); | 447 const Operator* StackCheck(); |
| 445 | 448 |
| 446 const Operator* CreateFunctionContext(int slot_count); | 449 const Operator* CreateFunctionContext(int slot_count); |
| 447 const Operator* CreateCatchContext(const Handle<String>& name); | 450 const Operator* CreateCatchContext(const Handle<String>& name); |
| 448 const Operator* CreateWithContext(); | 451 const Operator* CreateWithContext(); |
| 449 const Operator* CreateBlockContext(const Handle<ScopeInfo>& scpope_info); | 452 const Operator* CreateBlockContext(const Handle<ScopeInfo>& scpope_info); |
| 450 const Operator* CreateModuleContext(); | 453 const Operator* CreateModuleContext(); |
| 451 const Operator* CreateScriptContext(const Handle<ScopeInfo>& scpope_info); | 454 const Operator* CreateScriptContext(const Handle<ScopeInfo>& scpope_info); |
| 452 | 455 |
| 453 private: | 456 private: |
| 454 Zone* zone() const { return zone_; } | 457 Zone* zone() const { return zone_; } |
| 455 | 458 |
| 456 const JSOperatorGlobalCache& cache_; | 459 const JSOperatorGlobalCache& cache_; |
| 457 Zone* const zone_; | 460 Zone* const zone_; |
| 458 | 461 |
| 459 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 462 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
| 460 }; | 463 }; |
| 461 | 464 |
| 462 } // namespace compiler | 465 } // namespace compiler |
| 463 } // namespace internal | 466 } // namespace internal |
| 464 } // namespace v8 | 467 } // namespace v8 |
| 465 | 468 |
| 466 #endif // V8_COMPILER_JS_OPERATOR_H_ | 469 #endif // V8_COMPILER_JS_OPERATOR_H_ |
| OLD | NEW |