Lines Matching defs:CurrentAddressLocation
380 uint64_t &CurrentAddressLocation);
383 uint64_t &CurrentAddressLocation);
387 uint64_t &CurrentAddressLocation);
390 uint64_t &CurrentAddressLocation);
814 uint64_t CurrentAddressLocation = 0;
816 writeSectionForControlSectionEntry(Asm, *Section, CurrentAddressLocation);
818 writeSectionForDwarfSectionEntry(Asm, DwarfSection, CurrentAddressLocation);
820 CurrentAddressLocation);
822 CurrentAddressLocation);
1586 uint64_t &CurrentAddressLocation) {
1595 assert(((CurrentAddressLocation <= CsectEntry.Address) ||
1598 "CurrentAddressLocation should be less than or equal to section "
1601 CurrentAddressLocation = CsectEntry.Address;
1604 // CurrentAddressLocation for later sections like DWARF section has a correct
1607 CurrentAddressLocation += CsectEntry.Size;
1613 if (uint32_t PaddingSize = Csect.Address - CurrentAddressLocation)
1617 CurrentAddressLocation = Csect.Address + Csect.Size;
1625 CsectEntry.Address + CsectEntry.Size - CurrentAddressLocation) {
1627 CurrentAddressLocation += PaddingSize;
1633 uint64_t &CurrentAddressLocation) {
1637 assert(CurrentAddressLocation <= DwarfEntry.Address &&
1638 "CurrentAddressLocation should be less than or equal to section "
1641 if (uint64_t PaddingSize = DwarfEntry.Address - CurrentAddressLocation)
1647 CurrentAddressLocation = DwarfEntry.Address + DwarfEntry.Size;
1650 // Make sure CurrentAddressLocation is aligned to DefaultSectionAlign.
1651 uint32_t Mod = CurrentAddressLocation % DefaultSectionAlign;
1656 CurrentAddressLocation += TailPaddingSize;
1661 uint64_t &CurrentAddressLocation) {
1678 CurrentAddressLocation += getExceptionSectionSize();
1683 uint64_t &CurrentAddressLocation) {
1713 CurrentAddressLocation += CISI->size();