• Home
  • Raw
  • Download

Lines Matching refs:slot_addr

31   static void Insert(SlotSet* slot_set, MemoryChunk* chunk, Address slot_addr) {  in Insert()  argument
32 DCHECK(chunk->Contains(slot_addr)); in Insert()
33 uintptr_t offset = slot_addr - chunk->address(); in Insert()
48 static void Remove(SlotSet* slot_set, MemoryChunk* chunk, Address slot_addr) { in Remove() argument
50 uintptr_t offset = slot_addr - chunk->address(); in Remove()
94 static void Insert(MemoryChunk* chunk, Address slot_addr) { in Insert() argument
95 DCHECK(chunk->Contains(slot_addr)); in Insert()
100 RememberedSetOperations::Insert<access_mode>(slot_set, chunk, slot_addr); in Insert()
105 static bool Contains(MemoryChunk* chunk, Address slot_addr) { in Contains() argument
106 DCHECK(chunk->Contains(slot_addr)); in Contains()
111 uintptr_t offset = slot_addr - chunk->address(); in Contains()
123 static void Remove(MemoryChunk* chunk, Address slot_addr) { in Remove() argument
124 DCHECK(chunk->Contains(slot_addr)); in Remove()
126 RememberedSetOperations::Remove(slot_set, chunk, slot_addr); in Remove()
244 [=](SlotType slot_type, Address slot_addr) { in RemoveRangeTyped()
245 return start <= slot_addr && slot_addr < end ? REMOVE_SLOT in RemoveRangeTyped()
355 static void Insert(MemoryChunk* chunk, Address slot_addr) { in Insert() argument
356 DCHECK(chunk->Contains(slot_addr)); in Insert()
361 RememberedSetOperations::Insert<access_mode>(slot_set, chunk, slot_addr); in Insert()
364 static void Remove(MemoryChunk* chunk, Address slot_addr) { in Remove() argument
365 DCHECK(chunk->Contains(slot_addr)); in Remove()
367 RememberedSetOperations::Remove(slot_set, chunk, slot_addr); in Remove()