Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: src/hydrogen.h

Issue 8221004: Move declaration of SerializedScopeInfo from variables.h to objects.h (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/hydrogen.cc » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698