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

Side by Side Diff: src/hydrogen.h

Issue 40063002: Bookkeeping for allocation site pretenuring (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE. Created 7 years 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/heap-inl.h ('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 2404 matching lines...) Expand 10 before | Expand all | Expand 10 after
2415 2415
2416 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, 2416 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object,
2417 HInstruction* object); 2417 HInstruction* object);
2418 2418
2419 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, 2419 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object,
2420 HInstruction* object, 2420 HInstruction* object,
2421 HInstruction* object_elements); 2421 HInstruction* object_elements);
2422 2422
2423 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, 2423 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object,
2424 HInstruction* object, 2424 HInstruction* object,
2425 AllocationSiteUsageContext* site_context); 2425 AllocationSiteUsageContext* site_context,
2426 PretenureFlag pretenure_flag);
2426 2427
2427 void BuildEmitElements(Handle<JSObject> boilerplate_object, 2428 void BuildEmitElements(Handle<JSObject> boilerplate_object,
2428 Handle<FixedArrayBase> elements, 2429 Handle<FixedArrayBase> elements,
2429 HValue* object_elements, 2430 HValue* object_elements,
2430 AllocationSiteUsageContext* site_context); 2431 AllocationSiteUsageContext* site_context);
2431 2432
2432 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements, 2433 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements,
2433 ElementsKind kind, 2434 ElementsKind kind,
2434 HValue* object_elements); 2435 HValue* object_elements);
2435 2436
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
2629 } 2630 }
2630 2631
2631 private: 2632 private:
2632 HGraphBuilder* builder_; 2633 HGraphBuilder* builder_;
2633 }; 2634 };
2634 2635
2635 2636
2636 } } // namespace v8::internal 2637 } } // namespace v8::internal
2637 2638
2638 #endif // V8_HYDROGEN_H_ 2639 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/heap-inl.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698