/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 126 unsigned SectionID = findOrEmitSection(*obj, *si, IsCode, LocalSections); in loadObject() local 127 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset); in loadObject() 130 << " SID: " << SectionID in loadObject() 132 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset); in loadObject() 148 unsigned SectionID = 0; in loadObject() local 158 SectionID = in loadObject() 160 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n"); in loadObject() 164 processRelocationRef(SectionID, *i, *obj, LocalSections, LocalSymbols, in loadObject() 177 unsigned SectionID = Sections.size(); in emitCommonSymbols() local 179 SectionID, false); in emitCommonSymbols() [all …]
|
D | RuntimeDyldImpl.h | 80 unsigned SectionID; 99 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 104 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 110 unsigned SectionID; 113 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {} in RelocationValueRef() 202 uint64_t getSectionLoadAddress(unsigned SectionID) { in getSectionLoadAddress() argument 203 return Sections[SectionID].LoadAddress; in getSectionLoadAddress() 206 uint8_t *getSectionAddress(unsigned SectionID) { in getSectionAddress() argument 207 return (uint8_t*)Sections[SectionID].Address; in getSectionAddress() 266 void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID); [all …]
|
D | RuntimeDyldELF.cpp | 593 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections); in findOPDEntrySection() 740 const SectionEntry &Section = Sections[RE.SectionID]; in resolveRelocation() 784 void RuntimeDyldELF::processRelocationRef(unsigned SectionID, in processRelocationRef() argument 813 Value.SectionID = lsi->second.first; in processRelocationRef() 821 Value.SectionID = gsi->second.first; in processRelocationRef() 837 Value.SectionID = findOrEmitSection(Obj, in processRelocationRef() 858 DEBUG(dbgs() << "\t\tSectionID: " << SectionID in processRelocationRef() 866 SectionEntry &Section = Sections[SectionID]; in processRelocationRef() 881 RelocationEntry REmovz_g3(SectionID, in processRelocationRef() 884 RelocationEntry REmovk_g2(SectionID, in processRelocationRef() [all …]
|
D | RuntimeDyldMachO.cpp | 89 const SectionEntry &Section = Sections[RE.SectionID]; in resolveRelocation() 279 void RuntimeDyldMachO::processRelocationRef(unsigned SectionID, in processRelocationRef() argument 291 SectionEntry &Section = Sections[SectionID]; in processRelocationRef() 311 Value.SectionID = lsi->second.first; in processRelocationRef() 317 Value.SectionID = gsi->second.first; in processRelocationRef() 326 Value.SectionID = findOrEmitSection(Obj, Sec, true, ObjSectionToID); in processRelocationRef() 342 RelocationEntry RE(SectionID, Section.StubOffset, in processRelocationRef() 348 addRelocationForSection(RE, Value.SectionID); in processRelocationRef() 369 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address, in processRelocationRef() 374 addRelocationForSection(RE, Value.SectionID); in processRelocationRef() [all …]
|
D | RuntimeDyldMachO.h | 61 virtual void processRelocationRef(unsigned SectionID,
|
D | RuntimeDyldELF.h | 91 virtual void processRelocationRef(unsigned SectionID,
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 344 unsigned SectionID); 347 unsigned SectionID, LLVMBool IsReadOnly); 359 unsigned SectionID); 362 unsigned SectionID, 391 uintptr_t Size, unsigned Alignment, unsigned SectionID) { in allocateCodeSection() argument 392 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID); in allocateCodeSection() 396 uintptr_t Size, unsigned Alignment, unsigned SectionID, bool isReadOnly) { in allocateDataSection() argument 397 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, in allocateDataSection() 420 unsigned SectionID), in LLVMCreateSimpleMCJITMemoryManager() argument 423 unsigned SectionID, LLVMBool IsReadOnly), in LLVMCreateSimpleMCJITMemoryManager()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RTDyldMemoryManager.h | 42 unsigned SectionID) = 0; 48 unsigned SectionID, bool IsReadOnly) = 0;
|
D | SectionMemoryManager.h | 52 unsigned SectionID); 60 unsigned SectionID,
|
D | RuntimeDyld.h | 38 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 63 unsigned SectionID); 65 unsigned SectionID, bool IsReadOnly); 83 unsigned SectionID) { in allocateCodeSection() argument 91 unsigned SectionID, in allocateDataSection() argument
|
/external/llvm/tools/lli/ |
D | RecordingMemoryManager.h | 53 unsigned SectionID); 56 unsigned SectionID, bool IsReadOnly);
|
D | RecordingMemoryManager.cpp | 30 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { in allocateCodeSection() argument 42 unsigned SectionID, bool IsReadOnly) { in allocateDataSection() argument
|
/external/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 189 unsigned SectionID), 192 unsigned SectionID, LLVMBool IsReadOnly),
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | SectionMemoryManager.cpp | 23 unsigned SectionID, in allocateDataSection() argument 32 unsigned SectionID) { in allocateCodeSection() argument
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
D | JITTest.cpp | 139 unsigned SectionID, bool IsReadOnly) { in allocateDataSection() argument 140 return Base->allocateDataSection(Size, Alignment, SectionID, IsReadOnly); in allocateDataSection() 143 unsigned SectionID) { in allocateCodeSection() argument 144 return Base->allocateCodeSection(Size, Alignment, SectionID); in allocateCodeSection()
|
/external/llvm/lib/ExecutionEngine/JIT/ |
D | JITMemoryManager.cpp | 467 unsigned SectionID) { in allocateCodeSection() argument 513 unsigned SectionID, bool IsReadOnly) { in allocateDataSection() argument
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/resources/ |
D | final-url-en | 3227 http://ci.golden.co.us/Employment.asp?SectionID=61 4022 http://data1.recycle-more.co.uk/recycle3/nav/buildpage.asp?SectionID=621&color=orange&TopSectionID=… 4648 http://dunndailyrecord.com/main.asp?SectionID=2&SubSectionID=10&ArticleID=63458 17811 http://union-bulletin.com/main.asp?SectionID=17&SubSectionID=30&ArticleID=24952 17812 http://union-bulletin.com/main.asp?SectionID=17&SubSectionID=30&ArticleID=25103 20925 http://www.afb.org/Section.asp?SectionID=1&TopicID=193&SubTopicID=11&DocumentID=972 20926 http://www.afb.org/Section.asp?SectionID=3&TopicID=237&DocumentID=2364 20927 http://www.afb.org/Section.asp?SectionID=8&TopicID=197&DocumentID=2149 29008 http://www.breeze-courier.com/Main.asp?SectionID=38&SubSectionID=464&ArticleID=56882 37187 http://www.dmcityview.com/main.asp?SectionID=12&SubSectionID=73&BrowseClass=1&Category=1000&SubCate… [all …]
|