| 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 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 void HandlePolymorphicCallNamed(Call* expr, | 897 void HandlePolymorphicCallNamed(Call* expr, |
| 898 HValue* receiver, | 898 HValue* receiver, |
| 899 ZoneMapList* types, | 899 ZoneMapList* types, |
| 900 Handle<String> name); | 900 Handle<String> name); |
| 901 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, | 901 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, |
| 902 Expression* expr, | 902 Expression* expr, |
| 903 Handle<String> check); | 903 Handle<String> check); |
| 904 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, | 904 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, |
| 905 Expression* expr); | 905 Expression* expr); |
| 906 | 906 |
| 907 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 907 HStringCharCodeAt* BuildStringCharCodeAt(HValue* context, |
| 908 HValue* string, |
| 908 HValue* index); | 909 HValue* index); |
| 909 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 910 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
| 910 HValue* left, | 911 HValue* left, |
| 911 HValue* right); | 912 HValue* right); |
| 912 HInstruction* BuildIncrement(bool returns_original_input, | 913 HInstruction* BuildIncrement(bool returns_original_input, |
| 913 CountOperation* expr); | 914 CountOperation* expr); |
| 914 HLoadNamedField* BuildLoadNamedField(HValue* object, | 915 HLoadNamedField* BuildLoadNamedField(HValue* object, |
| 915 Property* expr, | 916 Property* expr, |
| 916 Handle<Map> type, | 917 Handle<Map> type, |
| 917 LookupResult* result, | 918 LookupResult* result, |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1219 const char* filename_; | 1220 const char* filename_; |
| 1220 HeapStringAllocator string_allocator_; | 1221 HeapStringAllocator string_allocator_; |
| 1221 StringStream trace_; | 1222 StringStream trace_; |
| 1222 int indent_; | 1223 int indent_; |
| 1223 }; | 1224 }; |
| 1224 | 1225 |
| 1225 | 1226 |
| 1226 } } // namespace v8::internal | 1227 } } // namespace v8::internal |
| 1227 | 1228 |
| 1228 #endif // V8_HYDROGEN_H_ | 1229 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |