Searched refs:code_offset_ (Results 1 – 5 of 5) sorted by relevance
/aosp12/art/runtime/ |
H A D | oat_file-inl.h | 28 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetOatQuickMethodHeader() 74 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetVmapTable() 86 const void* code = EntryPointToCodePointer(GetOatPointer<const void*>(code_offset_)); in GetQuickCodeSize() 94 return (GetQuickCodeSize() == 0) ? 0 : code_offset_; in GetCodeOffset()
|
H A D | oat_file.h | 77 explicit OatMethodOffsets(uint32_t code_offset = 0) : code_offset_(code_offset) {} 84 uint32_t code_offset_; variable 217 : begin_(base), code_offset_(code_offset) { in OatMethod() 240 uint32_t code_offset_; variable
|
H A D | oat_file.cc | 2373 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
|
/aosp12/art/compiler/ |
H A D | common_compiler_test.cc | 63 code_offset_ = RoundUp(vmap_table.size() + sizeof(method_header), code_alignment); in CodeAndMetadata() 64 const uint32_t capacity = RoundUp(code_offset_ + code_size, kPageSize); in CodeAndMetadata() 85 uint8_t* code_addr = rw_map_.Begin() + code_offset_; in CodeAndMetadata() 87 CHECK_LE(vmap_table_offset, code_offset_); in CodeAndMetadata() 90 CHECK_LE(sizeof(method_header), code_offset_); in CodeAndMetadata() 115 DCHECK_LE(code_offset_, rx_map_.Size()); in GetCodePointer() 116 return rx_map_.Begin() + code_offset_; in GetCodePointer() 122 uint32_t code_offset_; member in art::CommonCompilerTestImpl::CodeAndMetadata
|
/aosp12/art/dex2oat/linker/ |
H A D | oat_writer.cc | 1415 offsets->code_offset_ = quick_code_offset; in VisitMethod() 1509 DCHECK_EQ(oat_class->method_offsets_[method_offsets_index_].code_offset_, 0u); in VisitMethod() 1624 reinterpret_cast<void*>(offsets.code_offset_), pointer_size_); in VisitMethod() 1742 if (method_offsets.code_offset_ > offset_) { in VisitMethod() 1759 DCHECK_EQ(method_offsets.code_offset_, in VisitMethod()
|