Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching refs:Addr

62   void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
63 void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr);
89 void updateSectionAddress(const SectionRef &Sec, uint64_t Addr) override {
91 ->updateSectionAddress(Sec, Addr);
94 void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr) override {
96 ->updateSymbolAddress(Sym, Addr);
129 uint64_t Addr) {
136 shdr->sh_addr = static_cast<addr_type>(Addr);
141 uint64_t Addr) {
148 sym->st_value = static_cast<addr_type>(Addr);
287 // based on the load/target address of the GOT (not the current/local addr).
1393 void RuntimeDyldELF::updateGOTEntries(StringRef Name, uint64_t Addr) {
1403 GOTEntries[i].Offset = Addr;
1501 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, getGOTEntrySize(),
1503 if (!Addr)
1507 Sections.push_back(SectionEntry(".got", Addr, TotalSize, 0));
1510 memset(Addr, 0, TotalSize);