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

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 built on site fields in another CL. 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 2353 matching lines...) Expand 10 before | Expand all | Expand 10 after
2364 2364
2365 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, 2365 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object,
2366 HInstruction* object); 2366 HInstruction* object);
2367 2367
2368 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, 2368 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object,
2369 HInstruction* object, 2369 HInstruction* object,
2370 HInstruction* object_elements); 2370 HInstruction* object_elements);
2371 2371
2372 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, 2372 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object,
2373 HInstruction* object, 2373 HInstruction* object,
2374 AllocationSiteContext* site_context); 2374 AllocationSiteContext* site_context,
2375 PretenureFlag pretenure_flag);
2375 2376
2376 void BuildEmitElements(Handle<JSObject> boilerplate_object, 2377 void BuildEmitElements(Handle<JSObject> boilerplate_object,
2377 Handle<FixedArrayBase> elements, 2378 Handle<FixedArrayBase> elements,
2378 HValue* object_elements, 2379 HValue* object_elements,
2379 AllocationSiteContext* site_context); 2380 AllocationSiteContext* site_context);
2380 2381
2381 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements, 2382 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements,
2382 ElementsKind kind, 2383 ElementsKind kind,
2383 HValue* object_elements); 2384 HValue* object_elements);
2384 2385
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
2578 } 2579 }
2579 2580
2580 private: 2581 private:
2581 HGraphBuilder* builder_; 2582 HGraphBuilder* builder_;
2582 }; 2583 };
2583 2584
2584 2585
2585 } } // namespace v8::internal 2586 } } // namespace v8::internal
2586 2587
2587 #endif // V8_HYDROGEN_H_ 2588 #endif // V8_HYDROGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698