| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |