Home
last modified time | relevance | path

Searched refs:RVAs (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DDebugSymbolRVASubsection.h36 ArrayType::Iterator begin() const { return RVAs.begin(); } in begin()
37 ArrayType::Iterator end() const { return RVAs.end(); } in end()
42 ArrayType RVAs;
56 void addRVA(uint32_t RVA) { RVAs.push_back(support::ulittle32_t(RVA)); } in addRVA()
59 std::vector<support::ulittle32_t> RVAs;
DDebugSubsectionVisitor.h60 virtual Error visitCOFFSymbolRVAs(DebugSymbolRVASubsectionRef &RVAs,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
DDebugSymbolRVASubsection.cpp23 return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t)); in initialize()
30 return Writer.writeArray(makeArrayRef(RVAs)); in commit()
34 return RVAs.size() * sizeof(uint32_t); in calculateSerializedSize()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp231 fromCodeViewSubsection(const DebugSymbolRVASubsectionRef &RVAs);
233 std::vector<uint32_t> RVAs; member
367 IO.mapRequired("RVAs", RVAs); in map()
535 for (const auto &RVA : RVAs) in toCodeViewSubsection()
741 Result->RVAs.push_back(RVA); in fromCodeViewSubsection()
882 DebugSymbolRVASubsectionRef &RVAs, const StringsAndChecksumsRef &State) { in visitCOFFSymbolRVAs() argument
883 auto Result = YAMLCoffSymbolRVASubsection::fromCodeViewSubsection(RVAs); in visitCOFFSymbolRVAs()
/freebsd-12-stable/contrib/llvm-project/lld/docs/
DNewLLD.rst261 linked against a fixed address called an image base. RVAs are
/freebsd-12-stable/contrib/binutils/gas/
DChangeLog-92951191 * config/tc-i386.h (TC_COUNT_RELOC): Remember RVAs.