| 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 858 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 Handle<String> name); | 869 Handle<String> name); |
| 870 | 870 |
| 871 HCompareSymbolEq* BuildSymbolCompare(HValue* left, | 871 HCompareSymbolEq* BuildSymbolCompare(HValue* left, |
| 872 HValue* right, | 872 HValue* right, |
| 873 Token::Value op); | 873 Token::Value op); |
| 874 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 874 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, |
| 875 HValue* index); | 875 HValue* index); |
| 876 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 876 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
| 877 HValue* left, | 877 HValue* left, |
| 878 HValue* right); | 878 HValue* right); |
| 879 HInstruction* BuildBinaryOperation(Token::Value op, | |
| 880 HValue* left, | |
| 881 HValue* right, | |
| 882 TypeInfo info); | |
| 883 HInstruction* BuildIncrement(bool returns_original_input, | 879 HInstruction* BuildIncrement(bool returns_original_input, |
| 884 CountOperation* expr); | 880 CountOperation* expr); |
| 885 HLoadNamedField* BuildLoadNamedField(HValue* object, | 881 HLoadNamedField* BuildLoadNamedField(HValue* object, |
| 886 Property* expr, | 882 Property* expr, |
| 887 Handle<Map> type, | 883 Handle<Map> type, |
| 888 LookupResult* result, | 884 LookupResult* result, |
| 889 bool smi_and_map_check); | 885 bool smi_and_map_check); |
| 890 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 886 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
| 891 HInstruction* BuildLoadKeyedFastElement(HValue* object, | 887 HInstruction* BuildLoadKeyedFastElement(HValue* object, |
| 892 HValue* key, | 888 HValue* key, |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1193 const char* filename_; | 1189 const char* filename_; |
| 1194 HeapStringAllocator string_allocator_; | 1190 HeapStringAllocator string_allocator_; |
| 1195 StringStream trace_; | 1191 StringStream trace_; |
| 1196 int indent_; | 1192 int indent_; |
| 1197 }; | 1193 }; |
| 1198 | 1194 |
| 1199 | 1195 |
| 1200 } } // namespace v8::internal | 1196 } } // namespace v8::internal |
| 1201 | 1197 |
| 1202 #endif // V8_HYDROGEN_H_ | 1198 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |