Home | History | Annotate | Download | only in mips64

Lines Matching refs:Cell

265 Handle<Cell> RelocInfo::target_cell_handle() {
266 DCHECK(rmode_ == RelocInfo::CELL);
268 return Handle<Cell>(reinterpret_cast<Cell**>(address));
272 Cell* RelocInfo::target_cell() {
273 DCHECK(rmode_ == RelocInfo::CELL);
274 return Cell::FromValueAddress(Memory::Address_at(pc_));
278 void RelocInfo::set_target_cell(Cell* cell,
281 DCHECK(rmode_ == RelocInfo::CELL);
282 Address address = cell->address() + Cell::kValueOffset;
285 // TODO(1550) We are passing NULL as a slot because cell can never be on
288 host(), NULL, cell);
380 } else if (mode == RelocInfo::CELL) {
405 } else if (mode == RelocInfo::CELL) {