| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 // return blocks. NULL in all other cases. | 650 // return blocks. NULL in all other cases. |
| 651 TestContext* test_context_; | 651 TestContext* test_context_; |
| 652 | 652 |
| 653 FunctionState* outer_; | 653 FunctionState* outer_; |
| 654 }; | 654 }; |
| 655 | 655 |
| 656 | 656 |
| 657 class HGraphBuilder: public AstVisitor { | 657 class HGraphBuilder: public AstVisitor { |
| 658 public: | 658 public: |
| 659 enum BreakType { BREAK, CONTINUE }; | 659 enum BreakType { BREAK, CONTINUE }; |
| 660 enum SwitchType { UNKNOWN_SWITCH, SMI_SWITCH, STRING_SWITCH }; |
| 660 | 661 |
| 661 // A class encapsulating (lazily-allocated) break and continue blocks for | 662 // A class encapsulating (lazily-allocated) break and continue blocks for |
| 662 // a breakable statement. Separated from BreakAndContinueScope so that it | 663 // a breakable statement. Separated from BreakAndContinueScope so that it |
| 663 // can have a separate lifetime. | 664 // can have a separate lifetime. |
| 664 class BreakAndContinueInfo BASE_EMBEDDED { | 665 class BreakAndContinueInfo BASE_EMBEDDED { |
| 665 public: | 666 public: |
| 666 explicit BreakAndContinueInfo(BreakableStatement* target) | 667 explicit BreakAndContinueInfo(BreakableStatement* target) |
| 667 : target_(target), break_block_(NULL), continue_block_(NULL) { | 668 : target_(target), break_block_(NULL), continue_block_(NULL) { |
| 668 } | 669 } |
| 669 | 670 |
| (...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 const char* filename_; | 1250 const char* filename_; |
| 1250 HeapStringAllocator string_allocator_; | 1251 HeapStringAllocator string_allocator_; |
| 1251 StringStream trace_; | 1252 StringStream trace_; |
| 1252 int indent_; | 1253 int indent_; |
| 1253 }; | 1254 }; |
| 1254 | 1255 |
| 1255 | 1256 |
| 1256 } } // namespace v8::internal | 1257 } } // namespace v8::internal |
| 1257 | 1258 |
| 1258 #endif // V8_HYDROGEN_H_ | 1259 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |