| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 void HandlePolymorphicStoreNamedField(Assignment* expr, | 864 void HandlePolymorphicStoreNamedField(Assignment* expr, |
| 865 HValue* object, | 865 HValue* object, |
| 866 HValue* value, | 866 HValue* value, |
| 867 ZoneMapList* types, | 867 ZoneMapList* types, |
| 868 Handle<String> name); | 868 Handle<String> name); |
| 869 void HandlePolymorphicCallNamed(Call* expr, | 869 void HandlePolymorphicCallNamed(Call* expr, |
| 870 HValue* receiver, | 870 HValue* receiver, |
| 871 ZoneMapList* types, | 871 ZoneMapList* types, |
| 872 Handle<String> name); | 872 Handle<String> name); |
| 873 | 873 |
| 874 HCompareSymbolEq* BuildSymbolCompare(HValue* left, |
| 875 HValue* right, |
| 876 Token::Value op); |
| 874 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 877 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, |
| 875 HValue* index); | 878 HValue* index); |
| 876 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 879 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
| 877 HValue* left, | 880 HValue* left, |
| 878 HValue* right); | 881 HValue* right); |
| 879 HInstruction* BuildBinaryOperation(Token::Value op, | 882 HInstruction* BuildBinaryOperation(Token::Value op, |
| 880 HValue* left, | 883 HValue* left, |
| 881 HValue* right, | 884 HValue* right, |
| 882 TypeInfo info); | 885 TypeInfo info); |
| 883 HInstruction* BuildIncrement(HValue* value, | 886 HInstruction* BuildIncrement(HValue* value, |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 const char* filename_; | 1193 const char* filename_; |
| 1191 HeapStringAllocator string_allocator_; | 1194 HeapStringAllocator string_allocator_; |
| 1192 StringStream trace_; | 1195 StringStream trace_; |
| 1193 int indent_; | 1196 int indent_; |
| 1194 }; | 1197 }; |
| 1195 | 1198 |
| 1196 | 1199 |
| 1197 } } // namespace v8::internal | 1200 } } // namespace v8::internal |
| 1198 | 1201 |
| 1199 #endif // V8_HYDROGEN_H_ | 1202 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |