| 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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 Token::Value op); | 881 Token::Value op); |
| 882 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 882 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, |
| 883 HValue* index); | 883 HValue* index); |
| 884 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 884 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
| 885 HValue* left, | 885 HValue* left, |
| 886 HValue* right); | 886 HValue* right); |
| 887 HInstruction* BuildBinaryOperation(Token::Value op, | 887 HInstruction* BuildBinaryOperation(Token::Value op, |
| 888 HValue* left, | 888 HValue* left, |
| 889 HValue* right, | 889 HValue* right, |
| 890 TypeInfo info); | 890 TypeInfo info); |
| 891 HInstruction* BuildIncrement(HValue* value, | 891 HInstruction* BuildIncrement(bool returns_original_input, |
| 892 bool increment, | |
| 893 CountOperation* expr); | 892 CountOperation* expr); |
| 894 HLoadNamedField* BuildLoadNamedField(HValue* object, | 893 HLoadNamedField* BuildLoadNamedField(HValue* object, |
| 895 Property* expr, | 894 Property* expr, |
| 896 Handle<Map> type, | 895 Handle<Map> type, |
| 897 LookupResult* result, | 896 LookupResult* result, |
| 898 bool smi_and_map_check); | 897 bool smi_and_map_check); |
| 899 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 898 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
| 900 HInstruction* BuildLoadKeyedFastElement(HValue* object, | 899 HInstruction* BuildLoadKeyedFastElement(HValue* object, |
| 901 HValue* key, | 900 HValue* key, |
| 902 Property* expr); | 901 Property* expr); |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 const char* filename_; | 1197 const char* filename_; |
| 1199 HeapStringAllocator string_allocator_; | 1198 HeapStringAllocator string_allocator_; |
| 1200 StringStream trace_; | 1199 StringStream trace_; |
| 1201 int indent_; | 1200 int indent_; |
| 1202 }; | 1201 }; |
| 1203 | 1202 |
| 1204 | 1203 |
| 1205 } } // namespace v8::internal | 1204 } } // namespace v8::internal |
| 1206 | 1205 |
| 1207 #endif // V8_HYDROGEN_H_ | 1206 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |