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 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 void HandlePolymorphicCallNamed(Call* expr, | 887 void HandlePolymorphicCallNamed(Call* expr, |
888 HValue* receiver, | 888 HValue* receiver, |
889 ZoneMapList* types, | 889 ZoneMapList* types, |
890 Handle<String> name); | 890 Handle<String> name); |
891 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, | 891 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, |
892 Expression* expr, | 892 Expression* expr, |
893 Handle<String> check); | 893 Handle<String> check); |
894 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, | 894 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, |
895 Expression* expr); | 895 Expression* expr); |
896 | 896 |
897 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 897 HStringCharCodeAt* BuildStringCharCodeAt(HValue* context, |
| 898 HValue* string, |
898 HValue* index); | 899 HValue* index); |
899 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 900 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
900 HValue* left, | 901 HValue* left, |
901 HValue* right); | 902 HValue* right); |
902 HInstruction* BuildIncrement(bool returns_original_input, | 903 HInstruction* BuildIncrement(bool returns_original_input, |
903 CountOperation* expr); | 904 CountOperation* expr); |
904 HLoadNamedField* BuildLoadNamedField(HValue* object, | 905 HLoadNamedField* BuildLoadNamedField(HValue* object, |
905 Property* expr, | 906 Property* expr, |
906 Handle<Map> type, | 907 Handle<Map> type, |
907 LookupResult* result, | 908 LookupResult* result, |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1209 const char* filename_; | 1210 const char* filename_; |
1210 HeapStringAllocator string_allocator_; | 1211 HeapStringAllocator string_allocator_; |
1211 StringStream trace_; | 1212 StringStream trace_; |
1212 int indent_; | 1213 int indent_; |
1213 }; | 1214 }; |
1214 | 1215 |
1215 | 1216 |
1216 } } // namespace v8::internal | 1217 } } // namespace v8::internal |
1217 | 1218 |
1218 #endif // V8_HYDROGEN_H_ | 1219 #endif // V8_HYDROGEN_H_ |
OLD | NEW |