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

Side by Side Diff: src/hydrogen.h

Issue 13902013: Improve handling of unary plus. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 7 years, 8 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/arm/full-codegen-arm.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 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698