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

Side by Side Diff: src/incremental-marking.h

Issue 8330021: Add write barrier helper for code patching and refactor stack check patching. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 2 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/ia32/deoptimizer-ia32.cc ('k') | src/incremental-marking.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 Object** slot, 120 Object** slot,
121 Isolate* isolate); 121 Isolate* isolate);
122 122
123 inline bool BaseRecordWrite(HeapObject* obj, Object** slot, Object* value); 123 inline bool BaseRecordWrite(HeapObject* obj, Object** slot, Object* value);
124 124
125 125
126 inline void RecordWrite(HeapObject* obj, Object** slot, Object* value); 126 inline void RecordWrite(HeapObject* obj, Object** slot, Object* value);
127 inline void RecordWriteIntoCode(HeapObject* obj, 127 inline void RecordWriteIntoCode(HeapObject* obj,
128 RelocInfo* rinfo, 128 RelocInfo* rinfo,
129 Object* value); 129 Object* value);
130 void RecordCodeTargetPatch(Code* host, Address pc, HeapObject* value);
130 void RecordCodeTargetPatch(Address pc, HeapObject* value); 131 void RecordCodeTargetPatch(Address pc, HeapObject* value);
131 void RecordWriteOfCodeEntry(JSFunction* host, Object** slot, Code* value); 132 void RecordWriteOfCodeEntry(JSFunction* host, Object** slot, Code* value);
132 133
133 inline void RecordWrites(HeapObject* obj); 134 inline void RecordWrites(HeapObject* obj);
134 135
135 inline void BlackToGreyAndUnshift(HeapObject* obj, MarkBit mark_bit); 136 inline void BlackToGreyAndUnshift(HeapObject* obj, MarkBit mark_bit);
136 137
137 inline void WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit); 138 inline void WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit);
138 139
139 inline void WhiteToGrey(HeapObject* obj, MarkBit mark_bit); 140 inline void WhiteToGrey(HeapObject* obj, MarkBit mark_bit);
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 bool should_hurry_; 248 bool should_hurry_;
248 int allocation_marking_factor_; 249 int allocation_marking_factor_;
249 intptr_t allocated_; 250 intptr_t allocated_;
250 251
251 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); 252 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking);
252 }; 253 };
253 254
254 } } // namespace v8::internal 255 } } // namespace v8::internal
255 256
256 #endif // V8_INCREMENTAL_MARKING_H_ 257 #endif // V8_INCREMENTAL_MARKING_H_
OLDNEW
« no previous file with comments | « src/ia32/deoptimizer-ia32.cc ('k') | src/incremental-marking.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698