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

Side by Side Diff: src/heap-snapshot-generator.h

Issue 17064002: Refactor only: Rename JSGlobaPropertyCell to PropertyCell (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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/heap-inl.h ('k') | src/heap-snapshot-generator.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 void ExtractJSObjectReferences(int entry, JSObject* js_obj); 458 void ExtractJSObjectReferences(int entry, JSObject* js_obj);
459 void ExtractStringReferences(int entry, String* obj); 459 void ExtractStringReferences(int entry, String* obj);
460 void ExtractContextReferences(int entry, Context* context); 460 void ExtractContextReferences(int entry, Context* context);
461 void ExtractMapReferences(int entry, Map* map); 461 void ExtractMapReferences(int entry, Map* map);
462 void ExtractSharedFunctionInfoReferences(int entry, 462 void ExtractSharedFunctionInfoReferences(int entry,
463 SharedFunctionInfo* shared); 463 SharedFunctionInfo* shared);
464 void ExtractScriptReferences(int entry, Script* script); 464 void ExtractScriptReferences(int entry, Script* script);
465 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache); 465 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache);
466 void ExtractCodeReferences(int entry, Code* code); 466 void ExtractCodeReferences(int entry, Code* code);
467 void ExtractCellReferences(int entry, Cell* cell); 467 void ExtractCellReferences(int entry, Cell* cell);
468 void ExtractJSGlobalPropertyCellReferences(int entry, 468 void ExtractPropertyCellReferences(int entry, PropertyCell* cell);
469 JSGlobalPropertyCell* cell);
470 void ExtractClosureReferences(JSObject* js_obj, int entry); 469 void ExtractClosureReferences(JSObject* js_obj, int entry);
471 void ExtractPropertyReferences(JSObject* js_obj, int entry); 470 void ExtractPropertyReferences(JSObject* js_obj, int entry);
472 void ExtractElementReferences(JSObject* js_obj, int entry); 471 void ExtractElementReferences(JSObject* js_obj, int entry);
473 void ExtractInternalReferences(JSObject* js_obj, int entry); 472 void ExtractInternalReferences(JSObject* js_obj, int entry);
474 bool IsEssentialObject(Object* object); 473 bool IsEssentialObject(Object* object);
475 void SetContextReference(HeapObject* parent_obj, 474 void SetContextReference(HeapObject* parent_obj,
476 int parent, 475 int parent,
477 String* reference_name, 476 String* reference_name,
478 Object* child, 477 Object* child,
479 int field_offset); 478 int field_offset);
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 friend class HeapSnapshotJSONSerializerIterator; 680 friend class HeapSnapshotJSONSerializerIterator;
682 681
683 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); 682 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer);
684 }; 683 };
685 684
686 685
687 } } // namespace v8::internal 686 } } // namespace v8::internal
688 687
689 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ 688 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_
690 689
OLDNEW
« no previous file with comments | « src/heap-inl.h ('k') | src/heap-snapshot-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698