Lines Matching defs:CurrentAddressLocation

381                                           uint64_t &CurrentAddressLocation);
384 uint64_t &CurrentAddressLocation);
388 uint64_t &CurrentAddressLocation);
391 uint64_t &CurrentAddressLocation);
815 uint64_t CurrentAddressLocation = 0;
817 writeSectionForControlSectionEntry(Asm, *Section, CurrentAddressLocation);
819 writeSectionForDwarfSectionEntry(Asm, DwarfSection, CurrentAddressLocation);
821 CurrentAddressLocation);
823 CurrentAddressLocation);
1592 uint64_t &CurrentAddressLocation) {
1601 assert(((CurrentAddressLocation <= CsectEntry.Address) ||
1604 "CurrentAddressLocation should be less than or equal to section "
1607 CurrentAddressLocation = CsectEntry.Address;
1610 // CurrentAddressLocation for later sections like DWARF section has a correct
1613 CurrentAddressLocation += CsectEntry.Size;
1619 if (uint32_t PaddingSize = Csect.Address - CurrentAddressLocation)
1623 CurrentAddressLocation = Csect.Address + Csect.Size;
1631 CsectEntry.Address + CsectEntry.Size - CurrentAddressLocation) {
1633 CurrentAddressLocation += PaddingSize;
1639 uint64_t &CurrentAddressLocation) {
1643 assert(CurrentAddressLocation <= DwarfEntry.Address &&
1644 "CurrentAddressLocation should be less than or equal to section "
1647 if (uint64_t PaddingSize = DwarfEntry.Address - CurrentAddressLocation)
1653 CurrentAddressLocation = DwarfEntry.Address + DwarfEntry.Size;
1656 // Make sure CurrentAddressLocation is aligned to DefaultSectionAlign.
1657 uint32_t Mod = CurrentAddressLocation % DefaultSectionAlign;
1662 CurrentAddressLocation += TailPaddingSize;
1667 uint64_t &CurrentAddressLocation) {
1684 CurrentAddressLocation += getExceptionSectionSize();
1689 uint64_t &CurrentAddressLocation) {
1719 CurrentAddressLocation += CISI->size();