Searched refs:getRVA (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDLL.h48 uint64_t getDirRVA() { return dirs[0]->getRVA(); }
73 uint64_t getRVA() { return chunks[0]->getRVA(); } function in class:lld::coff::EdataContents
75 return chunks.back()->getRVA() + chunks.back()->getSize() - getRVA();
H A DSymbols.h150 uint64_t getRVA();
198 uint64_t getRVA() const { return (*data)->getRVA() + sym->Value; } function in class:lld::coff::DefinedRegular
218 uint64_t getRVA() { return data->getRVA(); } function in class:lld::coff::DefinedCommon
243 uint64_t getRVA() { return va - config->imageBase; } function in class:lld::coff::DefinedAbsolute
269 uint32_t getRVA() { return c ? c->getRVA() : 0; } function in class:lld::coff::DefinedSynthetic
337 uint64_t getRVA() { return file->location->getRVA(); } function in class:lld::coff::DefinedImportData
361 uint64_t getRVA() { return data->getRVA(); } function in class:lld::coff::DefinedImportThunk
384 uint64_t getRVA() { return data->getRVA(); } function in class:lld::coff::DefinedLocalImport
391 inline uint64_t Defined::getRVA() { function in class:lld::coff::Defined
[all...]
H A DDLL.cpp69 write64le(buf, hintName->getRVA());
71 write32le(buf, hintName->getRVA());
110 e->ImportLookupTableRVA = lookupTab->getRVA();
111 e->NameRVA = dllName->getRVA();
112 e->ImportAddressTableRVA = addressTab->getRVA();
177 e->Name = dllName->getRVA();
178 e->ModuleHandle = moduleHandle->getRVA();
179 e->DelayImportAddressTable = addressTab->getRVA();
180 e->DelayImportNameTable = nameTab->getRVA();
302 write32le(buf + 3, imp->getRVA()
[all...]
H A DLLDMapFile.cpp67 return a->getRVA() < b->getRVA();
79 writeHeader(os, syms[i]->getRVA(), 0, 0);
108 writeHeader(os, sec->getRVA(), sec->getVirtualSize(), /*align=*/pageSize);
116 writeHeader(os, sc->getRVA(), sc->getSize(), sc->getAlignment());
H A DMapFile.cpp90 uint64_t rvaa = config->imageBase + a.first->getRVA();
91 uint64_t rvab = config->imageBase + b.first->getRVA();
163 address = sym->getRVA();
190 os << format_hex_no_prefix((config->imageBase + sym->getRVA()), 16);
275 cr.second->getRVA() + cr.second->getSize() - cr.first->getRVA();
277 auto address = cr.first->getRVA() - sec->header.VirtualAddress;
306 entry->getRVA() - chunk->getOutputSection()->header.VirtualAddress;
H A DChunks.cpp82 uint64_t secRel = s - os->getRVA();
252 applyArm64Imm(off, (s - os->getRVA()) & 0xfff, 0);
259 uint64_t secRel = (s - os->getRVA()) >> 12;
271 applyArm64Ldr(off, (s - os->getRVA()) & 0xfff);
393 uint64_t s = sym->getRVA();
671 write32le(buf + 2, impSymbol->getRVA() - rva - getSize());
675 res->emplace_back(getRVA() + 2);
682 impSymbol->getRVA() + config->imageBase);
686 res->emplace_back(getRVA(), IMAGE_REL_BASED_ARM_MOV32T);
692 applyMOV32T(buf, impSymbol->getRVA()
[all...]
H A DWriter.h48 uint64_t getRVA() { return header.VirtualAddress; } function in class:lld::coff::OutputSection
H A DWriter.cpp108 uint64_t offs = os->getFileOff() + (c->getRVA() - os->getRVA());
109 fillEntry(d, record.first, c->getSize(), c->getRVA(), offs);
382 Defined *&lastThunk = lastThunks[target->getRVA()];
383 if (lastThunk && isInRange(type, lastThunk->getRVA(), p, margin))
428 size_t thunkInsertionRVA = sc->getRVA() + sc->getSize() + thunksSize;
441 uint64_t p = sc->getRVA() + rel.VirtualAddress + thunksSize;
447 uint64_t s = sym->getRVA();
526 uint64_t p = sc->getRVA() + rel.VirtualAddress;
527 uint64_t s = sym->getRVA();
[all...]
H A DPDB.cpp628 sc.Off = c && os ? c->getRVA() - os->getRVA() : 0;
953 pub.Offset = def->getRVA() - os->getRVA();
1235 cgs.Offset = firstChunk->getRVA() - os.getRVA();
1236 cgs.Size = lastChunk->getRVA() + lastChunk->getSize() - firstChunk->getRVA();
1256 sym.Rva = os.getRVA();
1332 ts.Offset = thunkChunk->getRVA()
[all...]
H A DChunks.h87 uint32_t getRVA() const { return rva; } function in class:lld::coff::Chunk
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h1188 Error getRVA(uint32_t &Result) const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp1639 Error BaseRelocRef::getRVA(uint32_t &Result) const { function in class:BaseRelocRef
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1757 if (Error E = I.getRVA(RVA))

Completed in 304 milliseconds