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 2582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2593 | 2593 |
2594 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements, | 2594 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements, |
2595 ElementsKind kind, | 2595 ElementsKind kind, |
2596 HValue* object_elements); | 2596 HValue* object_elements); |
2597 | 2597 |
2598 void BuildEmitFixedArray(Handle<FixedArrayBase> elements, | 2598 void BuildEmitFixedArray(Handle<FixedArrayBase> elements, |
2599 ElementsKind kind, | 2599 ElementsKind kind, |
2600 HValue* object_elements, | 2600 HValue* object_elements, |
2601 AllocationSiteUsageContext* site_context); | 2601 AllocationSiteUsageContext* site_context); |
2602 | 2602 |
| 2603 void AddCheckMapsUntilHolder(Handle<JSObject> holder, |
| 2604 Handle<Map> receiver_map, |
| 2605 HValue* checked_object); |
| 2606 |
2603 void AddCheckPrototypeMaps(Handle<JSObject> holder, | 2607 void AddCheckPrototypeMaps(Handle<JSObject> holder, |
2604 Handle<Map> receiver_map); | 2608 Handle<Map> receiver_map); |
2605 | 2609 |
2606 HInstruction* NewPlainFunctionCall(HValue* fun, | 2610 HInstruction* NewPlainFunctionCall(HValue* fun, |
2607 int argument_count, | 2611 int argument_count, |
2608 bool pass_argument_count); | 2612 bool pass_argument_count); |
2609 | 2613 |
2610 HInstruction* NewArgumentAdaptorCall(HValue* fun, HValue* context, | 2614 HInstruction* NewArgumentAdaptorCall(HValue* fun, HValue* context, |
2611 int argument_count, | 2615 int argument_count, |
2612 HValue* expected_param_count); | 2616 HValue* expected_param_count); |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2798 } | 2802 } |
2799 | 2803 |
2800 private: | 2804 private: |
2801 HGraphBuilder* builder_; | 2805 HGraphBuilder* builder_; |
2802 }; | 2806 }; |
2803 | 2807 |
2804 | 2808 |
2805 } } // namespace v8::internal | 2809 } } // namespace v8::internal |
2806 | 2810 |
2807 #endif // V8_HYDROGEN_H_ | 2811 #endif // V8_HYDROGEN_H_ |
OLD | NEW |