| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 bool is_store); | 1082 bool is_store); |
| 1083 HInstruction* BuildFastElementAccess(HValue* elements, | 1083 HInstruction* BuildFastElementAccess(HValue* elements, |
| 1084 HValue* checked_key, | 1084 HValue* checked_key, |
| 1085 HValue* val, | 1085 HValue* val, |
| 1086 ElementsKind elements_kind, | 1086 ElementsKind elements_kind, |
| 1087 bool is_store); | 1087 bool is_store); |
| 1088 | 1088 |
| 1089 HInstruction* BuildMonomorphicElementAccess(HValue* object, | 1089 HInstruction* BuildMonomorphicElementAccess(HValue* object, |
| 1090 HValue* key, | 1090 HValue* key, |
| 1091 HValue* val, | 1091 HValue* val, |
| 1092 HValue* dependency, |
| 1092 Handle<Map> map, | 1093 Handle<Map> map, |
| 1093 bool is_store); | 1094 bool is_store); |
| 1094 HValue* HandlePolymorphicElementAccess(HValue* object, | 1095 HValue* HandlePolymorphicElementAccess(HValue* object, |
| 1095 HValue* key, | 1096 HValue* key, |
| 1096 HValue* val, | 1097 HValue* val, |
| 1097 Expression* prop, | 1098 Expression* prop, |
| 1098 int ast_id, | 1099 int ast_id, |
| 1099 int position, | 1100 int position, |
| 1100 bool is_store, | 1101 bool is_store, |
| 1101 bool* has_side_effects); | 1102 bool* has_side_effects); |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1408 const char* filename_; | 1409 const char* filename_; |
| 1409 HeapStringAllocator string_allocator_; | 1410 HeapStringAllocator string_allocator_; |
| 1410 StringStream trace_; | 1411 StringStream trace_; |
| 1411 int indent_; | 1412 int indent_; |
| 1412 }; | 1413 }; |
| 1413 | 1414 |
| 1414 | 1415 |
| 1415 } } // namespace v8::internal | 1416 } } // namespace v8::internal |
| 1416 | 1417 |
| 1417 #endif // V8_HYDROGEN_H_ | 1418 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |