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

/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJITMemoryManager.h32 unsigned SectionID) {
33 return JMM->allocateDataSection(Size, Alignment, SectionID);
37 unsigned SectionID) {
38 return JMM->allocateCodeSection(Size, Alignment, SectionID);
31 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
36 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp19 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
31 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
H A Dlli.cpp213 unsigned SectionID);
216 unsigned SectionID);
286 unsigned SectionID) {
296 unsigned SectionID) {
284 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
294 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp57 unsigned SectionID);
59 unsigned SectionID);
75 unsigned SectionID) {
83 unsigned SectionID) {
73 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
81 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h74 /// SectionID - the section this relocation points to.
75 unsigned SectionID; member in class:llvm::RelocationEntry
88 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {}
93 /// the section to which the relocation points (represented by a SectionID).
96 unsigned SectionID; member in class:llvm::ObjRelocationInfo
105 unsigned SectionID; member in class:llvm::RelocationValueRef
108 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
124 // referenced in the code by means of their index in this list - SectionID.
128 // Keep a map of sections from object file to the SectionID which
133 // symbol name to a (SectionID, offse
180 getSectionLoadAddress(unsigned SectionID) argument
184 getSectionAddress(unsigned SectionID) argument
[all...]
H A DRuntimeDyld.cpp124 unsigned SectionID = local
129 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
132 << " SID: " << SectionID
136 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
152 unsigned SectionID = 0; local
159 // If it's the first relocation in this section, find its SectionID
161 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
162 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
167 RI.SectionID = SectionID;
191 unsigned SectionID = Sections.size(); local
246 unsigned SectionID = Sections.size(); local
303 unsigned SectionID = 0; local
314 addRelocationForSection(const RelocationEntry &RE, unsigned SectionID) argument
366 reassignSectionAddress(unsigned SectionID, uint64_t Addr) argument
490 reassignSectionAddress(unsigned SectionID, uint64_t Addr) argument
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp463 unsigned SectionID) {
504 unsigned SectionID) {
462 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
503 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp121 unsigned SectionID) {
122 return Base->allocateDataSection(Size, Alignment, SectionID);
125 unsigned SectionID) {
126 return Base->allocateCodeSection(Size, Alignment, SectionID);
120 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument
124 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) argument

Completed in 298 milliseconds