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

Side by Side Diff: src/hydrogen.h

Issue 19460006: Merged r15723, r15724, r15725, r15728 into trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
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 | « 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 1741 matching lines...) Expand 10 before | Expand all | Expand 10 after
1752 Handle<String> name); 1752 Handle<String> name);
1753 void HandlePolymorphicCallNamed(Call* expr, 1753 void HandlePolymorphicCallNamed(Call* expr,
1754 HValue* receiver, 1754 HValue* receiver,
1755 SmallMapList* types, 1755 SmallMapList* types,
1756 Handle<String> name); 1756 Handle<String> name);
1757 bool TryCallPolymorphicAsMonomorphic(Call* expr, 1757 bool TryCallPolymorphicAsMonomorphic(Call* expr,
1758 HValue* receiver, 1758 HValue* receiver,
1759 SmallMapList* types, 1759 SmallMapList* types,
1760 Handle<String> name); 1760 Handle<String> name);
1761 void HandleLiteralCompareTypeof(CompareOperation* expr, 1761 void HandleLiteralCompareTypeof(CompareOperation* expr,
1762 HTypeof* typeof_expr, 1762 Expression* sub_expr,
1763 Handle<String> check); 1763 Handle<String> check);
1764 void HandleLiteralCompareNil(CompareOperation* expr, 1764 void HandleLiteralCompareNil(CompareOperation* expr,
1765 HValue* value, 1765 Expression* sub_expr,
1766 NilValue nil); 1766 NilValue nil);
1767 1767
1768 HInstruction* BuildStringCharCodeAt(HValue* context, 1768 HInstruction* BuildStringCharCodeAt(HValue* context,
1769 HValue* string, 1769 HValue* string,
1770 HValue* index); 1770 HValue* index);
1771 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 1771 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
1772 HValue* left, 1772 HValue* left,
1773 HValue* right); 1773 HValue* right);
1774 HInstruction* BuildIncrement(bool returns_original_input, 1774 HInstruction* BuildIncrement(bool returns_original_input,
1775 CountOperation* expr); 1775 CountOperation* expr);
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
2090 EmbeddedVector<char, 64> filename_; 2090 EmbeddedVector<char, 64> filename_;
2091 HeapStringAllocator string_allocator_; 2091 HeapStringAllocator string_allocator_;
2092 StringStream trace_; 2092 StringStream trace_;
2093 int indent_; 2093 int indent_;
2094 }; 2094 };
2095 2095
2096 2096
2097 } } // namespace v8::internal 2097 } } // namespace v8::internal
2098 2098
2099 #endif // V8_HYDROGEN_H_ 2099 #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