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 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
929 Handle<Map> type, | 929 Handle<Map> type, |
930 LookupResult* result, | 930 LookupResult* result, |
931 bool smi_and_map_check); | 931 bool smi_and_map_check); |
932 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 932 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
933 HInstruction* BuildLoadKeyedGeneric(HValue* object, | 933 HInstruction* BuildLoadKeyedGeneric(HValue* object, |
934 HValue* key); | 934 HValue* key); |
935 HInstruction* BuildExternalArrayElementAccess( | 935 HInstruction* BuildExternalArrayElementAccess( |
936 HValue* external_elements, | 936 HValue* external_elements, |
937 HValue* checked_key, | 937 HValue* checked_key, |
938 HValue* val, | 938 HValue* val, |
939 JSObject::ElementsKind elements_kind, | 939 ElementsKind elements_kind, |
940 bool is_store); | 940 bool is_store); |
941 | 941 |
942 HInstruction* BuildMonomorphicElementAccess(HValue* object, | 942 HInstruction* BuildMonomorphicElementAccess(HValue* object, |
943 HValue* key, | 943 HValue* key, |
944 HValue* val, | 944 HValue* val, |
945 Expression* expr, | 945 Expression* expr, |
946 bool is_store); | 946 bool is_store); |
947 HValue* HandlePolymorphicElementAccess(HValue* object, | 947 HValue* HandlePolymorphicElementAccess(HValue* object, |
948 HValue* key, | 948 HValue* key, |
949 HValue* val, | 949 HValue* val, |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1232 const char* filename_; | 1232 const char* filename_; |
1233 HeapStringAllocator string_allocator_; | 1233 HeapStringAllocator string_allocator_; |
1234 StringStream trace_; | 1234 StringStream trace_; |
1235 int indent_; | 1235 int indent_; |
1236 }; | 1236 }; |
1237 | 1237 |
1238 | 1238 |
1239 } } // namespace v8::internal | 1239 } } // namespace v8::internal |
1240 | 1240 |
1241 #endif // V8_HYDROGEN_H_ | 1241 #endif // V8_HYDROGEN_H_ |
OLD | NEW |