Home | History | Annotate | Download | only in x87

Lines Matching refs:Cell

183 Handle<Cell> RelocInfo::target_cell_handle() {
184 DCHECK(rmode_ == RelocInfo::CELL);
186 return Handle<Cell>(reinterpret_cast<Cell**>(address));
190 Cell* RelocInfo::target_cell() {
191 DCHECK(rmode_ == RelocInfo::CELL);
192 return Cell::FromValueAddress(Memory::Address_at(pc_));
196 void RelocInfo::set_target_cell(Cell* cell,
199 DCHECK(cell->IsCell());
200 DCHECK(rmode_ == RelocInfo::CELL);
201 Address address = cell->address() + Cell::kValueOffset;
207 // TODO(1550) We are passing NULL as a slot because cell can never be on
210 host(), NULL, cell);
289 } else if (mode == RelocInfo::CELL) {
314 } else if (mode == RelocInfo::CELL) {