HomeSort by relevance Sort by last modified time
    Searched refs:SectionID (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 38 /// executable code. The SectionID is a unique identifier assigned by the JIT
42 unsigned SectionID) = 0;
45 /// The SectionID is a unique identifier assigned by the JIT engine, and
48 unsigned SectionID, bool IsReadOnly) = 0;
SectionMemoryManager.h 52 unsigned SectionID);
60 unsigned SectionID,
RuntimeDyld.h 38 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 79 /// SectionID - the section this relocation points to.
80 unsigned SectionID;
99 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
104 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
110 unsigned SectionID;
113 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
129 // referenced in the code by means of their index in this list - SectionID.
133 // Keep a map of sections from object file to the SectionID which
138 // symbol name to a (SectionID, offset in section) pair.
154 // Relocations to sections already loaded. Indexed by SectionID which is th
    [all...]
RuntimeDyld.cpp 126 unsigned SectionID = findOrEmitSection(*obj, *si, IsCode, LocalSections);
127 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
130 << " SID: " << SectionID
132 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
148 unsigned SectionID = 0;
156 // If it's the first relocation in this section, find its SectionID
158 SectionID =
160 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
164 processRelocationRef(SectionID, *i, *obj, LocalSections, LocalSymbols,
177 unsigned SectionID = Sections.size()
    [all...]
RuntimeDyldELF.cpp 593 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections);
740 const SectionEntry &Section = Sections[RE.SectionID];
784 void RuntimeDyldELF::processRelocationRef(unsigned SectionID,
813 Value.SectionID = lsi->second.first;
821 Value.SectionID = gsi->second.first;
837 Value.SectionID = findOrEmitSection(Obj,
858 DEBUG(dbgs() << "\t\tSectionID: " << SectionID
866 SectionEntry &Section = Sections[SectionID];
881 RelocationEntry REmovz_g3(SectionID
    [all...]
RuntimeDyldMachO.cpp 89 const SectionEntry &Section = Sections[RE.SectionID];
279 void RuntimeDyldMachO::processRelocationRef(unsigned SectionID,
291 SectionEntry &Section = Sections[SectionID];
311 Value.SectionID = lsi->second.first;
317 Value.SectionID = gsi->second.first;
326 Value.SectionID = findOrEmitSection(Obj, Sec, true, ObjSectionToID);
342 RelocationEntry RE(SectionID, Section.StubOffset,
348 addRelocationForSection(RE, Value.SectionID);
369 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address,
374 addRelocationForSection(RE, Value.SectionID);
    [all...]
RuntimeDyldMachO.h 61 virtual void processRelocationRef(unsigned SectionID,
RuntimeDyldELF.h 91 virtual void processRelocationRef(unsigned SectionID,
  /external/llvm/tools/lli/
RecordingMemoryManager.h 53 unsigned SectionID);
56 unsigned SectionID, bool IsReadOnly);
RecordingMemoryManager.cpp 30 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) {
42 unsigned SectionID, bool IsReadOnly) {
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 344 unsigned SectionID);
347 unsigned SectionID, LLVMBool IsReadOnly);
359 unsigned SectionID);
362 unsigned SectionID,
391 uintptr_t Size, unsigned Alignment, unsigned SectionID) {
392 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID);
396 uintptr_t Size, unsigned Alignment, unsigned SectionID, bool isReadOnly) {
397 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID,
420 unsigned SectionID),
423 unsigned SectionID, LLVMBool IsReadOnly)
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 63 unsigned SectionID);
65 unsigned SectionID, bool IsReadOnly);
83 unsigned SectionID) {
91 unsigned SectionID,
  /external/llvm/include/llvm-c/
ExecutionEngine.h 189 unsigned SectionID),
192 unsigned SectionID, LLVMBool IsReadOnly),
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 23 unsigned SectionID,
32 unsigned SectionID) {
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 139 unsigned SectionID, bool IsReadOnly) {
140 return Base->allocateDataSection(Size, Alignment, SectionID, IsReadOnly);
143 unsigned SectionID) {
144 return Base->allocateCodeSection(Size, Alignment, SectionID);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 467 unsigned SectionID) {
513 unsigned SectionID, bool IsReadOnly) {
    [all...]

Completed in 785 milliseconds