HomeSort by: relevance | last modified time | path
    Searched refs:Comdats (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
IRSymtab.h 95 /// The index into Header::Comdats, or -1 if not a comdat member.
144 Range<Comdat> Comdats;
236 ArrayRef<storage::Comdat> Comdats;
257 Comdats = range(header().Comdats);
282 /// Returns a table with all the comdats used by this file.
285 ComdatTable.reserve(Comdats.size());
286 for (auto C : Comdats)
  /src/external/apache2/llvm/dist/llvm/lib/Object/
IRSymtab.cpp 84 std::vector<storage::Comdat> Comdats;
180 auto P = ComdatMap.insert(std::make_pair(C, Comdats.size()));
202 Comdats.push_back(Comdat);
341 writeRange(Hdr.Comdats, Comdats);
WasmObjectFile.cpp 729 LinkingData.Comdats.emplace_back(Name);
748 return make_error<GenericBinaryError>("data segment in two COMDATs",
757 return make_error<GenericBinaryError>("function in two COMDATs",
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
wasm2yaml.cpp 86 ArrayRef<StringRef> Comdats = Obj.linkingData().Comdats;
87 for (StringRef ComdatName : Comdats)
88 LinkingSec->Comdats.emplace_back(WasmYAML::Comdat{ComdatName, {}});
91 LinkingSec->Comdats[Func.Comdat].Entries.emplace_back(
107 LinkingSec->Comdats[Segment.Data.Comdat].Entries.emplace_back(
116 LinkingSec->Comdats[WasmSec.Comdat].Entries.emplace_back(
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 66 ComdatSetType Comdats;
224 const ComdatSetType &getComdats() const { return Comdats; }
ValueEnumerator.cpp 498 unsigned ComdatID = Comdats.idFor(C);
906 Comdats.insert(C);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 100 auto &Comdats = M.getComdatSymbolTable();
106 Comdats.erase(Comdats.find(Source));
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 328 const std::map<StringRef, std::vector<WasmComdatEntry>> &Comdats);
1091 const std::map<StringRef, std::vector<WasmComdatEntry>> &Comdats) {
1155 if (Comdats.size()) {
1157 encodeULEB128(Comdats.size(), W->OS);
1158 for (const auto &C : Comdats) {
1406 std::map<StringRef, std::vector<WasmComdatEntry>> Comdats;
1452 Comdats[C->getName()].emplace_back(
1487 Comdats[C->getName()].emplace_back(
1541 Comdats[C->getName()].emplace_back(
1876 for (auto &Group : Comdats) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 223 std::vector<StringRef> Comdats;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmEmitter.cpp 241 if (Section.Comdats.size()) {
243 encodeULEB128(Section.Comdats.size(), SubSection.getStream());
244 for (const auto &C : Section.Comdats) {
WasmYAML.cpp 75 IO.mapOptional("Comdats", Section.Comdats);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 242 std::vector<Comdat> Comdats;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 2588 SetVector<const Comdat *> Comdats;
2690 Comdats.insert(C);
2849 // Output all comdats.
2850 if (!Comdats.empty())
2852 for (const Comdat *C : Comdats) {
2854 if (C != Comdats.back())
4786 // Allow printing of Comdats from the debugger.

Completed in 66 milliseconds