/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFX86_64.h | 123 section_iterator SecI = *SectionOrError; in processRelocationRef() local 125 const bool IsExtern = SecI == Obj.section_end(); in processRelocationRef() 171 bool IsCode = SecI->isText(); in processRelocationRef() 174 findOrEmitSection(Obj, *SecI, IsCode, ObjSectionToID)) in processRelocationRef()
|
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFX86_64.h | 203 object::section_iterator SecI = *SectionOrError; in processRelocationRef() local 205 bool IsExtern = SecI == Obj.section_end(); in processRelocationRef() 230 findOrEmitSection(Obj, *SecI, SecI->isText(), ObjSectionToID)) in processRelocationRef()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFX86_64.h | 203 object::section_iterator SecI = *SectionOrError; in processRelocationRef() local 205 const bool IsExtern = SecI == Obj.section_end(); in processRelocationRef() 256 bool IsCode = SecI->isText(); in processRelocationRef() 259 findOrEmitSection(Obj, *SecI, IsCode, ObjSectionToID)) in processRelocationRef()
|
/external/llvm/tools/llvm-readobj/ |
D | MachODumper.cpp | 549 section_iterator SecI = Obj->getRelocationSection(DR); in printRelocation() local 550 if (SecI != Obj->section_end()) { in printRelocation() 551 error(SecI->getName(TargetName)); in printRelocation() 621 section_iterator SecI = *SecIOrErr; in printSymbol() local 622 if (SecI != Obj->section_end()) in printSymbol() 623 error(SecI->getName(SectionName)); in printSymbol()
|
/external/llvm-project/llvm/tools/llvm-profgen/ |
D | ProfiledBinary.cpp | 282 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); in disassemble() local 283 if (SecI != Obj->section_end()) in disassemble() 284 AllSymbols[*SecI].push_back(SymbolInfoTy(Addr, Name, ELF::STT_NOTYPE)); in disassemble()
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | MachODumper.cpp | 557 section_iterator SecI = Obj->getRelocationSection(DR); in printRelocation() local 558 if (SecI != Obj->section_end()) in printRelocation() 559 TargetName = unwrapOrError(Obj->getFileName(), SecI->getName()); in printRelocation() 636 section_iterator SecI = *SecIOrErr; in printSymbol() local 637 if (SecI != Obj->section_end()) in printSymbol() 638 SectionName = unwrapOrError(Obj->getFileName(), SecI->getName()); in printSymbol()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 142 section_iterator SecI = O.getRelocationRelocatedSection(RI); in makeValueAddendPCRel() local 143 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel()
|
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 144 section_iterator SecI = O.getRelocationRelocatedSection(RI); in makeValueAddendPCRel() local 145 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 144 section_iterator SecI = O.getRelocationRelocatedSection(RI); in makeValueAddendPCRel() local 145 Value.Offset += RI->getOffset() + OffsetToNextPC + SecI->getAddress(); in makeValueAddendPCRel()
|
/external/llvm/tools/llvm-cxxdump/ |
D | llvm-cxxdump.cpp | 191 object::section_iterator SecI = *SecIOrErr; in dumpCXXData() local 193 if (SecI == Obj->section_end()) in dumpCXXData() 195 const SectionRef &Sec = *SecI; in dumpCXXData()
|
/external/llvm-project/llvm/tools/llvm-cxxdump/ |
D | llvm-cxxdump.cpp | 199 object::section_iterator SecI = *SecIOrErr; in dumpCXXData() local 201 if (SecI == Obj->section_end()) in dumpCXXData() 203 const SectionRef &Sec = *SecI; in dumpCXXData()
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 753 elf_section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local 754 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar() 755 switch (SecI->getType()) { in getSymbolNMTypeChar() 758 switch (SecI->getFlags()) { in getSymbolNMTypeChar() 816 section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local 817 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()
|
/external/llvm-project/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 938 elf_section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local 939 if (SecI != Obj.section_end()) { in getSymbolNMTypeChar() 940 uint32_t Type = SecI->getType(); in getSymbolNMTypeChar() 941 uint64_t Flags = SecI->getFlags(); in getSymbolNMTypeChar() 949 auto NameOrErr = SecI->getName(); in getSymbolNMTypeChar() 989 section_iterator SecI = *SecIOrErr; in getSymbolNMTypeChar() local 990 const coff_section *Section = Obj.getCOFFSection(*SecI); in getSymbolNMTypeChar()
|
/external/llvm-project/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 1371 section_iterator SecI = in addDynamicElfSymbols() local 1373 if (SecI == Obj->section_end()) in addDynamicElfSymbols() 1376 AllSymbols[*SecI].emplace_back(Address, Name, SymbolType); in addDynamicElfSymbols() 1692 section_iterator SecI = unwrapOrError(Symbol.getSection(), FileName); in disassembleObject() local 1693 if (SecI != Obj->section_end()) in disassembleObject() 1694 AllSymbols[*SecI].push_back(createSymbolInfo(Obj, Symbol)); in disassembleObject()
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 1017 section_iterator SecI = *SectionOrErr; in DisassembleObject() local 1018 if (SecI == Obj->section_end()) in DisassembleObject() 1021 AllSymbols[*SecI].emplace_back(Address, *Name); in DisassembleObject()
|