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

Side by Side Diff: src/hydrogen.h

Issue 25146007: Don't create mementos for shallow SMI array literals in crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Code comments Created 7 years, 2 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 | « no previous file | 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 2226 matching lines...) Expand 10 before | Expand all | Expand 10 after
2237 HValue* value, 2237 HValue* value,
2238 Handle<Map> map); 2238 Handle<Map> map);
2239 HInstruction* BuildStoreKeyedGeneric(HValue* object, 2239 HInstruction* BuildStoreKeyedGeneric(HValue* object,
2240 HValue* key, 2240 HValue* key,
2241 HValue* value); 2241 HValue* value);
2242 2242
2243 HValue* BuildContextChainWalk(Variable* var); 2243 HValue* BuildContextChainWalk(Variable* var);
2244 2244
2245 HInstruction* BuildThisFunction(); 2245 HInstruction* BuildThisFunction();
2246 2246
2247 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object, 2247 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object);
2248 Handle<Object> allocation_site,
2249 AllocationSiteMode mode);
2250 2248
2251 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, 2249 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object,
2252 HInstruction* object); 2250 HInstruction* object);
2253 2251
2254 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, 2252 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object,
2255 HInstruction* object, 2253 HInstruction* object,
2256 HInstruction* object_elements); 2254 HInstruction* object_elements);
2257 2255
2258 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, 2256 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object,
2259 HInstruction* object); 2257 HInstruction* object);
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
2461 } 2459 }
2462 2460
2463 private: 2461 private:
2464 HGraphBuilder* builder_; 2462 HGraphBuilder* builder_;
2465 }; 2463 };
2466 2464
2467 2465
2468 } } // namespace v8::internal 2466 } } // namespace v8::internal
2469 2467
2470 #endif // V8_HYDROGEN_H_ 2468 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698