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

Side by Side Diff: src/assembler.h

Issue 7302003: Support slots recording for compaction during incremental marking. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: fix presubmit, remove last debug check Created 9 years, 5 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/assembler.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 554
555 // Isolate::Current() as an external reference. 555 // Isolate::Current() as an external reference.
556 static ExternalReference isolate_address(); 556 static ExternalReference isolate_address();
557 557
558 // One-of-a-kind references. These references are not part of a general 558 // One-of-a-kind references. These references are not part of a general
559 // pattern. This means that they have to be added to the 559 // pattern. This means that they have to be added to the
560 // ExternalReferenceTable in serialize.cc manually. 560 // ExternalReferenceTable in serialize.cc manually.
561 561
562 static ExternalReference incremental_marking_record_write_function( 562 static ExternalReference incremental_marking_record_write_function(
563 Isolate* isolate); 563 Isolate* isolate);
564 static ExternalReference incremental_evacuation_record_write_function(
565 Isolate* isolate);
564 static ExternalReference store_buffer_overflow_function( 566 static ExternalReference store_buffer_overflow_function(
565 Isolate* isolate); 567 Isolate* isolate);
566 static ExternalReference perform_gc_function(Isolate* isolate); 568 static ExternalReference perform_gc_function(Isolate* isolate);
567 static ExternalReference fill_heap_number_with_random_function( 569 static ExternalReference fill_heap_number_with_random_function(
568 Isolate* isolate); 570 Isolate* isolate);
569 static ExternalReference random_uint32_function(Isolate* isolate); 571 static ExternalReference random_uint32_function(Isolate* isolate);
570 static ExternalReference transcendental_cache_array_address(Isolate* isolate); 572 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
571 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 573 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
572 574
573 // Deoptimization support. 575 // Deoptimization support.
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 public: 862 public:
861 NullCallWrapper() { } 863 NullCallWrapper() { }
862 virtual ~NullCallWrapper() { } 864 virtual ~NullCallWrapper() { }
863 virtual void BeforeCall(int call_size) const { } 865 virtual void BeforeCall(int call_size) const { }
864 virtual void AfterCall() const { } 866 virtual void AfterCall() const { }
865 }; 867 };
866 868
867 } } // namespace v8::internal 869 } } // namespace v8::internal
868 870
869 #endif // V8_ASSEMBLER_H_ 871 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698