Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugSymbolRVASubsection.h37 ArrayType::Iterator begin() const { return RVAs.begin(); } in begin()
38 ArrayType::Iterator end() const { return RVAs.end(); } in end()
43 ArrayType RVAs;
57 void addRVA(uint32_t RVA) { RVAs.push_back(support::ulittle32_t(RVA)); } in addRVA()
60 std::vector<support::ulittle32_t> RVAs;
DDebugSubsectionVisitor.h64 virtual Error visitCOFFSymbolRVAs(DebugSymbolRVASubsectionRef &RVAs,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DDebugSymbolRVASubsection.cpp24 return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t)); in initialize()
31 return Writer.writeArray(makeArrayRef(RVAs)); in commit()
35 return RVAs.size() * sizeof(uint32_t); in calculateSerializedSize()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp232 fromCodeViewSubsection(const DebugSymbolRVASubsectionRef &RVAs);
234 std::vector<uint32_t> RVAs; member
368 IO.mapRequired("RVAs", RVAs); in map()
536 for (const auto &RVA : RVAs) in toCodeViewSubsection()
742 Result->RVAs.push_back(RVA); in fromCodeViewSubsection()
883 DebugSymbolRVASubsectionRef &RVAs, const StringsAndChecksumsRef &State) { in visitCOFFSymbolRVAs() argument
884 auto Result = YAMLCoffSymbolRVASubsection::fromCodeViewSubsection(RVAs); in visitCOFFSymbolRVAs()