Searched refs:aligned_offset (Results 1 - 6 of 6) sorted by relevance

/art/compiler/linker/arm/
H A Drelative_patcher_arm_base.cc38 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
39 bool needs_thunk = ReserveSpaceProcessPatches(aligned_offset,
41 aligned_offset);
45 DCHECK_LE(aligned_offset - unprocessed_patches_.front().second, max_positive_displacement_);
48 thunk_locations_.push_back(aligned_offset);
49 offset = CompiledMethod::AlignCode(aligned_offset + thunk_code_.size(), instruction_set_);
58 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
59 if (UNLIKELY(aligned_offset == thunk_locations_[current_thunk_to_write_])) {
61 uint32_t aligned_code_delta = aligned_offset - offset;
68 uint32_t thunk_end_offset = aligned_offset
[all...]
/art/compiler/linker/
H A Drelative_patcher_test.h109 uint32_t aligned_offset = compiled_method->AlignCode(offset); local
110 uint32_t aligned_code_delta = aligned_offset - offset;
139 uint32_t aligned_offset = compiled_method->AlignCode(offset); local
140 uint32_t aligned_code_delta = aligned_offset - offset;
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64.cc119 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, kArm64); local
126 CHECK_EQ(entry.second, aligned_offset + i * kAdrpThunkSize);
129 uint32_t aligned_code_delta = aligned_offset - offset;
136 offset = aligned_offset + current_method_thunks_.size();
/art/runtime/
H A Ddex_file_verifier.cc581 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) { argument
582 if (offset < aligned_offset) {
583 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) {
586 while (offset < aligned_offset) {
1346 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; local
1349 if (!CheckPadding(offset, aligned_offset)) {
1463 if (aligned_offset == 0u) {
1467 DCHECK(offset_to_type_map_.Find(aligned_offset) == offset_to_type_map_.end());
1468 offset_to_type_map_.Insert(std::pair<uint32_t, uint16_t>(aligned_offset, type));
1471 aligned_offset
[all...]
H A Ddex_file_verifier.h82 bool CheckPadding(size_t offset, uint32_t aligned_offset);
/art/compiler/
H A Doat_writer.cc1013 uint32_t aligned_offset = compiled_method->AlignCode(offset_);
1014 uint32_t aligned_code_delta = aligned_offset - offset_;
1715 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1716 uint32_t alignment_padding = aligned_offset - relative_offset; \

Completed in 768 milliseconds