| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 | 775 |
| 776 // Generators for inline runtime functions. | 776 // Generators for inline runtime functions. |
| 777 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ | 777 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ |
| 778 void Generate##Name(CallRuntime* call); | 778 void Generate##Name(CallRuntime* call); |
| 779 | 779 |
| 780 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 780 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) |
| 781 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) | 781 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) |
| 782 #undef INLINE_FUNCTION_GENERATOR_DECLARATION | 782 #undef INLINE_FUNCTION_GENERATOR_DECLARATION |
| 783 | 783 |
| 784 void HandleDeclaration(VariableProxy* proxy, | 784 void HandleDeclaration(VariableProxy* proxy, |
| 785 Variable::Mode mode, | 785 VariableMode mode, |
| 786 FunctionLiteral* function); | 786 FunctionLiteral* function); |
| 787 | 787 |
| 788 void VisitDelete(UnaryOperation* expr); | 788 void VisitDelete(UnaryOperation* expr); |
| 789 void VisitVoid(UnaryOperation* expr); | 789 void VisitVoid(UnaryOperation* expr); |
| 790 void VisitTypeof(UnaryOperation* expr); | 790 void VisitTypeof(UnaryOperation* expr); |
| 791 void VisitAdd(UnaryOperation* expr); | 791 void VisitAdd(UnaryOperation* expr); |
| 792 void VisitSub(UnaryOperation* expr); | 792 void VisitSub(UnaryOperation* expr); |
| 793 void VisitBitNot(UnaryOperation* expr); | 793 void VisitBitNot(UnaryOperation* expr); |
| 794 void VisitNot(UnaryOperation* expr); | 794 void VisitNot(UnaryOperation* expr); |
| 795 | 795 |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 const char* filename_; | 1241 const char* filename_; |
| 1242 HeapStringAllocator string_allocator_; | 1242 HeapStringAllocator string_allocator_; |
| 1243 StringStream trace_; | 1243 StringStream trace_; |
| 1244 int indent_; | 1244 int indent_; |
| 1245 }; | 1245 }; |
| 1246 | 1246 |
| 1247 | 1247 |
| 1248 } } // namespace v8::internal | 1248 } } // namespace v8::internal |
| 1249 | 1249 |
| 1250 #endif // V8_HYDROGEN_H_ | 1250 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |