| 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 | 746 |
| 747 void VisitDelete(UnaryOperation* expr); | 747 void VisitDelete(UnaryOperation* expr); |
| 748 void VisitVoid(UnaryOperation* expr); | 748 void VisitVoid(UnaryOperation* expr); |
| 749 void VisitTypeof(UnaryOperation* expr); | 749 void VisitTypeof(UnaryOperation* expr); |
| 750 void VisitAdd(UnaryOperation* expr); | 750 void VisitAdd(UnaryOperation* expr); |
| 751 void VisitSub(UnaryOperation* expr); | 751 void VisitSub(UnaryOperation* expr); |
| 752 void VisitBitNot(UnaryOperation* expr); | 752 void VisitBitNot(UnaryOperation* expr); |
| 753 void VisitNot(UnaryOperation* expr); | 753 void VisitNot(UnaryOperation* expr); |
| 754 | 754 |
| 755 void VisitComma(BinaryOperation* expr); | 755 void VisitComma(BinaryOperation* expr); |
| 756 void VisitAndOr(BinaryOperation* expr, bool is_logical_and); | 756 void VisitLogicalExpression(BinaryOperation* expr); |
| 757 void VisitCommon(BinaryOperation* expr); | 757 void VisitArithmeticExpression(BinaryOperation* expr); |
| 758 | 758 |
| 759 void PreProcessOsrEntry(IterationStatement* statement); | 759 void PreProcessOsrEntry(IterationStatement* statement); |
| 760 // True iff. we are compiling for OSR and the statement is the entry. | 760 // True iff. we are compiling for OSR and the statement is the entry. |
| 761 bool HasOsrEntryAt(IterationStatement* statement); | 761 bool HasOsrEntryAt(IterationStatement* statement); |
| 762 | 762 |
| 763 HBasicBlock* CreateJoin(HBasicBlock* first, | 763 HBasicBlock* CreateJoin(HBasicBlock* first, |
| 764 HBasicBlock* second, | 764 HBasicBlock* second, |
| 765 int join_id); | 765 int join_id); |
| 766 | 766 |
| 767 // Create a back edge in the flow graph. body_exit is the predecessor | 767 // Create a back edge in the flow graph. body_exit is the predecessor |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1195 const char* filename_; | 1195 const char* filename_; |
| 1196 HeapStringAllocator string_allocator_; | 1196 HeapStringAllocator string_allocator_; |
| 1197 StringStream trace_; | 1197 StringStream trace_; |
| 1198 int indent_; | 1198 int indent_; |
| 1199 }; | 1199 }; |
| 1200 | 1200 |
| 1201 | 1201 |
| 1202 } } // namespace v8::internal | 1202 } } // namespace v8::internal |
| 1203 | 1203 |
| 1204 #endif // V8_HYDROGEN_H_ | 1204 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |