Searched refs:relocation_size (Results 1 – 7 of 7) sorted by relevance
47 int CodeReference::relocation_size() const { in relocation_size() function in v8::internal::CodeReference48 return kind_ == JS ? js_code_->relocation_size() in relocation_size()
33 int relocation_size() const;
298 code->relocation_start() + code->relocation_size(), in RelocIterator()
15075 os << "RelocInfo (size = " << relocation_size() << ")\n"; in Disassemble()
460 const size_t relocation_size = in AddAnonymousCode() local461 code->is_off_heap_trampoline() ? 0 : code->relocation_size(); in AddAnonymousCode()462 OwnedVector<byte> reloc_info = OwnedVector<byte>::New(relocation_size); in AddAnonymousCode()463 memcpy(reloc_info.start(), code->relocation_start(), relocation_size); in AddAnonymousCode()
109 inline int relocation_size() const;
314 int Code::relocation_size() const { in relocation_size() function