OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1800 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ | 1800 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ |
1801 void Generate##Name(CallRuntime* call); | 1801 void Generate##Name(CallRuntime* call); |
1802 | 1802 |
1803 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 1803 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) |
1804 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 1804 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) |
1805 #undef INLINE_FUNCTION_GENERATOR_DECLARATION | 1805 #undef INLINE_FUNCTION_GENERATOR_DECLARATION |
1806 | 1806 |
1807 void VisitDelete(UnaryOperation* expr); | 1807 void VisitDelete(UnaryOperation* expr); |
1808 void VisitVoid(UnaryOperation* expr); | 1808 void VisitVoid(UnaryOperation* expr); |
1809 void VisitTypeof(UnaryOperation* expr); | 1809 void VisitTypeof(UnaryOperation* expr); |
1810 void VisitSub(UnaryOperation* expr); | |
1811 void VisitBitNot(UnaryOperation* expr); | 1810 void VisitBitNot(UnaryOperation* expr); |
1812 void VisitNot(UnaryOperation* expr); | 1811 void VisitNot(UnaryOperation* expr); |
1813 | 1812 |
1814 void VisitComma(BinaryOperation* expr); | 1813 void VisitComma(BinaryOperation* expr); |
1815 void VisitLogicalExpression(BinaryOperation* expr); | 1814 void VisitLogicalExpression(BinaryOperation* expr); |
1816 void VisitArithmeticExpression(BinaryOperation* expr); | 1815 void VisitArithmeticExpression(BinaryOperation* expr); |
1817 | 1816 |
1818 bool PreProcessOsrEntry(IterationStatement* statement); | 1817 bool PreProcessOsrEntry(IterationStatement* statement); |
1819 void VisitLoopBody(IterationStatement* stmt, | 1818 void VisitLoopBody(IterationStatement* stmt, |
1820 HBasicBlock* loop_entry, | 1819 HBasicBlock* loop_entry, |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2326 EmbeddedVector<char, 64> filename_; | 2325 EmbeddedVector<char, 64> filename_; |
2327 HeapStringAllocator string_allocator_; | 2326 HeapStringAllocator string_allocator_; |
2328 StringStream trace_; | 2327 StringStream trace_; |
2329 int indent_; | 2328 int indent_; |
2330 }; | 2329 }; |
2331 | 2330 |
2332 | 2331 |
2333 } } // namespace v8::internal | 2332 } } // namespace v8::internal |
2334 | 2333 |
2335 #endif // V8_HYDROGEN_H_ | 2334 #endif // V8_HYDROGEN_H_ |
OLD | NEW |