HomeSort by relevance Sort by last modified time
    Searched refs:MarkBit (Results 1 - 11 of 11) sorted by null

  /external/v8/src/heap/
mark-compact.h 33 INLINE(static MarkBit MarkBitFrom(Address addr)) {
38 INLINE(static MarkBit MarkBitFrom(HeapObject* obj)) {
44 INLINE(static bool IsImpossible(MarkBit mark_bit)) {
50 INLINE(static bool IsBlack(MarkBit mark_bit)) {
56 INLINE(static bool IsWhite(MarkBit mark_bit)) {
63 INLINE(static bool IsGrey(MarkBit mark_bit)) {
69 INLINE(static bool IsBlackOrGrey(MarkBit mark_bit)) { return mark_bit.Get(); }
71 INLINE(static void MarkBlack(MarkBit mark_bit)) {
76 INLINE(static void MarkWhite(MarkBit mark_bit)) {
81 INLINE(static void BlackToWhite(MarkBit markbit))
    [all...]
incremental-marking.h 18 class MarkBit;
179 void BlackToGreyAndUnshift(HeapObject* obj, MarkBit mark_bit);
181 void WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit);
incremental-marking.cc 52 MarkBit value_bit = Marking::MarkBitFrom(value_heap_obj);
55 MarkBit obj_bit = Marking::MarkBitFrom(obj);
139 MarkBit obj_bit = Marking::MarkBitFrom(obj);
153 MarkBit mark_bit) {
183 void IncrementalMarking::WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit) {
192 MarkBit mark_bit = Marking::MarkBitFrom(HeapObject::cast(obj));
202 MarkBit mark_bit, int size) {
308 MarkBit mark_bit = Marking::MarkBitFrom(heap_object);
695 MarkBit map_mark = Marking::MarkBitFrom(map);
798 MarkBit mark_bit = Marking::MarkBitFrom(obj)
    [all...]
mark-compact.cc 419 MarkBit mark_bit = Marking::MarkBitFrom(obj);
616 MarkBit new_mark_bit = MarkBitFrom(new_start);
617 MarkBit old_mark_bit = MarkBitFrom(old_start);
978 MarkBit code_mark = Marking::MarkBitFrom(code);
1520 MarkBit markbit = Marking::MarkBitFrom(object); local
1535 MarkBit markbit = Marking::MarkBitFrom(object); local
    [all...]
mark-compact-inl.h 34 void MarkCompactCollector::MarkObject(HeapObject* obj, MarkBit mark_bit) {
44 void MarkCompactCollector::SetMark(HeapObject* obj, MarkBit mark_bit) {
spaces.h 107 class MarkBit {
111 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {}
114 bool operator==(const MarkBit& other) {
123 inline MarkBit Next() {
126 return MarkBit(cell_ + 1, 1);
128 return MarkBit(cell_, new_mask);
165 return sizeof(MarkBit::CellType) * cells_count;
184 INLINE(MarkBit::CellType* cells()) {
185 return reinterpret_cast<MarkBit::CellType*>(this);
194 inline MarkBit MarkBitFromIndex(uint32_t index)
    [all...]
scavenger.cc 235 MarkBit mark_bit = Marking::MarkBitFrom(target);
objects-visiting-inl.h 587 MarkBit code_mark = Marking::MarkBitFrom(function->code());
611 MarkBit code_mark = Marking::MarkBitFrom(shared_info->code());
heap.cc     [all...]
spaces.cc     [all...]
  /external/v8/test/cctest/
test-slots-buffer.cc 75 MarkBit mark_bit = Marking::MarkBitFrom(*fake_object);

Completed in 181 milliseconds