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 2133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2144 BailoutId ast_id); | 2144 BailoutId ast_id); |
2145 | 2145 |
2146 void HandlePropertyAssignment(Assignment* expr); | 2146 void HandlePropertyAssignment(Assignment* expr); |
2147 void HandleCompoundAssignment(Assignment* expr); | 2147 void HandleCompoundAssignment(Assignment* expr); |
2148 void HandlePolymorphicLoadNamedField(BailoutId ast_id, | 2148 void HandlePolymorphicLoadNamedField(BailoutId ast_id, |
2149 BailoutId return_id, | 2149 BailoutId return_id, |
2150 HValue* object, | 2150 HValue* object, |
2151 SmallMapList* types, | 2151 SmallMapList* types, |
2152 Handle<String> name); | 2152 Handle<String> name); |
2153 | 2153 |
| 2154 void VisitTypedArrayInitialize(CallRuntime* expr); |
| 2155 |
2154 bool IsCallNewArrayInlineable(CallNew* expr); | 2156 bool IsCallNewArrayInlineable(CallNew* expr); |
2155 void BuildInlinedCallNewArray(CallNew* expr); | 2157 void BuildInlinedCallNewArray(CallNew* expr); |
2156 | 2158 |
2157 void VisitDataViewInitialize(CallRuntime* expr); | 2159 void VisitDataViewInitialize(CallRuntime* expr); |
2158 | 2160 |
2159 class PropertyAccessInfo { | 2161 class PropertyAccessInfo { |
2160 public: | 2162 public: |
2161 PropertyAccessInfo(Isolate* isolate, Handle<Map> map, Handle<String> name) | 2163 PropertyAccessInfo(Isolate* isolate, Handle<Map> map, Handle<String> name) |
2162 : lookup_(isolate), | 2164 : lookup_(isolate), |
2163 map_(map), | 2165 map_(map), |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2577 } | 2579 } |
2578 | 2580 |
2579 private: | 2581 private: |
2580 HGraphBuilder* builder_; | 2582 HGraphBuilder* builder_; |
2581 }; | 2583 }; |
2582 | 2584 |
2583 | 2585 |
2584 } } // namespace v8::internal | 2586 } } // namespace v8::internal |
2585 | 2587 |
2586 #endif // V8_HYDROGEN_H_ | 2588 #endif // V8_HYDROGEN_H_ |
OLD | NEW |