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 813 matching lines...) Loading... |
824 void HandlePolymorphicCallNamed(Call* expr, | 824 void HandlePolymorphicCallNamed(Call* expr, |
825 HValue* receiver, | 825 HValue* receiver, |
826 ZoneMapList* types, | 826 ZoneMapList* types, |
827 Handle<String> name); | 827 Handle<String> name); |
828 | 828 |
829 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 829 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, |
830 HValue* index); | 830 HValue* index); |
831 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 831 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
832 HValue* left, | 832 HValue* left, |
833 HValue* right); | 833 HValue* right); |
834 HInstruction* BuildIncrement(HValue* value, bool increment); | 834 HInstruction* BuildIncrement(HValue* value, |
| 835 bool increment, |
| 836 CountOperation* expr); |
835 HLoadNamedField* BuildLoadNamedField(HValue* object, | 837 HLoadNamedField* BuildLoadNamedField(HValue* object, |
836 Property* expr, | 838 Property* expr, |
837 Handle<Map> type, | 839 Handle<Map> type, |
838 LookupResult* result, | 840 LookupResult* result, |
839 bool smi_and_map_check); | 841 bool smi_and_map_check); |
840 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 842 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
841 HInstruction* BuildLoadKeyedFastElement(HValue* object, | 843 HInstruction* BuildLoadKeyedFastElement(HValue* object, |
842 HValue* key, | 844 HValue* key, |
843 Property* expr); | 845 Property* expr); |
844 HInstruction* BuildLoadKeyedSpecializedArrayElement(HValue* object, | 846 HInstruction* BuildLoadKeyedSpecializedArrayElement(HValue* object, |
(...skipping 294 matching lines...) Loading... |
1139 const char* filename_; | 1141 const char* filename_; |
1140 HeapStringAllocator string_allocator_; | 1142 HeapStringAllocator string_allocator_; |
1141 StringStream trace_; | 1143 StringStream trace_; |
1142 int indent_; | 1144 int indent_; |
1143 }; | 1145 }; |
1144 | 1146 |
1145 | 1147 |
1146 } } // namespace v8::internal | 1148 } } // namespace v8::internal |
1147 | 1149 |
1148 #endif // V8_HYDROGEN_H_ | 1150 #endif // V8_HYDROGEN_H_ |
OLD | NEW |