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

Side by Side Diff: src/hydrogen.h

Issue 177313005: Remove duplicates in runtime macros. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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
« no previous file with comments | « src/full-codegen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2112 StrictModeFlag function_strict_mode_flag() { 2112 StrictModeFlag function_strict_mode_flag() {
2113 return function_state()->compilation_info()->is_classic_mode() 2113 return function_state()->compilation_info()->is_classic_mode()
2114 ? kNonStrictMode : kStrictMode; 2114 ? kNonStrictMode : kStrictMode;
2115 } 2115 }
2116 2116
2117 // Generators for inline runtime functions. 2117 // Generators for inline runtime functions.
2118 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ 2118 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \
2119 void Generate##Name(CallRuntime* call); 2119 void Generate##Name(CallRuntime* call);
2120 2120
2121 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) 2121 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
2122 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
2123 #undef INLINE_FUNCTION_GENERATOR_DECLARATION 2122 #undef INLINE_FUNCTION_GENERATOR_DECLARATION
2124 2123
2125 void VisitDelete(UnaryOperation* expr); 2124 void VisitDelete(UnaryOperation* expr);
2126 void VisitVoid(UnaryOperation* expr); 2125 void VisitVoid(UnaryOperation* expr);
2127 void VisitTypeof(UnaryOperation* expr); 2126 void VisitTypeof(UnaryOperation* expr);
2128 void VisitNot(UnaryOperation* expr); 2127 void VisitNot(UnaryOperation* expr);
2129 2128
2130 void VisitComma(BinaryOperation* expr); 2129 void VisitComma(BinaryOperation* expr);
2131 void VisitLogicalExpression(BinaryOperation* expr); 2130 void VisitLogicalExpression(BinaryOperation* expr);
2132 void VisitArithmeticExpression(BinaryOperation* expr); 2131 void VisitArithmeticExpression(BinaryOperation* expr);
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
2793 } 2792 }
2794 2793
2795 private: 2794 private:
2796 HGraphBuilder* builder_; 2795 HGraphBuilder* builder_;
2797 }; 2796 };
2798 2797
2799 2798
2800 } } // namespace v8::internal 2799 } } // namespace v8::internal
2801 2800
2802 #endif // V8_HYDROGEN_H_ 2801 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698