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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 Handle<String> name); | 908 Handle<String> name); |
909 void HandlePolymorphicCallNamed(Call* expr, | 909 void HandlePolymorphicCallNamed(Call* expr, |
910 HValue* receiver, | 910 HValue* receiver, |
911 SmallMapList* types, | 911 SmallMapList* types, |
912 Handle<String> name); | 912 Handle<String> name); |
913 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, | 913 void HandleLiteralCompareTypeof(CompareOperation* compare_expr, |
914 Expression* expr, | 914 Expression* expr, |
915 Handle<String> check); | 915 Handle<String> check); |
916 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, | 916 void HandleLiteralCompareUndefined(CompareOperation* compare_expr, |
917 Expression* expr); | 917 Expression* expr); |
| 918 void HandleLiteralCompareNull(CompareOperation* compare_expr, |
| 919 Expression* expr); |
918 | 920 |
919 HStringCharCodeAt* BuildStringCharCodeAt(HValue* context, | 921 HStringCharCodeAt* BuildStringCharCodeAt(HValue* context, |
920 HValue* string, | 922 HValue* string, |
921 HValue* index); | 923 HValue* index); |
922 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 924 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
923 HValue* left, | 925 HValue* left, |
924 HValue* right); | 926 HValue* right); |
925 HInstruction* BuildIncrement(bool returns_original_input, | 927 HInstruction* BuildIncrement(bool returns_original_input, |
926 CountOperation* expr); | 928 CountOperation* expr); |
927 HLoadNamedField* BuildLoadNamedField(HValue* object, | 929 HLoadNamedField* BuildLoadNamedField(HValue* object, |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1232 const char* filename_; | 1234 const char* filename_; |
1233 HeapStringAllocator string_allocator_; | 1235 HeapStringAllocator string_allocator_; |
1234 StringStream trace_; | 1236 StringStream trace_; |
1235 int indent_; | 1237 int indent_; |
1236 }; | 1238 }; |
1237 | 1239 |
1238 | 1240 |
1239 } } // namespace v8::internal | 1241 } } // namespace v8::internal |
1240 | 1242 |
1241 #endif // V8_HYDROGEN_H_ | 1243 #endif // V8_HYDROGEN_H_ |
OLD | NEW |