Searched defs:SectionID (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/ExecutionEngine/MCJIT/
H A DSectionMemoryManager.cpp23 unsigned SectionID,
33 unsigned SectionID,
21 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
31 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, argument
49 unsigned SectionID, StringRef SectionName,
48 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp91 unsigned SectionID,
94 unsigned SectionID, StringRef SectionName,
113 unsigned SectionID,
122 unsigned SectionID,
111 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
120 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h81 /// SectionID - the section this relocation points to.
82 unsigned SectionID; member in class:llvm::RelocationEntry
113 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
118 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
123 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
129 : SectionID(id), Offset(offset), RelType(type),
139 unsigned SectionID; member in class:llvm::RelocationValueRef
143 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
147 return SectionID == Other.SectionID
248 getSectionLoadAddress(unsigned SectionID) argument
252 getSectionAddress(unsigned SectionID) argument
[all...]
H A DRuntimeDyld.cpp54 // symbol for the relocation is located. The SectionID in the relocation
169 unsigned SectionID = local
171 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
173 << " flags: " << Flags << " SID: " << SectionID); local
174 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
188 unsigned SectionID = 0; local
200 SectionID =
202 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
205 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
362 unsigned SectionID local
429 unsigned SectionID = Sections.size(); local
488 unsigned SectionID = 0; local
499 addRelocationForSection(const RelocationEntry &RE, unsigned SectionID) argument
600 reassignSectionAddress(unsigned SectionID, uint64_t Addr) argument
788 reassignSectionAddress(unsigned SectionID, uint64_t Addr) argument
[all...]
H A DRuntimeDyldMachO.cpp242 // The target location for the relocation is described by RE.SectionID and
243 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
265 const SectionEntry &Section = Sections[RE.SectionID];
269 dbgs() << "resolveRelocation Section: " << RE.SectionID
302 const SectionEntry &Section = Sections[RE.SectionID];
332 const SectionEntry &Section = Sections[RE.SectionID];
364 const SectionEntry &Section = Sections[RE.SectionID];
417 const SectionEntry &Section = Sections[RE.SectionID];
548 unsigned SectionID,
557 SectionEntry &Section = Sections[SectionID];
547 processSECTDIFFRelocation( unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID) argument
612 processI386ScatteredVANILLA( unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID) argument
653 processRelocationRef( unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
[all...]
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp107 unsigned SectionID, StringRef SectionName, bool IsReadOnly) {
110 SectionID, SectionName, IsReadOnly);
114 unsigned SectionID, StringRef SectionName) {
117 SectionID, SectionName);
106 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
113 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
/external/lldb/source/Expression/
H A DIRExecutionUnit.cpp493 unsigned SectionID)
497 uint8_t *return_value = m_default_mm_ap->allocateCodeSection(Size, Alignment, SectionID);
503 SectionID));
507 log->Printf("IRExecutionUnit::allocateCodeSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
508 (uint64_t)Size, Alignment, SectionID, return_value);
517 unsigned SectionID,
522 uint8_t *return_value = m_default_mm_ap->allocateDataSection(Size, Alignment, SectionID, IsReadOnly);
528 SectionID));
531 log->Printf("IRExecutionUnit::allocateDataSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
532 (uint64_t)Size, Alignment, SectionID, return_valu
491 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
515 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, bool IsReadOnly) argument
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp358 unsigned SectionID,
362 unsigned SectionID, StringRef SectionName,
391 uintptr_t Size, unsigned Alignment, unsigned SectionID,
393 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
398 uintptr_t Size, unsigned Alignment, unsigned SectionID,
400 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID,
390 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
397 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool isReadOnly) argument
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp140 uintptr_t Size, unsigned Alignment, unsigned SectionID,
143 Size, Alignment, SectionID, SectionName, IsReadOnly);
146 uintptr_t Size, unsigned Alignment, unsigned SectionID,
149 Size, Alignment, SectionID, SectionName);
139 allocateDataSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
145 allocateCodeSection( uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument

Completed in 479 milliseconds