| 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 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1142 Property* expr, | 1142 Property* expr, |
| 1143 Handle<Map> map, | 1143 Handle<Map> map, |
| 1144 Handle<Object> callback, | 1144 Handle<Object> callback, |
| 1145 Handle<JSObject> holder); | 1145 Handle<JSObject> holder); |
| 1146 HInstruction* BuildLoadNamed(HValue* object, | 1146 HInstruction* BuildLoadNamed(HValue* object, |
| 1147 Property* prop, | 1147 Property* prop, |
| 1148 Handle<Map> map, | 1148 Handle<Map> map, |
| 1149 Handle<String> name); | 1149 Handle<String> name); |
| 1150 HInstruction* BuildStoreNamed(HValue* object, | 1150 HInstruction* BuildStoreNamed(HValue* object, |
| 1151 HValue* value, | 1151 HValue* value, |
| 1152 Expression* expr); | 1152 Handle<Map> type, |
| 1153 HInstruction* BuildStoreNamed(HValue* object, | 1153 Expression* key); |
| 1154 HValue* value, | |
| 1155 ObjectLiteral::Property* prop); | |
| 1156 HInstruction* BuildStoreNamedField(HValue* object, | 1154 HInstruction* BuildStoreNamedField(HValue* object, |
| 1157 Handle<String> name, | 1155 Handle<String> name, |
| 1158 HValue* value, | 1156 HValue* value, |
| 1159 Handle<Map> type, | 1157 Handle<Map> type, |
| 1160 LookupResult* lookup, | 1158 LookupResult* lookup, |
| 1161 bool smi_and_map_check); | 1159 bool smi_and_map_check); |
| 1162 HInstruction* BuildStoreNamedGeneric(HValue* object, | 1160 HInstruction* BuildStoreNamedGeneric(HValue* object, |
| 1163 Handle<String> name, | 1161 Handle<String> name, |
| 1164 HValue* value); | 1162 HValue* value); |
| 1165 HInstruction* BuildStoreKeyedGeneric(HValue* object, | 1163 HInstruction* BuildStoreKeyedGeneric(HValue* object, |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 const char* filename_; | 1443 const char* filename_; |
| 1446 HeapStringAllocator string_allocator_; | 1444 HeapStringAllocator string_allocator_; |
| 1447 StringStream trace_; | 1445 StringStream trace_; |
| 1448 int indent_; | 1446 int indent_; |
| 1449 }; | 1447 }; |
| 1450 | 1448 |
| 1451 | 1449 |
| 1452 } } // namespace v8::internal | 1450 } } // namespace v8::internal |
| 1453 | 1451 |
| 1454 #endif // V8_HYDROGEN_H_ | 1452 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |