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

Side by Side Diff: src/hydrogen.h

Issue 19518008: Merged r15610, r15723, r15724, r15725, r15728 into 3.18 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.18
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 1603 matching lines...) Expand 10 before | Expand all | Expand 10 after
1614 void HandlePolymorphicStoreNamedField(Assignment* expr, 1614 void HandlePolymorphicStoreNamedField(Assignment* expr,
1615 HValue* object, 1615 HValue* object,
1616 HValue* value, 1616 HValue* value,
1617 SmallMapList* types, 1617 SmallMapList* types,
1618 Handle<String> name); 1618 Handle<String> name);
1619 void HandlePolymorphicCallNamed(Call* expr, 1619 void HandlePolymorphicCallNamed(Call* expr,
1620 HValue* receiver, 1620 HValue* receiver,
1621 SmallMapList* types, 1621 SmallMapList* types,
1622 Handle<String> name); 1622 Handle<String> name);
1623 void HandleLiteralCompareTypeof(CompareOperation* expr, 1623 void HandleLiteralCompareTypeof(CompareOperation* expr,
1624 HTypeof* typeof_expr, 1624 Expression* sub_expr,
1625 Handle<String> check); 1625 Handle<String> check);
1626 void HandleLiteralCompareNil(CompareOperation* expr, 1626 void HandleLiteralCompareNil(CompareOperation* expr,
1627 HValue* value, 1627 Expression* sub_expr,
1628 NilValue nil); 1628 NilValue nil);
1629 1629
1630 HInstruction* BuildStringCharCodeAt(HValue* context, 1630 HInstruction* BuildStringCharCodeAt(HValue* context,
1631 HValue* string, 1631 HValue* string,
1632 HValue* index); 1632 HValue* index);
1633 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 1633 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
1634 HValue* left, 1634 HValue* left,
1635 HValue* right); 1635 HValue* right);
1636 HInstruction* BuildIncrement(bool returns_original_input, 1636 HInstruction* BuildIncrement(bool returns_original_input,
1637 CountOperation* expr); 1637 CountOperation* expr);
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
2003 EmbeddedVector<char, 64> filename_; 2003 EmbeddedVector<char, 64> filename_;
2004 HeapStringAllocator string_allocator_; 2004 HeapStringAllocator string_allocator_;
2005 StringStream trace_; 2005 StringStream trace_;
2006 int indent_; 2006 int indent_;
2007 }; 2007 };
2008 2008
2009 2009
2010 } } // namespace v8::internal 2010 } } // namespace v8::internal
2011 2011
2012 #endif // V8_HYDROGEN_H_ 2012 #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