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

Side by Side Diff: src/hydrogen.h

Issue 21813010: Replace BIT_NOT by XOR with ~0 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 4 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.h ('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 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \ 1800 #define INLINE_FUNCTION_GENERATOR_DECLARATION(Name, argc, ressize) \
1801 void Generate##Name(CallRuntime* call); 1801 void Generate##Name(CallRuntime* call);
1802 1802
1803 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) 1803 INLINE_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
1804 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION) 1804 INLINE_RUNTIME_FUNCTION_LIST(INLINE_FUNCTION_GENERATOR_DECLARATION)
1805 #undef INLINE_FUNCTION_GENERATOR_DECLARATION 1805 #undef INLINE_FUNCTION_GENERATOR_DECLARATION
1806 1806
1807 void VisitDelete(UnaryOperation* expr); 1807 void VisitDelete(UnaryOperation* expr);
1808 void VisitVoid(UnaryOperation* expr); 1808 void VisitVoid(UnaryOperation* expr);
1809 void VisitTypeof(UnaryOperation* expr); 1809 void VisitTypeof(UnaryOperation* expr);
1810 void VisitBitNot(UnaryOperation* expr);
1811 void VisitNot(UnaryOperation* expr); 1810 void VisitNot(UnaryOperation* expr);
1812 1811
1813 void VisitComma(BinaryOperation* expr); 1812 void VisitComma(BinaryOperation* expr);
1814 void VisitLogicalExpression(BinaryOperation* expr); 1813 void VisitLogicalExpression(BinaryOperation* expr);
1815 void VisitArithmeticExpression(BinaryOperation* expr); 1814 void VisitArithmeticExpression(BinaryOperation* expr);
1816 1815
1817 bool PreProcessOsrEntry(IterationStatement* statement); 1816 bool PreProcessOsrEntry(IterationStatement* statement);
1818 void VisitLoopBody(IterationStatement* stmt, 1817 void VisitLoopBody(IterationStatement* stmt,
1819 HBasicBlock* loop_entry, 1818 HBasicBlock* loop_entry,
1820 BreakAndContinueInfo* break_info); 1819 BreakAndContinueInfo* break_info);
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
2325 EmbeddedVector<char, 64> filename_; 2324 EmbeddedVector<char, 64> filename_;
2326 HeapStringAllocator string_allocator_; 2325 HeapStringAllocator string_allocator_;
2327 StringStream trace_; 2326 StringStream trace_;
2328 int indent_; 2327 int indent_;
2329 }; 2328 };
2330 2329
2331 2330
2332 } } // namespace v8::internal 2331 } } // namespace v8::internal
2333 2332
2334 #endif // V8_HYDROGEN_H_ 2333 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698