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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 void HandleCompoundAssignment(Assignment* expr); | 874 void HandleCompoundAssignment(Assignment* expr); |
875 void HandlePolymorphicStoreNamedField(Assignment* expr, | 875 void HandlePolymorphicStoreNamedField(Assignment* expr, |
876 HValue* object, | 876 HValue* object, |
877 HValue* value, | 877 HValue* value, |
878 ZoneMapList* types, | 878 ZoneMapList* types, |
879 Handle<String> name); | 879 Handle<String> name); |
880 void HandlePolymorphicCallNamed(Call* expr, | 880 void HandlePolymorphicCallNamed(Call* expr, |
881 HValue* receiver, | 881 HValue* receiver, |
882 ZoneMapList* types, | 882 ZoneMapList* types, |
883 Handle<String> name); | 883 Handle<String> name); |
| 884 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, |
| 885 Expression* expr, |
| 886 Handle<String> check); |
| 887 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, |
| 888 Expression* expr);
|
884 | 889 |
885 HCompareSymbolEq* BuildSymbolCompare(HValue* left, | 890 HCompareSymbolEq* BuildSymbolCompare(HValue* left, |
886 HValue* right, | 891 HValue* right, |
887 Token::Value op); | 892 Token::Value op); |
888 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 893 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, |
889 HValue* index); | 894 HValue* index); |
890 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 895 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
891 HValue* left, | 896 HValue* left, |
892 HValue* right); | 897 HValue* right); |
893 HInstruction* BuildIncrement(bool returns_original_input, | 898 HInstruction* BuildIncrement(bool returns_original_input, |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1200 const char* filename_; | 1205 const char* filename_; |
1201 HeapStringAllocator string_allocator_; | 1206 HeapStringAllocator string_allocator_; |
1202 StringStream trace_; | 1207 StringStream trace_; |
1203 int indent_; | 1208 int indent_; |
1204 }; | 1209 }; |
1205 | 1210 |
1206 | 1211 |
1207 } } // namespace v8::internal | 1212 } } // namespace v8::internal |
1208 | 1213 |
1209 #endif // V8_HYDROGEN_H_ | 1214 #endif // V8_HYDROGEN_H_ |
OLD | NEW |