| 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 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ | 1260 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ |
| 1261 void Generate##Name(CallRuntime* call); | 1261 void Generate##Name(CallRuntime* call); |
| 1262 | 1262 |
| 1263 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 1263 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) |
| 1264 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 1264 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) |
| 1265 #undef INLINE_FUNCTION_GENERATOR_DECLARATION | 1265 #undef INLINE_FUNCTION_GENERATOR_DECLARATION |
| 1266 | 1266 |
| 1267 void VisitDelete(UnaryOperation* expr); | 1267 void VisitDelete(UnaryOperation* expr); |
| 1268 void VisitVoid(UnaryOperation* expr); | 1268 void VisitVoid(UnaryOperation* expr); |
| 1269 void VisitTypeof(UnaryOperation* expr); | 1269 void VisitTypeof(UnaryOperation* expr); |
| 1270 void VisitAdd(UnaryOperation* expr); | |
| 1271 void VisitSub(UnaryOperation* expr); | 1270 void VisitSub(UnaryOperation* expr); |
| 1272 void VisitBitNot(UnaryOperation* expr); | 1271 void VisitBitNot(UnaryOperation* expr); |
| 1273 void VisitNot(UnaryOperation* expr); | 1272 void VisitNot(UnaryOperation* expr); |
| 1274 | 1273 |
| 1275 void VisitComma(BinaryOperation* expr); | 1274 void VisitComma(BinaryOperation* expr); |
| 1276 void VisitLogicalExpression(BinaryOperation* expr); | 1275 void VisitLogicalExpression(BinaryOperation* expr); |
| 1277 void VisitArithmeticExpression(BinaryOperation* expr); | 1276 void VisitArithmeticExpression(BinaryOperation* expr); |
| 1278 | 1277 |
| 1279 bool PreProcessOsrEntry(IterationStatement* statement); | 1278 bool PreProcessOsrEntry(IterationStatement* statement); |
| 1280 // True iff. we are compiling for OSR and the statement is the entry. | 1279 // True iff. we are compiling for OSR and the statement is the entry. |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1793 EmbeddedVector<char, 64> filename_; | 1792 EmbeddedVector<char, 64> filename_; |
| 1794 HeapStringAllocator string_allocator_; | 1793 HeapStringAllocator string_allocator_; |
| 1795 StringStream trace_; | 1794 StringStream trace_; |
| 1796 int indent_; | 1795 int indent_; |
| 1797 }; | 1796 }; |
| 1798 | 1797 |
| 1799 | 1798 |
| 1800 } } // namespace v8::internal | 1799 } } // namespace v8::internal |
| 1801 | 1800 |
| 1802 #endif // V8_HYDROGEN_H_ | 1801 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |