HomeSort by relevance Sort by last modified time
    Searched refs:quick_code_offset (Results 1 - 5 of 5) sorted by null

  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 95 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); local
96 uint32_t next_aligned_offset = compiled_method->AlignCode(quick_code_offset + quick_code_size);
99 // TODO: ignore unprocessed patches targeting this method if they can reach quick_code_offset.
103 bool needs_thunk = ReserveSpaceProcessPatches(quick_code_offset,
117 quick_code_offset + patch.LiteralOffset());
146 bool ArmBaseRelativePatcher::ReserveSpaceProcessPatches(uint32_t quick_code_offset,
156 DCHECK_GT(quick_code_offset, patch_offset);
157 if (quick_code_offset - patch_offset > max_positive_displacement_) {
169 (quick_code_offset == next_aligned_offset); // End of code.
relative_patcher_arm_base.h 50 bool ReserveSpaceProcessPatches(uint32_t quick_code_offset, MethodReference method_ref,
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 86 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); local
88 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size());
92 uint32_t patch_offset = quick_code_offset + patch.LiteralOffset();
  /art/compiler/linker/
relative_patcher_test.h 114 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); local
118 method_offset_map_.map.Put(compiled_method_refs_[idx], quick_code_offset);
  /art/compiler/
oat_writer.cc 685 uint32_t quick_code_offset = 0;
695 quick_code_offset = writer_->relative_patcher_->GetOffset(method_ref);
696 if (quick_code_offset != 0u) {
700 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
704 quick_code_offset = dedupe_map_.GetOrCreate(
718 << " " << quick_code_offset;
720 writer_->relative_patcher_->SetOffset(method_ref, quick_code_offset);
733 uint32_t code_offset = quick_code_offset - thumb_offset;
789 offsets->code_offset_ = quick_code_offset;
    [all...]

Completed in 177 milliseconds