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

Side by Side Diff: src/hydrogen.h

Issue 19582002: Synchronize Compare-Literal behavior in FullCodegen and Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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 | « no previous file | 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 1747 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 Handle<String> name); 1758 Handle<String> name);
1759 void HandlePolymorphicCallNamed(Call* expr, 1759 void HandlePolymorphicCallNamed(Call* expr,
1760 HValue* receiver, 1760 HValue* receiver,
1761 SmallMapList* types, 1761 SmallMapList* types,
1762 Handle<String> name); 1762 Handle<String> name);
1763 bool TryCallPolymorphicAsMonomorphic(Call* expr, 1763 bool TryCallPolymorphicAsMonomorphic(Call* expr,
1764 HValue* receiver, 1764 HValue* receiver,
1765 SmallMapList* types, 1765 SmallMapList* types,
1766 Handle<String> name); 1766 Handle<String> name);
1767 void HandleLiteralCompareTypeof(CompareOperation* expr, 1767 void HandleLiteralCompareTypeof(CompareOperation* expr,
1768 HTypeof* typeof_expr, 1768 Expression* sub_expr,
1769 Handle<String> check); 1769 Handle<String> check);
1770 void HandleLiteralCompareNil(CompareOperation* expr, 1770 void HandleLiteralCompareNil(CompareOperation* expr,
1771 HValue* value, 1771 Expression* sub_expr,
1772 NilValue nil); 1772 NilValue nil);
1773 1773
1774 HInstruction* BuildStringCharCodeAt(HValue* context, 1774 HInstruction* BuildStringCharCodeAt(HValue* context,
1775 HValue* string, 1775 HValue* string,
1776 HValue* index); 1776 HValue* index);
1777 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 1777 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
1778 HValue* left, 1778 HValue* left,
1779 HValue* right); 1779 HValue* right);
1780 HInstruction* BuildIncrement(bool returns_original_input, 1780 HInstruction* BuildIncrement(bool returns_original_input,
1781 CountOperation* expr); 1781 CountOperation* expr);
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
2096 EmbeddedVector<char, 64> filename_; 2096 EmbeddedVector<char, 64> filename_;
2097 HeapStringAllocator string_allocator_; 2097 HeapStringAllocator string_allocator_;
2098 StringStream trace_; 2098 StringStream trace_;
2099 int indent_; 2099 int indent_;
2100 }; 2100 };
2101 2101
2102 2102
2103 } } // namespace v8::internal 2103 } } // namespace v8::internal
2104 2104
2105 #endif // V8_HYDROGEN_H_ 2105 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698