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

Side by Side Diff: src/objects-visiting.h

Issue 11358177: Refactoring incremental marking (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
« no previous file with comments | « src/incremental-marking.cc ('k') | no next file » | 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 static inline void VisitCodeEntry(Heap* heap, Address entry_address); 389 static inline void VisitCodeEntry(Heap* heap, Address entry_address);
390 static inline void VisitEmbeddedPointer(Heap* heap, RelocInfo* rinfo); 390 static inline void VisitEmbeddedPointer(Heap* heap, RelocInfo* rinfo);
391 static inline void VisitGlobalPropertyCell(Heap* heap, RelocInfo* rinfo); 391 static inline void VisitGlobalPropertyCell(Heap* heap, RelocInfo* rinfo);
392 static inline void VisitDebugTarget(Heap* heap, RelocInfo* rinfo); 392 static inline void VisitDebugTarget(Heap* heap, RelocInfo* rinfo);
393 static inline void VisitCodeTarget(Heap* heap, RelocInfo* rinfo); 393 static inline void VisitCodeTarget(Heap* heap, RelocInfo* rinfo);
394 static inline void VisitCodeAgeSequence(Heap* heap, RelocInfo* rinfo); 394 static inline void VisitCodeAgeSequence(Heap* heap, RelocInfo* rinfo);
395 static inline void VisitExternalReference(RelocInfo* rinfo) { } 395 static inline void VisitExternalReference(RelocInfo* rinfo) { }
396 static inline void VisitRuntimeEntry(RelocInfo* rinfo) { } 396 static inline void VisitRuntimeEntry(RelocInfo* rinfo) { }
397 397
398 // TODO(mstarzinger): This should be made protected once refactoring is done. 398 // TODO(mstarzinger): This should be made protected once refactoring is done.
399 static inline void VisitNativeContext(Map* map, HeapObject* object);
400
401 // TODO(mstarzinger): This should be made protected once refactoring is done.
402 // Mark non-optimize code for functions inlined into the given optimized 399 // Mark non-optimize code for functions inlined into the given optimized
403 // code. This will prevent it from being flushed. 400 // code. This will prevent it from being flushed.
404 static void MarkInlinedFunctionsCode(Heap* heap, Code* code); 401 static void MarkInlinedFunctionsCode(Heap* heap, Code* code);
405 402
406 protected: 403 protected:
407 static inline void VisitMap(Map* map, HeapObject* object); 404 static inline void VisitMap(Map* map, HeapObject* object);
408 static inline void VisitCode(Map* map, HeapObject* object); 405 static inline void VisitCode(Map* map, HeapObject* object);
409 static inline void VisitSharedFunctionInfo(Map* map, HeapObject* object); 406 static inline void VisitSharedFunctionInfo(Map* map, HeapObject* object);
410 static inline void VisitJSFunction(Map* map, HeapObject* object); 407 static inline void VisitJSFunction(Map* map, HeapObject* object);
411 static inline void VisitJSRegExp(Map* map, HeapObject* object); 408 static inline void VisitJSRegExp(Map* map, HeapObject* object);
409 static inline void VisitNativeContext(Map* map, HeapObject* object);
412 410
413 // Mark pointers in a Map and its TransitionArray together, possibly 411 // Mark pointers in a Map and its TransitionArray together, possibly
414 // treating transitions or back pointers weak. 412 // treating transitions or back pointers weak.
415 static void MarkMapContents(Heap* heap, Map* map); 413 static void MarkMapContents(Heap* heap, Map* map);
416 static void MarkTransitionArray(Heap* heap, TransitionArray* transitions); 414 static void MarkTransitionArray(Heap* heap, TransitionArray* transitions);
417 415
418 // Code flushing support. 416 // Code flushing support.
419 static inline bool IsFlushable(Heap* heap, JSFunction* function); 417 static inline bool IsFlushable(Heap* heap, JSFunction* function);
420 static inline bool IsFlushable(Heap* heap, SharedFunctionInfo* shared_info); 418 static inline bool IsFlushable(Heap* heap, SharedFunctionInfo* shared_info);
421 419
(...skipping 29 matching lines...) Expand all
451 449
452 450
453 template<typename StaticVisitor> 451 template<typename StaticVisitor>
454 VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback> 452 VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback>
455 StaticMarkingVisitor<StaticVisitor>::table_; 453 StaticMarkingVisitor<StaticVisitor>::table_;
456 454
457 455
458 } } // namespace v8::internal 456 } } // namespace v8::internal
459 457
460 #endif // V8_OBJECTS_VISITING_H_ 458 #endif // V8_OBJECTS_VISITING_H_
OLDNEW
« no previous file with comments | « src/incremental-marking.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698