Home | History | Annotate | Download | only in arm

Lines Matching refs:FixupId

380   typedef uint16_t FixupId;
578 ArrayRef<const FixupId> Dependents(const Thumb2Assembler& assembler) const {
579 return ArrayRef<const FixupId>(assembler.fixup_dependents_).SubArray(dependents_start_,
821 FixupId AddFixup(Fixup fixup) {
822 FixupId fixup_id = static_cast<FixupId>(fixups_.size());
824 // For iterating using FixupId, we need the next id to be representable.
825 DCHECK_EQ(static_cast<size_t>(static_cast<FixupId>(fixups_.size())), fixups_.size());
829 Fixup* GetFixup(FixupId fixup_id) {
838 std::deque<FixupId>* fixups_to_recalculate);
864 ArenaVector<FixupId> fixup_dependents_;
876 FixupId last_fixup_id_;