Lines Matching refs:MB

192     SectionInfo(StringRef Name, sys::MemoryBlock MB, unsigned SectionID)  in SectionInfo()
193 : Name(std::string(Name)), MB(std::move(MB)), SectionID(SectionID) {} in SectionInfo()
195 sys::MemoryBlock MB; member
251 sys::MemoryBlock MB = in preallocateSlab() local
256 if (!MB.base()) in preallocateSlab()
260 PreallocSlab = MB; in preallocateSlab()
272 sys::MemoryBlock MB((void *)OldSlabOffset, Size); in allocateFromSlab() local
274 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateFromSlab()
276 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateFromSlab()
309 sys::MemoryBlock MB = in allocateCodeSection() local
314 if (!MB.base()) in allocateCodeSection()
317 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateCodeSection()
318 return (uint8_t*)MB.base(); in allocateCodeSection()
338 sys::MemoryBlock MB = in allocateDataSection() local
343 if (!MB.base()) in allocateDataSection()
346 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateDataSection()
347 return (uint8_t*)MB.base(); in allocateDataSection()
602 auto &FM_MB = FM.MB; in executeInput()
718 reinterpret_cast<uintptr_t>((*Tmp)->MB.base()))) { in remapSectionsAndSymbols()
723 AlreadyAllocated[LoadAddr] = (*Tmp)->MB.allocatedSize(); in remapSectionsAndSymbols()
747 if (NextSectionAddr + CurEntry->MB.allocatedSize() + TargetSectionSep <= in remapSectionsAndSymbols()
753 Dyld.mapSectionAddress(CurEntry->MB.base(), NextSectionAddr); in remapSectionsAndSymbols()
754 AlreadyAllocated[NextSectionAddr] = CurEntry->MB.allocatedSize(); in remapSectionsAndSymbols()