Home | History | Annotate | Download | only in ppc

Lines Matching refs:Cell

232 Handle<Cell> RelocInfo::target_cell_handle() {
233 DCHECK(rmode_ == RelocInfo::CELL);
235 return Handle<Cell>(reinterpret_cast<Cell**>(address));
239 Cell* RelocInfo::target_cell() {
240 DCHECK(rmode_ == RelocInfo::CELL);
241 return Cell::FromValueAddress(Memory::Address_at(pc_));
245 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
247 DCHECK(rmode_ == RelocInfo::CELL);
248 Address address = cell->address() + Cell::kValueOffset;
251 // TODO(1550) We are passing NULL as a slot because cell can never be on
253 host()->GetHeap()->incremental_marking()->RecordWrite(host(), NULL, cell);
371 } else if (mode == RelocInfo::CELL) {
396 } else if (mode == RelocInfo::CELL) {