| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |