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 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 HValue* BuildCheckMap(HValue* obj, Handle<Map> map); | 1265 HValue* BuildCheckMap(HValue* obj, Handle<Map> map); |
1266 HValue* BuildCheckString(HValue* string); | 1266 HValue* BuildCheckString(HValue* string); |
1267 HValue* BuildWrapReceiver(HValue* object, HValue* function); | 1267 HValue* BuildWrapReceiver(HValue* object, HValue* function); |
1268 | 1268 |
1269 // Building common constructs | 1269 // Building common constructs |
1270 HValue* BuildCheckForCapacityGrow(HValue* object, | 1270 HValue* BuildCheckForCapacityGrow(HValue* object, |
1271 HValue* elements, | 1271 HValue* elements, |
1272 ElementsKind kind, | 1272 ElementsKind kind, |
1273 HValue* length, | 1273 HValue* length, |
1274 HValue* key, | 1274 HValue* key, |
1275 bool is_js_array); | 1275 bool is_js_array, |
| 1276 bool is_store); |
1276 | 1277 |
1277 HValue* BuildCopyElementsOnWrite(HValue* object, | 1278 HValue* BuildCopyElementsOnWrite(HValue* object, |
1278 HValue* elements, | 1279 HValue* elements, |
1279 ElementsKind kind, | 1280 ElementsKind kind, |
1280 HValue* length); | 1281 HValue* length); |
1281 | 1282 |
1282 void BuildTransitionElementsKind(HValue* object, | 1283 void BuildTransitionElementsKind(HValue* object, |
1283 HValue* map, | 1284 HValue* map, |
1284 ElementsKind from_kind, | 1285 ElementsKind from_kind, |
1285 ElementsKind to_kind, | 1286 ElementsKind to_kind, |
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2630 } | 2631 } |
2631 | 2632 |
2632 private: | 2633 private: |
2633 HGraphBuilder* builder_; | 2634 HGraphBuilder* builder_; |
2634 }; | 2635 }; |
2635 | 2636 |
2636 | 2637 |
2637 } } // namespace v8::internal | 2638 } } // namespace v8::internal |
2638 | 2639 |
2639 #endif // V8_HYDROGEN_H_ | 2640 #endif // V8_HYDROGEN_H_ |
OLD | NEW |