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 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1144 Expression* expr, | 1144 Expression* expr, |
1145 int ast_id, | 1145 int ast_id, |
1146 int position, | 1146 int position, |
1147 bool is_store, | 1147 bool is_store, |
1148 bool* has_side_effects); | 1148 bool* has_side_effects); |
1149 | 1149 |
1150 HInstruction* BuildCallGetter(HValue* object, | 1150 HInstruction* BuildCallGetter(HValue* object, |
1151 Handle<Map> map, | 1151 Handle<Map> map, |
1152 Handle<AccessorPair> accessors, | 1152 Handle<AccessorPair> accessors, |
1153 Handle<JSObject> holder); | 1153 Handle<JSObject> holder); |
1154 HInstruction* BuildLoadNamed(HValue* object, | 1154 HInstruction* BuildLoadNamedMonomorphic(HValue* object, |
1155 Handle<String> name, | 1155 Handle<String> name, |
1156 Property* expr, | 1156 Property* expr, |
1157 Handle<Map> map); | 1157 Handle<Map> map); |
1158 HInstruction* BuildCallSetter(HValue* object, | 1158 HInstruction* BuildCallSetter(HValue* object, |
1159 HValue* value, | 1159 HValue* value, |
1160 Handle<Map> map, | 1160 Handle<Map> map, |
1161 Handle<AccessorPair> accessors, | 1161 Handle<AccessorPair> accessors, |
1162 Handle<JSObject> holder); | 1162 Handle<JSObject> holder); |
1163 HInstruction* BuildStoreNamed(HValue* object, | 1163 HInstruction* BuildStoreNamedMonomorphic(HValue* object, |
1164 Handle<String> name, | 1164 Handle<String> name, |
1165 HValue* value, | 1165 HValue* value, |
1166 Handle<Map> map); | 1166 Handle<Map> map); |
1167 HInstruction* BuildStoreNamedField(HValue* object, | 1167 HInstruction* BuildStoreNamedField(HValue* object, |
1168 Handle<String> name, | 1168 Handle<String> name, |
1169 HValue* value, | 1169 HValue* value, |
1170 Handle<Map> map, | 1170 Handle<Map> map, |
1171 LookupResult* lookup, | 1171 LookupResult* lookup, |
1172 bool smi_and_map_check); | 1172 bool smi_and_map_check); |
1173 HInstruction* BuildStoreNamedGeneric(HValue* object, | 1173 HInstruction* BuildStoreNamedGeneric(HValue* object, |
1174 Handle<String> name, | 1174 Handle<String> name, |
1175 HValue* value); | 1175 HValue* value); |
1176 HInstruction* BuildStoreKeyedGeneric(HValue* object, | 1176 HInstruction* BuildStoreKeyedGeneric(HValue* object, |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1456 const char* filename_; | 1456 const char* filename_; |
1457 HeapStringAllocator string_allocator_; | 1457 HeapStringAllocator string_allocator_; |
1458 StringStream trace_; | 1458 StringStream trace_; |
1459 int indent_; | 1459 int indent_; |
1460 }; | 1460 }; |
1461 | 1461 |
1462 | 1462 |
1463 } } // namespace v8::internal | 1463 } } // namespace v8::internal |
1464 | 1464 |
1465 #endif // V8_HYDROGEN_H_ | 1465 #endif // V8_HYDROGEN_H_ |
OLD | NEW |