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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
935 bool smi_and_map_check); | 935 bool smi_and_map_check); |
936 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 936 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
937 HInstruction* BuildLoadKeyedGeneric(HValue* object, | 937 HInstruction* BuildLoadKeyedGeneric(HValue* object, |
938 HValue* key); | 938 HValue* key); |
939 HInstruction* BuildExternalArrayElementAccess( | 939 HInstruction* BuildExternalArrayElementAccess( |
940 HValue* external_elements, | 940 HValue* external_elements, |
941 HValue* checked_key, | 941 HValue* checked_key, |
942 HValue* val, | 942 HValue* val, |
943 ElementsKind elements_kind, | 943 ElementsKind elements_kind, |
944 bool is_store); | 944 bool is_store); |
| 945 HInstruction* BuildFastElementAccess(HValue* elements, |
| 946 HValue* checked_key, |
| 947 HValue* val, |
| 948 ElementsKind elements_kind, |
| 949 bool is_store); |
945 | 950 |
946 HInstruction* BuildMonomorphicElementAccess(HValue* object, | 951 HInstruction* BuildMonomorphicElementAccess(HValue* object, |
947 HValue* key, | 952 HValue* key, |
948 HValue* val, | 953 HValue* val, |
949 Expression* expr, | 954 Expression* expr, |
950 bool is_store); | 955 bool is_store); |
951 HValue* HandlePolymorphicElementAccess(HValue* object, | 956 HValue* HandlePolymorphicElementAccess(HValue* object, |
952 HValue* key, | 957 HValue* key, |
953 HValue* val, | 958 HValue* val, |
954 Expression* prop, | 959 Expression* prop, |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 const char* filename_; | 1241 const char* filename_; |
1237 HeapStringAllocator string_allocator_; | 1242 HeapStringAllocator string_allocator_; |
1238 StringStream trace_; | 1243 StringStream trace_; |
1239 int indent_; | 1244 int indent_; |
1240 }; | 1245 }; |
1241 | 1246 |
1242 | 1247 |
1243 } } // namespace v8::internal | 1248 } } // namespace v8::internal |
1244 | 1249 |
1245 #endif // V8_HYDROGEN_H_ | 1250 #endif // V8_HYDROGEN_H_ |
OLD | NEW |