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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 HInstruction* BuildIncrement(HValue* value, bool increment); | 784 HInstruction* BuildIncrement(HValue* value, bool increment); |
785 HLoadNamedField* BuildLoadNamedField(HValue* object, | 785 HLoadNamedField* BuildLoadNamedField(HValue* object, |
786 Property* expr, | 786 Property* expr, |
787 Handle<Map> type, | 787 Handle<Map> type, |
788 LookupResult* result, | 788 LookupResult* result, |
789 bool smi_and_map_check); | 789 bool smi_and_map_check); |
790 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 790 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
791 HInstruction* BuildLoadKeyedFastElement(HValue* object, | 791 HInstruction* BuildLoadKeyedFastElement(HValue* object, |
792 HValue* key, | 792 HValue* key, |
793 Property* expr); | 793 Property* expr); |
| 794 HInstruction* BuildLoadKeyedPixelArrayElement(HValue* object, |
| 795 HValue* key, |
| 796 Property* expr); |
794 HInstruction* BuildLoadKeyedGeneric(HValue* object, | 797 HInstruction* BuildLoadKeyedGeneric(HValue* object, |
795 HValue* key); | 798 HValue* key); |
796 | 799 |
797 HInstruction* BuildLoadNamed(HValue* object, | 800 HInstruction* BuildLoadNamed(HValue* object, |
798 Property* prop, | 801 Property* prop, |
799 Handle<Map> map, | 802 Handle<Map> map, |
800 Handle<String> name); | 803 Handle<String> name); |
801 HInstruction* BuildStoreNamed(HValue* object, | 804 HInstruction* BuildStoreNamed(HValue* object, |
802 HValue* value, | 805 HValue* value, |
803 Expression* expr); | 806 Expression* expr); |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 const char* filename_; | 1071 const char* filename_; |
1069 HeapStringAllocator string_allocator_; | 1072 HeapStringAllocator string_allocator_; |
1070 StringStream trace_; | 1073 StringStream trace_; |
1071 int indent_; | 1074 int indent_; |
1072 }; | 1075 }; |
1073 | 1076 |
1074 | 1077 |
1075 } } // namespace v8::internal | 1078 } } // namespace v8::internal |
1076 | 1079 |
1077 #endif // V8_HYDROGEN_H_ | 1080 #endif // V8_HYDROGEN_H_ |
OLD | NEW |