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

Side by Side Diff: src/hydrogen.h

Issue 59023003: Generate TypedArrayInitialize builtin in hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased and updated Created 7 years, 1 month 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
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 2133 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 class PropertyAccessInfo { 2159 class PropertyAccessInfo {
2158 public: 2160 public:
2159 PropertyAccessInfo(Isolate* isolate, Handle<Map> map, Handle<String> name) 2161 PropertyAccessInfo(Isolate* isolate, Handle<Map> map, Handle<String> name)
2160 : lookup_(isolate), 2162 : lookup_(isolate),
2161 map_(map), 2163 map_(map),
2162 name_(name), 2164 name_(name),
2163 access_(HObjectAccess::ForMap()) { } 2165 access_(HObjectAccess::ForMap()) { }
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
2575 } 2577 }
2576 2578
2577 private: 2579 private:
2578 HGraphBuilder* builder_; 2580 HGraphBuilder* builder_;
2579 }; 2581 };
2580 2582
2581 2583
2582 } } // namespace v8::internal 2584 } } // namespace v8::internal
2583 2585
2584 #endif // V8_HYDROGEN_H_ 2586 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698