Home
last modified time | relevance | path

Searched refs:Obj (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/external/vixl/test/
Dtest-invalset.cc40 class Obj { class
42 Obj() {} in Obj() function in vixl::Obj
43 Obj(KeyType key, ValType val) : key_(key), val_(val) {} in Obj() function in vixl::Obj
47 bool operator==(const Obj& other) const { in operator ==()
50 bool operator<(const Obj& other) const { in operator <()
53 bool operator<=(const Obj& other) const { in operator <=()
57 bool operator>(const Obj& other) const { in operator >()
67 typedef InvalSet<Obj,
76 inline KeyType InvalSet<Obj,
81 kReclaimFactor>::GetKey(const Obj& obj) { in GetKey()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DPdbYaml.cpp104 void MappingTraits<PdbObject>::mapping(IO &IO, PdbObject &Obj) { in mapping() argument
105 IO.mapOptional("MSF", Obj.Headers); in mapping()
106 IO.mapOptional("StreamSizes", Obj.StreamSizes); in mapping()
107 IO.mapOptional("StreamMap", Obj.StreamMap); in mapping()
108 IO.mapOptional("StringTable", Obj.StringTable); in mapping()
109 IO.mapOptional("PdbStream", Obj.PdbStream); in mapping()
110 IO.mapOptional("DbiStream", Obj.DbiStream); in mapping()
111 IO.mapOptional("TpiStream", Obj.TpiStream); in mapping()
112 IO.mapOptional("IpiStream", Obj.IpiStream); in mapping()
115 void MappingTraits<MSFHeaders>::mapping(IO &IO, MSFHeaders &Obj) { in mapping() argument
[all …]
DYAMLOutputStyle.cpp39 : File(File), Out(outs()), Obj(File.getAllocator()) { in YAMLOutputStyle()
81 Obj.Headers.emplace(); in dumpFileHeaders()
82 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); in dumpFileHeaders()
83 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); in dumpFileHeaders()
84 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
86 Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); in dumpFileHeaders()
87 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); in dumpFileHeaders()
88 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); in dumpFileHeaders()
89 Obj.Headers->NumStreams = in dumpFileHeaders()
91 Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock(); in dumpFileHeaders()
[all …]
/external/llvm/tools/llvm-pdbdump/
DYAMLOutputStyle.cpp54 Obj.Headers.emplace(); in dumpFileHeaders()
55 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); in dumpFileHeaders()
56 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); in dumpFileHeaders()
57 Obj.Headers->BlockMapOffset = File.getBlockMapOffset(); in dumpFileHeaders()
58 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
60 Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); in dumpFileHeaders()
61 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); in dumpFileHeaders()
62 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); in dumpFileHeaders()
63 Obj.Headers->NumStreams = in dumpFileHeaders()
65 Obj.Headers->SuperBlock.Unknown0 = File.getUnknown0(); in dumpFileHeaders()
[all …]
DPdbYaml.cpp107 void MappingTraits<PdbObject>::mapping(IO &IO, PdbObject &Obj) { in mapping() argument
108 IO.mapOptional("MSF", Obj.Headers); in mapping()
109 IO.mapOptional("StreamSizes", Obj.StreamSizes); in mapping()
110 IO.mapOptional("StreamMap", Obj.StreamMap); in mapping()
111 IO.mapOptional("PdbStream", Obj.PdbStream); in mapping()
112 IO.mapOptional("DbiStream", Obj.DbiStream); in mapping()
115 void MappingTraits<MsfHeaders>::mapping(IO &IO, MsfHeaders &Obj) { in mapping() argument
116 IO.mapRequired("SuperBlock", Obj.SuperBlock); in mapping()
117 IO.mapRequired("NumDirectoryBlocks", Obj.NumDirectoryBlocks); in mapping()
118 IO.mapRequired("BlockMapOffset", Obj.BlockMapOffset); in mapping()
[all …]
/external/llvm/lib/CodeGen/
DSafeStackLayout.cpp47 void StackLayout::layoutObject(StackObject &Obj) { in layoutObject() argument
52 unsigned Start = AdjustStackOffset(LastRegionEnd, Obj.Size, Obj.Alignment); in layoutObject()
53 unsigned End = Start + Obj.Size; in layoutObject()
54 Regions.emplace_back(Start, End, Obj.Range); in layoutObject()
55 ObjectOffsets[Obj.Handle] = End; in layoutObject()
59 DEBUG(dbgs() << "Layout: size " << Obj.Size << ", align " << Obj.Alignment in layoutObject()
60 << ", range " << Obj.Range << "\n"); in layoutObject()
61 assert(Obj.Alignment <= MaxAlignment); in layoutObject()
62 unsigned Start = AdjustStackOffset(0, Obj.Size, Obj.Alignment); in layoutObject()
63 unsigned End = Start + Obj.Size; in layoutObject()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DSafeStackLayout.cpp54 void StackLayout::layoutObject(StackObject &Obj) { in layoutObject() argument
59 unsigned Start = AdjustStackOffset(LastRegionEnd, Obj.Size, Obj.Alignment); in layoutObject()
60 unsigned End = Start + Obj.Size; in layoutObject()
61 Regions.emplace_back(Start, End, Obj.Range); in layoutObject()
62 ObjectOffsets[Obj.Handle] = End; in layoutObject()
66 LLVM_DEBUG(dbgs() << "Layout: size " << Obj.Size << ", align " in layoutObject()
67 << Obj.Alignment << ", range " << Obj.Range << "\n"); in layoutObject()
68 assert(Obj.Alignment <= MaxAlignment); in layoutObject()
69 unsigned Start = AdjustStackOffset(0, Obj.Size, Obj.Alignment); in layoutObject()
70 unsigned End = Start + Obj.Size; in layoutObject()
[all …]
/external/llvm/tools/yaml2obj/
Dyaml2coff.cpp33 COFFParser(COFFYAML::Object &Obj) in COFFParser()
34 : Obj(Obj), SectionTableStart(0), SectionTableSize(0) { in COFFParser()
41 return static_cast<int32_t>(Obj.Sections.size()) > in useBigObj()
45 bool isPE() const { return Obj.OptionalHeader.hasValue(); } in isPE()
47 return Obj.Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64; in is64Bit()
51 return Obj.OptionalHeader->Header.FileAlignment; in getFileAlignment()
63 for (std::vector<COFFYAML::Section>::iterator i = Obj.Sections.begin(), in parseSections()
64 e = Obj.Sections.end(); i != e; ++i) { in parseSections()
101 for (std::vector<COFFYAML::Symbol>::iterator i = Obj.Symbols.begin(), in parseSymbols()
102 e = Obj.Symbols.end(); i != e; ++i) { in parseSymbols()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DIntrusiveRefCntPtr.h137 T *Obj = nullptr; variable
143 IntrusiveRefCntPtr(T *obj) : Obj(obj) { retain(); } in IntrusiveRefCntPtr()
144 IntrusiveRefCntPtr(const IntrusiveRefCntPtr &S) : Obj(S.Obj) { retain(); } in IntrusiveRefCntPtr()
145 IntrusiveRefCntPtr(IntrusiveRefCntPtr &&S) : Obj(S.Obj) { S.Obj = nullptr; } in IntrusiveRefCntPtr()
148 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X> &&S) : Obj(S.get()) { in IntrusiveRefCntPtr()
149 S.Obj = nullptr; in IntrusiveRefCntPtr()
153 IntrusiveRefCntPtr(const IntrusiveRefCntPtr<X> &S) : Obj(S.get()) { in IntrusiveRefCntPtr()
164 T &operator*() const { return *Obj; }
165 T *operator->() const { return Obj; }
166 T *get() const { return Obj; } in get()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOI386.h39 const MachOObjectFile &Obj = in processRelocationRef() local
42 Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef()
43 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
45 if (Obj.isRelocationScattered(RelInfo)) { in processRelocationRef()
48 return processSECTDIFFRelocation(SectionID, RelI, Obj, in processRelocationRef()
51 return processScatteredVANILLA(SectionID, RelI, Obj, ObjSectionToID); in processRelocationRef()
68 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI)); in processRelocationRef()
71 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID)) in processRelocationRef()
129 Error finalizeSection(const ObjectFile &Obj, unsigned SectionID, in finalizeSection() argument
135 return populateJumpTable(cast<MachOObjectFile>(Obj), Section, SectionID); in finalizeSection()
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOI386.h39 const MachOObjectFile &Obj = in processRelocationRef() local
42 Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef()
43 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
45 if (Obj.isRelocationScattered(RelInfo)) { in processRelocationRef()
48 return processSECTDIFFRelocation(SectionID, RelI, Obj, in processRelocationRef()
51 return processScatteredVANILLA(SectionID, RelI, Obj, ObjSectionToID); in processRelocationRef()
68 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI)); in processRelocationRef()
71 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID)) in processRelocationRef()
129 Error finalizeSection(const ObjectFile &Obj, unsigned SectionID, in finalizeSection() argument
135 return populateJumpTable(cast<MachOObjectFile>(Obj), Section, SectionID); in finalizeSection()
[all …]
/external/llvm/include/llvm/ADT/
DIntrusiveRefCntPtr.h136 T* Obj; variable
141 explicit IntrusiveRefCntPtr() : Obj(nullptr) {} in IntrusiveRefCntPtr()
143 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr()
147 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr()
151 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr()
152 S.Obj = nullptr; in IntrusiveRefCntPtr()
156 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.get()) { in IntrusiveRefCntPtr()
157 S.Obj = nullptr; in IntrusiveRefCntPtr()
162 : Obj(S.get()) { in IntrusiveRefCntPtr()
173 T& operator*() const { return *Obj; }
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DIntrusiveRefCntPtr.h134 T* Obj = nullptr; variable
141 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr()
145 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr()
149 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr()
150 S.Obj = nullptr; in IntrusiveRefCntPtr()
154 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.get()) { in IntrusiveRefCntPtr()
155 S.Obj = nullptr; in IntrusiveRefCntPtr()
160 : Obj(S.get()) { in IntrusiveRefCntPtr()
171 T& operator*() const { return *Obj; }
173 T* operator->() const { return Obj; }
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2coff.cpp35 COFFParser(COFFYAML::Object &Obj) in COFFParser()
36 : Obj(Obj), SectionTableStart(0), SectionTableSize(0) { in COFFParser()
43 return static_cast<int32_t>(Obj.Sections.size()) > in useBigObj()
47 bool isPE() const { return Obj.OptionalHeader.hasValue(); } in isPE()
49 return Obj.Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64; in is64Bit()
53 return Obj.OptionalHeader->Header.FileAlignment; in getFileAlignment()
65 for (std::vector<COFFYAML::Section>::iterator i = Obj.Sections.begin(), in parseSections()
66 e = Obj.Sections.end(); i != e; ++i) { in parseSections()
103 for (std::vector<COFFYAML::Symbol>::iterator i = Obj.Symbols.begin(), in parseSymbols()
104 e = Obj.Symbols.end(); i != e; ++i) { in parseSymbols()
[all …]
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp31 MachODumper(const MachOObjectFile *Obj, ScopedPrinter &Writer) in MachODumper() argument
32 : ObjDumper(Writer), Obj(Obj) {} in MachODumper()
58 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
60 void printSections(const MachOObjectFile *Obj);
62 const MachOObjectFile *Obj; member in __anond8ac7ff80111::MachODumper
70 std::error_code createMachODumper(const object::ObjectFile *Obj, in createMachODumper() argument
73 const MachOObjectFile *MachOObj = dyn_cast<MachOObjectFile>(Obj); in createMachODumper()
304 static void getSection(const MachOObjectFile *Obj, in getSection() argument
307 if (!Obj->is64Bit()) { in getSection()
308 MachO::section Sect = Obj->getSection(Sec); in getSection()
[all …]
DELFDumper.cpp100 ELFDumper(const ELFFile<ELFT> *Obj, ScopedPrinter &Writer);
155 if (DRI.Addr < Obj->base() || in checkDRI()
156 (const uint8_t *)DRI.Addr + DRI.Size > Obj->base() + Obj->getBufSize()) in checkDRI()
162 return checkDRI({Obj->base() + P->p_offset, P->p_filesz, EntSize}); in createDRIFrom()
166 return checkDRI({Obj->base() + S->sh_offset, S->sh_size, S->sh_entsize}); in createDRIFrom()
180 const ELFO *Obj; member in __anon79be9f670111::ELFDumper
260 StrTable = unwrapOrError(Obj->getStringTableForSymtab(*DotSymtabSec)); in printSymbolsHelper()
261 Syms = Obj->symbols(DotSymtabSec); in printSymbolsHelper()
262 SymtabName = unwrapOrError(Obj->getSectionName(DotSymtabSec)); in printSymbolsHelper()
267 ELFDumperStyle->printSymtabMessage(Obj, SymtabName, Entries); in printSymbolsHelper()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DMachODumper.cpp31 MachODumper(const MachOObjectFile *Obj, ScopedPrinter &Writer) in MachODumper() argument
32 : ObjDumper(Writer), Obj(Obj) {} in MachODumper()
60 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc);
62 void printSections(const MachOObjectFile *Obj);
64 const MachOObjectFile *Obj; member in __anon39f5f9500111::MachODumper
72 std::error_code createMachODumper(const object::ObjectFile *Obj, in createMachODumper() argument
75 const MachOObjectFile *MachOObj = dyn_cast<MachOObjectFile>(Obj); in createMachODumper()
306 static void getSection(const MachOObjectFile *Obj, in getSection() argument
309 if (!Obj->is64Bit()) { in getSection()
310 MachO::section Sect = Obj->getSection(Sec); in getSection()
[all …]
DELFDumper.cpp142 ELFDumper(const ELFFile<ELFT> *Obj, ScopedPrinter &Writer);
184 if (DRI.Addr < Obj->base() || in TYPEDEF_ELF_TYPES()
185 (const uint8_t *)DRI.Addr + DRI.Size > Obj->base() + Obj->getBufSize()) in TYPEDEF_ELF_TYPES()
191 return checkDRI({Obj->base() + P->p_offset, P->p_filesz, EntSize}); in createDRIFrom()
195 return checkDRI({Obj->base() + S->sh_offset, S->sh_size, S->sh_entsize}); in createDRIFrom()
209 const ELFO *Obj; member in __anond329e2bf0111::ELFDumper
301 StrTable = unwrapOrError(Obj->getStringTableForSymtab(*DotSymtabSec)); in printSymbolsHelper()
302 Syms = unwrapOrError(Obj->symbols(DotSymtabSec)); in printSymbolsHelper()
303 SymtabName = unwrapOrError(Obj->getSectionName(DotSymtabSec)); in printSymbolsHelper()
308 ELFDumperStyle->printSymtabMessage(Obj, SymtabName, Entries); in printSymbolsHelper()
[all …]
/external/swiftshader/third_party/LLVM/tools/macho-dump/
Dmacho-dump.cpp69 static int DumpSectionData(MachOObject &Obj, unsigned Index, StringRef Name, in DumpSectionData() argument
99 Obj.ReadRelocationEntry(RelocationTableOffset, i, RE); in DumpSectionData()
114 StringRef Data = Obj.getData(Offset, Size); in DumpSectionData()
127 static int DumpSegmentCommand(MachOObject &Obj, in DumpSegmentCommand() argument
130 Obj.ReadSegmentLoadCommand(LCI, SLC); in DumpSegmentCommand()
144 Obj.ReadSection(LCI, i, Sect); in DumpSegmentCommand()
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16), in DumpSegmentCommand()
163 static int DumpSegment64Command(MachOObject &Obj, in DumpSegment64Command() argument
166 Obj.ReadSegment64LoadCommand(LCI, SLC); in DumpSegment64Command()
180 Obj.ReadSection64(LCI, i, Sect); in DumpSegment64Command()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
DObject.cpp69 B += Obj.ProgramHdrSegment.Offset + Seg.Index * sizeof(Elf_Phdr); in writePhdr()
593 for (auto &Parent : Obj.segments()) { in setParentSegment()
613 Segment &Seg = Obj.addSegment(Data); in readProgramHeaders()
624 for (auto &Section : Obj.sections()) { in readProgramHeaders()
635 auto &ElfHdr = Obj.ElfHdrSegment; in readProgramHeaders()
648 auto &PrHdr = Obj.ProgramHdrSegment; in readProgramHeaders()
664 for (auto &Child : Obj.segments()) in readProgramHeaders()
672 auto SecTable = Obj.sections(); in initGroupSection()
726 DefSection = Obj.sections().getSection( in initSymbolTable()
731 if (!isValidReservedSectionIndex(Sym.st_shndx, Obj.Machine)) { in initSymbolTable()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DIntrusiveRefCntPtr.h101 T* Obj; variable
106 explicit IntrusiveRefCntPtr() : Obj(0) {} in IntrusiveRefCntPtr()
108 explicit IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr()
112 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr()
118 : Obj(S.getPtr()) { in IntrusiveRefCntPtr()
140 T& operator*() const { return *Obj; }
142 T* operator->() const { return Obj; }
144 T* getPtr() const { return Obj; } in getPtr()
148 return Obj == 0 ? 0 : &IntrusiveRefCntPtr::getPtr; in unspecified_bool_type()
152 T* tmp = other.Obj; in swap()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp406 static const Target *getTarget(const ObjectFile *Obj = nullptr) { in getTarget() argument
410 if (Obj) { in getTarget()
411 TheTriple = Obj->makeTriple(); in getTarget()
417 if (Obj) { in getTarget()
418 auto Arch = Obj->getArch(); in getTarget()
420 Obj->setARMSubArch(TheTriple); in getTarget()
430 if (Obj) in getTarget()
431 report_error(Obj->getFileName(), "can't find target: " + Error); in getTarget()
446 static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *Obj, in getRelocationValueString() argument
455 const ELFFile<ELFT> &EF = *Obj->getELFFile(); in getRelocationValueString()
[all …]
/external/llvm/lib/IR/
DUser.cpp132 User *Obj = reinterpret_cast<User*>(End); in allocateFixedOperandUser() local
133 Obj->NumUserOperands = Us; in allocateFixedOperandUser()
134 Obj->HasHungOffUses = false; in allocateFixedOperandUser()
135 Obj->HasDescriptor = DescBytes != 0; in allocateFixedOperandUser()
143 return Obj; in allocateFixedOperandUser()
158 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); in operator new() local
159 Obj->NumUserOperands = 0; in operator new()
160 Obj->HasHungOffUses = true; in operator new()
161 Obj->HasDescriptor = false; in operator new()
163 return Obj; in operator new()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DUser.cpp128 User *Obj = reinterpret_cast<User*>(End); in allocateFixedOperandUser() local
129 Obj->NumUserOperands = Us; in allocateFixedOperandUser()
130 Obj->HasHungOffUses = false; in allocateFixedOperandUser()
131 Obj->HasDescriptor = DescBytes != 0; in allocateFixedOperandUser()
139 return Obj; in allocateFixedOperandUser()
154 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); in operator new() local
155 Obj->NumUserOperands = 0; in operator new()
156 Obj->HasHungOffUses = true; in operator new()
157 Obj->HasDescriptor = false; in operator new()
159 return Obj; in operator new()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp38 getObjectForDebug(const ObjectFile &Obj) const override { in getObjectForDebug()
60 const MachOObjectFile &Obj = in processScatteredVANILLA() local
63 Obj.getRelocation(RelI->getRawDataRefImpl()); in processScatteredVANILLA()
66 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processScatteredVANILLA()
67 bool IsPCRel = Obj.getAnyRelocationPCRel(RE); in processScatteredVANILLA()
68 unsigned Size = Obj.getAnyRelocationLength(RE); in processScatteredVANILLA()
74 unsigned SymbolBaseAddr = Obj.getScatteredRelocationValue(RE); in processScatteredVANILLA()
75 section_iterator TargetSI = getSectionByAddress(Obj, SymbolBaseAddr); in processScatteredVANILLA()
76 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); in processScatteredVANILLA()
82 findOrEmitSection(Obj, TargetSection, IsCode, ObjSectionToID)) in processScatteredVANILLA()
[all …]

12345678910>>...14