Home | History | Annotate | Download | only in mips

Lines Matching refs:Cell

267 Handle<Cell> RelocInfo::target_cell_handle() {
268 DCHECK(rmode_ == RelocInfo::CELL);
270 return Handle<Cell>(reinterpret_cast<Cell**>(address));
274 Cell* RelocInfo::target_cell() {
275 DCHECK(rmode_ == RelocInfo::CELL);
276 return Cell::FromValueAddress(Memory::Address_at(pc_));
280 void RelocInfo::set_target_cell(Cell* cell,
283 DCHECK(rmode_ == RelocInfo::CELL);
284 Address address = cell->address() + Cell::kValueOffset;
287 // TODO(1550) We are passing NULL as a slot because cell can never be on
290 host(), NULL, cell);
379 } else if (mode == RelocInfo::CELL) {
404 } else if (mode == RelocInfo::CELL) {