Lines Matching refs:Obj

37   getObjectForDebug(const ObjectFile &Obj) const override {  in getObjectForDebug()
57 const MachOObjectFile &Obj = in getRelocationValueRef() local
60 Obj.getRelocation(RI->getRawDataRefImpl()); in getRelocationValueRef()
63 bool IsExternal = Obj.getPlainRelocationExternal(RelInfo); in getRelocationValueRef()
81 SectionRef Sec = Obj.getAnyRelocationSection(RelInfo); in getRelocationValueRef()
83 Value.SectionID = findOrEmitSection(Obj, Sec, IsCode, ObjSectionToID); in getRelocationValueRef()
114 RuntimeDyldMachO::getSectionByAddress(const MachOObjectFile &Obj, in getSectionByAddress() argument
116 section_iterator SI = Obj.section_begin(); in getSectionByAddress()
117 section_iterator SE = Obj.section_end(); in getSectionByAddress()
132 const MachOObjectFile &Obj, in populateIndirectSymbolPointersSection() argument
135 assert(!Obj.is64Bit() && in populateIndirectSymbolPointersSection()
138 MachO::dysymtab_command DySymTabCmd = Obj.getDysymtabLoadCommand(); in populateIndirectSymbolPointersSection()
139 MachO::section Sec32 = Obj.getSection(PTSection.getRawDataRefImpl()); in populateIndirectSymbolPointersSection()
157 Obj.getIndirectSymbolTableEntry(DySymTabCmd, FirstIndirectSymbol + i); in populateIndirectSymbolPointersSection()
158 symbol_iterator SI = Obj.getSymbolByIndex(SymbolIndex); in populateIndirectSymbolPointersSection()
172 bool RuntimeDyldMachO::isCompatibleFile(const object::ObjectFile &Obj) const { in isCompatibleFile()
173 return Obj.isMachO(); in isCompatibleFile()
177 void RuntimeDyldMachOCRTPBase<Impl>::finalizeLoad(const ObjectFile &Obj, in finalizeLoad() argument
183 for (const auto &Section : Obj.sections()) { in finalizeLoad()
191 TextSID = findOrEmitSection(Obj, Section, true, SectionMap); in finalizeLoad()
193 EHFrameSID = findOrEmitSection(Obj, Section, false, SectionMap); in finalizeLoad()
195 ExceptTabSID = findOrEmitSection(Obj, Section, true, SectionMap); in finalizeLoad()
199 impl().finalizeSection(Obj, I->second, Section); in finalizeLoad()