Home | History | Annotate | Download | only in src

Lines Matching refs:Address

1015   // the field caching the address of the backing store.  When we encounter
1036 heap->CreateFillerObjectAt(this->address() + new_size, size - new_size);
1046 heap->AdjustLiveBytes(this->address(), new_size - size, Heap::FROM_MUTATOR);
1081 // the field caching the address of the backing store. When we encounter
1096 heap->CreateFillerObjectAt(this->address() + new_size, size - new_size);
1106 heap->AdjustLiveBytes(this->address(), new_size - size, Heap::FROM_MUTATOR);
2072 Address address = object->address();
2074 address + new_instance_size, instance_size_delta);
2075 heap->AdjustLiveBytes(address, -instance_size_delta, Heap::FROM_MUTATOR);
4244 heap->CreateFillerObjectAt(object->address() + new_instance_size,
4246 heap->AdjustLiveBytes(object->address(), -instance_size_delta,
6410 DCHECK(memcmp(fresh->address(),
6411 new_map->address(),
6416 DCHECK(memcmp(fresh->address() + offset,
6417 new_map->address() + offset,
8888 Address start_of_string = string->address();
9054 v->VisitCodeEntry(reinterpret_cast<Address>(
9069 Address default_value[] = {
9071 reinterpret_cast<Address>(isolate->heap()->undefined_value()) };
9079 reinterpret_cast<Address*>(HeapObject::RawField(this, offset)),
9092 v->VisitCodeEntry(this->address() + kCodeEntryOffset);
9717 DCHECK_EQ(foreign->foreign_address(), reinterpret_cast<Address>(location));
9747 reinterpret_cast<Address>(handle.location()));
10041 void ObjectVisitor::VisitCodeEntry(Address entry_address) {
10082 Address p = rinfo->target_reference();
10156 Address p = it.rinfo()->target_runtime_entry(origin);
10171 // Locate the source position which is closest to the address in the code. This
10175 int Code::SourcePosition(Address pc) {
10207 int Code::SourceStatementPosition(Address pc) {
10227 SafepointEntry Code::GetSafepointEntry(Address pc) {
10596 bool Code::CanDeoptAt(Address pc) {
10599 Address code_start_address = instruction_start();
10602 Address address = code_start_address + deopt_data->Pc(i)->value();
10603 if (address == pc) return true;