Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: src/hydrogen.h

Issue 203443002: Refactor inlined typed array runtime functions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/full-codegen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2301 matching lines...) Expand 10 before | Expand all | Expand 10 after
2312 void HandlePropertyAssignment(Assignment* expr); 2312 void HandlePropertyAssignment(Assignment* expr);
2313 void HandleCompoundAssignment(Assignment* expr); 2313 void HandleCompoundAssignment(Assignment* expr);
2314 void HandlePolymorphicNamedFieldAccess(PropertyAccessType access_type, 2314 void HandlePolymorphicNamedFieldAccess(PropertyAccessType access_type,
2315 BailoutId ast_id, 2315 BailoutId ast_id,
2316 BailoutId return_id, 2316 BailoutId return_id,
2317 HValue* object, 2317 HValue* object,
2318 HValue* value, 2318 HValue* value,
2319 SmallMapList* types, 2319 SmallMapList* types,
2320 Handle<String> name); 2320 Handle<String> name);
2321 2321
2322 void VisitTypedArrayInitialize(CallRuntime* expr);
2323
2324 bool IsCallNewArrayInlineable(CallNew* expr); 2322 bool IsCallNewArrayInlineable(CallNew* expr);
2325 void BuildInlinedCallNewArray(CallNew* expr); 2323 void BuildInlinedCallNewArray(CallNew* expr);
2326 2324
2327 void VisitDataViewInitialize(CallRuntime* expr);
2328
2329 class PropertyAccessInfo { 2325 class PropertyAccessInfo {
2330 public: 2326 public:
2331 PropertyAccessInfo(HOptimizedGraphBuilder* builder, 2327 PropertyAccessInfo(HOptimizedGraphBuilder* builder,
2332 PropertyAccessType access_type, 2328 PropertyAccessType access_type,
2333 Type* type, 2329 Type* type,
2334 Handle<String> name) 2330 Handle<String> name)
2335 : lookup_(builder->isolate()), 2331 : lookup_(builder->isolate()),
2336 builder_(builder), 2332 builder_(builder),
2337 access_type_(access_type), 2333 access_type_(access_type),
2338 type_(type), 2334 type_(type),
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
2786 } 2782 }
2787 2783
2788 private: 2784 private:
2789 HGraphBuilder* builder_; 2785 HGraphBuilder* builder_;
2790 }; 2786 };
2791 2787
2792 2788
2793 } } // namespace v8::internal 2789 } } // namespace v8::internal
2794 2790
2795 #endif // V8_HYDROGEN_H_ 2791 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698