Home | History | Annotate | Download | only in dsymutil

Lines Matching defs:End

119   /// \brief Compute the end offset for this unit. Must be
344 // Set offset and chain at the end of the entries list.
645 for (auto Range = FunctionRanges.begin(), End = FunctionRanges.end();
646 Range != End; ++Range)
651 // addresses might end up in a different order.
652 std::sort(Ranges.begin(), Ranges.end());
679 for (auto Range = Ranges.begin(), End = Ranges.end(); Range != End;
683 while ((Range + 1) != End && Range->second == (Range + 1)->first)
701 for (auto Range = Ranges.begin(), End = Ranges.end(); Range != End; ++Range) {
703 while (Range + 1 != End && Range->second == (Range + 1)->first)
947 Asm->EmitInt32(0); // End marker.
995 /// \brief Called at the end of a debug object link.
1223 /// corresponding end PC and the offset to apply to get the linked
1234 std::upper_bound(Units.begin(), Units.end(), Offset,
1238 return CU != Units.end() ? &*CU : nullptr;
1430 std::sort(ValidRelocs.begin(), ValidRelocs.end());
1505 uint32_t End = Offset;
1506 DWARFFormValue::skipValue(Abbrev->getFormByIndex(Idx), Data, &End, &Unit);
1508 return std::make_pair(Offset, End);
2109 // totally unrelated value (because the end address in the object
2161 // it's not the case, we'll just be emitting one wasteful end of
2186 // Account for the end of children marker.
2203 auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange;
2257 Rows.insert(Rows.end(), Seq.begin(), Seq.end());
2263 Rows.begin(), Rows.end(), Seq.front(),
2272 if (InsertPoint != Rows.end() &&
2275 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end());
2277 Rows.insert(InsertPoint, Seq.begin(), Seq.end());
2299 Abbrev.begin(), Abbrev.end(), [](const DIEAbbrevData &AbbrevData) {
2302 assert(Stmt < Abbrev.end() && "Didn't find DW_AT_stmt_list in cloned DIE!");
2325 auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange;
2340 // half-open, but consider accept the end address of the range if
2348 // corresponding to the end of the range.
2365 if (Range != Ranges.begin() && Range != Ranges.end())
2368 if (Range != Ranges.end() && Range->first <= Row.Address &&
2375 // Insert end sequence row with the computed end address, but
2426 if (Map.begin() == Map.end()) {