Lines Matching refs:Cell
435 Handle<Cell> RelocInfo::target_cell_handle() {
436 DCHECK(rmode_ == RelocInfo::CELL);
438 return Handle<Cell>(reinterpret_cast<Cell**>(address));
442 Cell* RelocInfo::target_cell() {
443 DCHECK(rmode_ == RelocInfo::CELL);
444 return Cell::FromValueAddress(Memory::Address_at(pc_));
448 void RelocInfo::set_target_cell(Cell* cell,
451 DCHECK(rmode_ == RelocInfo::CELL);
452 Address address = cell->address() + Cell::kValueOffset;
459 // TODO(1550) We are passing NULL as a slot because cell can never be on
462 host(), NULL, cell);
550 } else if (mode == RelocInfo::CELL) {
575 } else if (mode == RelocInfo::CELL) {