| 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 1703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |