Home
last modified time | relevance | path

Searched refs:fixup_id (Results 1 – 2 of 2) sorted by relevance

/art/compiler/utils/arm/
Dassembler_thumb2.cc36 for (FixupId fixup_id = 0u, end_id = assembler->fixups_.size(); fixup_id != end_id; ++fixup_id) { in ForExpandableDependencies() local
37 uint32_t target = fixups[fixup_id].target_; in ForExpandableDependencies()
38 if (target > fixups[fixup_id].location_) { in ForExpandableDependencies()
39 for (FixupId id = fixup_id + 1u; id != end_id && fixups[id].location_ < target; ++id) { in ForExpandableDependencies()
41 fn(id, fixup_id); in ForExpandableDependencies()
45 for (FixupId id = fixup_id; id != 0u && fixups[id - 1u].location_ >= target; --id) { in ForExpandableDependencies()
47 fn(id - 1u, fixup_id); in ForExpandableDependencies()
72 for (FixupId fixup_id = 0u, end_id = assembler->fixups_.size(); fixup_id != end_id; ++fixup_id) { in PrepareDependents() local
73 number_of_dependents += fixups[fixup_id].dependents_count_; in PrepareDependents()
74 fixups[fixup_id].dependents_start_ = number_of_dependents; in PrepareDependents()
[all …]
Dassembler_thumb2.h846 FixupId fixup_id = static_cast<FixupId>(fixups_.size()); in AddFixup() local
850 return fixup_id; in AddFixup()
853 Fixup* GetFixup(FixupId fixup_id) { in GetFixup() argument
854 DCHECK_LT(fixup_id, fixups_.size()); in GetFixup()
855 return &fixups_[fixup_id]; in GetFixup()