Home | History | Annotate | Download | only in lli

Lines Matching refs:Size

33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID,
39 sys::MemoryBlock Block = allocateSection(Size);
48 allocateDataSection(uintptr_t Size, unsigned Alignment,
55 sys::MemoryBlock Block = allocateSection(Size);
63 sys::MemoryBlock RemoteMemoryManager::allocateSection(uintptr_t Size) {
65 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(Size,
95 unsigned NumSections = UnmappedSections.size();
101 unsigned Size = Section.MB.size();
103 DEBUG(dbgs() << "code region: size " << Size
110 CurOffset += Size;
118 unsigned Size = Section.MB.size();
120 DEBUG(dbgs() << "data region: size " << Size
127 CurOffset += Size;
138 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
159 if (!Target->loadCode(RemoteAddr, Section.MB.base(), Section.MB.size()))
164 if (!Target->loadData(RemoteAddr, Section.MB.base(), Section.MB.size()))