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

Side by Side Diff: src/hydrogen.h

Issue 19661003: Merged r15267, r15610, r15723, r15724, r15725, r15728 into 3.19 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.19
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 1703 matching lines...) Expand 10 before | Expand all | Expand 10 after
1714 BailoutId assignment_id, 1714 BailoutId assignment_id,
1715 HValue* object, 1715 HValue* object,
1716 HValue* value, 1716 HValue* value,
1717 SmallMapList* types, 1717 SmallMapList* types,
1718 Handle<String> name); 1718 Handle<String> name);
1719 void HandlePolymorphicCallNamed(Call* expr, 1719 void HandlePolymorphicCallNamed(Call* expr,
1720 HValue* receiver, 1720 HValue* receiver,
1721 SmallMapList* types, 1721 SmallMapList* types,
1722 Handle<String> name); 1722 Handle<String> name);
1723 void HandleLiteralCompareTypeof(CompareOperation* expr, 1723 void HandleLiteralCompareTypeof(CompareOperation* expr,
1724 HTypeof* typeof_expr, 1724 Expression* sub_expr,
1725 Handle<String> check); 1725 Handle<String> check);
1726 void HandleLiteralCompareNil(CompareOperation* expr, 1726 void HandleLiteralCompareNil(CompareOperation* expr,
1727 HValue* value, 1727 Expression* sub_expr,
1728 NilValue nil); 1728 NilValue nil);
1729 1729
1730 HInstruction* BuildStringCharCodeAt(HValue* context, 1730 HInstruction* BuildStringCharCodeAt(HValue* context,
1731 HValue* string, 1731 HValue* string,
1732 HValue* index); 1732 HValue* index);
1733 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 1733 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
1734 HValue* left, 1734 HValue* left,
1735 HValue* right); 1735 HValue* right);
1736 HInstruction* BuildIncrement(bool returns_original_input, 1736 HInstruction* BuildIncrement(bool returns_original_input,
1737 CountOperation* expr); 1737 CountOperation* expr);
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
2048 EmbeddedVector<char, 64> filename_; 2048 EmbeddedVector<char, 64> filename_;
2049 HeapStringAllocator string_allocator_; 2049 HeapStringAllocator string_allocator_;
2050 StringStream trace_; 2050 StringStream trace_;
2051 int indent_; 2051 int indent_;
2052 }; 2052 };
2053 2053
2054 2054
2055 } } // namespace v8::internal 2055 } } // namespace v8::internal
2056 2056
2057 #endif // V8_HYDROGEN_H_ 2057 #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