1*2f09f445SMaksim Panchenko //===- bolt/Rewrite/ExecutableFileMemoryManager.cpp -----------------------===// 2a34c753fSRafael Auler // 3a34c753fSRafael Auler // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4a34c753fSRafael Auler // See https://llvm.org/LICENSE.txt for license information. 5a34c753fSRafael Auler // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6a34c753fSRafael Auler // 7a34c753fSRafael Auler //===----------------------------------------------------------------------===// 8a34c753fSRafael Auler 9a34c753fSRafael Auler #include "bolt/Rewrite/ExecutableFileMemoryManager.h" 10a34c753fSRafael Auler #include "bolt/Rewrite/RewriteInstance.h" 11a34c753fSRafael Auler 12a34c753fSRafael Auler #undef DEBUG_TYPE 13a34c753fSRafael Auler #define DEBUG_TYPE "efmm" 14a34c753fSRafael Auler 15a34c753fSRafael Auler using namespace llvm; 16a34c753fSRafael Auler using namespace object; 17a34c753fSRafael Auler using namespace bolt; 18a34c753fSRafael Auler 19a34c753fSRafael Auler namespace llvm { 20a34c753fSRafael Auler 21a34c753fSRafael Auler namespace bolt { 22a34c753fSRafael Auler 23a34c753fSRafael Auler uint8_t *ExecutableFileMemoryManager::allocateSection(intptr_t Size, 24a34c753fSRafael Auler unsigned Alignment, 25a34c753fSRafael Auler unsigned SectionID, 26a34c753fSRafael Auler StringRef SectionName, 27a34c753fSRafael Auler bool IsCode, 28a34c753fSRafael Auler bool IsReadOnly) { 29a34c753fSRafael Auler // Register a debug section as a note section. 30a34c753fSRafael Auler if (!ObjectsLoaded && RewriteInstance::isDebugSection(SectionName)) { 31a34c753fSRafael Auler uint8_t *DataCopy = new uint8_t[Size]; 32a34c753fSRafael Auler BinarySection &Section = 33a34c753fSRafael Auler BC.registerOrUpdateNoteSection(SectionName, DataCopy, Size, Alignment); 34a34c753fSRafael Auler Section.setSectionID(SectionID); 35a34c753fSRafael Auler assert(!Section.isAllocatable() && "note sections cannot be allocatable"); 36a34c753fSRafael Auler return DataCopy; 37a34c753fSRafael Auler } 38a34c753fSRafael Auler 3940c2e0faSMaksim Panchenko if (!IsCode && (SectionName == ".strtab" || SectionName == ".symtab" || 4040c2e0faSMaksim Panchenko SectionName == "" || SectionName.startswith(".rela."))) { 41a34c753fSRafael Auler return SectionMemoryManager::allocateDataSection(Size, Alignment, SectionID, 42a34c753fSRafael Auler SectionName, IsReadOnly); 43a34c753fSRafael Auler } 44a34c753fSRafael Auler 45a34c753fSRafael Auler uint8_t *Ret; 46a34c753fSRafael Auler if (IsCode) { 4740c2e0faSMaksim Panchenko Ret = SectionMemoryManager::allocateCodeSection(Size, Alignment, SectionID, 4840c2e0faSMaksim Panchenko SectionName); 49a34c753fSRafael Auler } else { 50a34c753fSRafael Auler Ret = SectionMemoryManager::allocateDataSection(Size, Alignment, SectionID, 51a34c753fSRafael Auler SectionName, IsReadOnly); 52a34c753fSRafael Auler } 53a34c753fSRafael Auler 54a34c753fSRafael Auler SmallVector<char, 256> Buf; 55a34c753fSRafael Auler if (ObjectsLoaded > 0) { 56a34c753fSRafael Auler if (BC.isELF()) { 57a34c753fSRafael Auler SectionName = (Twine(SectionName) + ".bolt.extra." + Twine(ObjectsLoaded)) 58a34c753fSRafael Auler .toStringRef(Buf); 59a34c753fSRafael Auler } else if (BC.isMachO()) { 60a34c753fSRafael Auler assert((SectionName == "__text" || SectionName == "__data" || 61a34c753fSRafael Auler SectionName == "__fini" || SectionName == "__setup" || 62a34c753fSRafael Auler SectionName == "__cstring" || SectionName == "__literal16") && 63a34c753fSRafael Auler "Unexpected section in the instrumentation library"); 64a34c753fSRafael Auler // Sections coming from the instrumentation runtime are prefixed with "I". 65a34c753fSRafael Auler SectionName = ("I" + Twine(SectionName)).toStringRef(Buf); 66a34c753fSRafael Auler } 67a34c753fSRafael Auler } 68a34c753fSRafael Auler 69a34c753fSRafael Auler BinarySection &Section = BC.registerOrUpdateSection( 70a34c753fSRafael Auler SectionName, ELF::SHT_PROGBITS, 71a34c753fSRafael Auler BinarySection::getFlags(IsReadOnly, IsCode, true), Ret, Size, Alignment); 72a34c753fSRafael Auler Section.setSectionID(SectionID); 73a34c753fSRafael Auler assert(Section.isAllocatable() && 74a34c753fSRafael Auler "verify that allocatable is marked as allocatable"); 75a34c753fSRafael Auler 76a34c753fSRafael Auler LLVM_DEBUG( 77a34c753fSRafael Auler dbgs() << "BOLT: allocating " 78a34c753fSRafael Auler << (IsCode ? "code" : (IsReadOnly ? "read-only data" : "data")) 79a34c753fSRafael Auler << " section : " << SectionName << " with size " << Size 80a34c753fSRafael Auler << ", alignment " << Alignment << " at 0x" << Ret 81a34c753fSRafael Auler << ", ID = " << SectionID << "\n"); 82a34c753fSRafael Auler return Ret; 83a34c753fSRafael Auler } 84a34c753fSRafael Auler 85a34c753fSRafael Auler bool ExecutableFileMemoryManager::finalizeMemory(std::string *ErrMsg) { 86a34c753fSRafael Auler LLVM_DEBUG(dbgs() << "BOLT: finalizeMemory()\n"); 87a34c753fSRafael Auler ++ObjectsLoaded; 88a34c753fSRafael Auler return SectionMemoryManager::finalizeMemory(ErrMsg); 89a34c753fSRafael Auler } 90a34c753fSRafael Auler 91a34c753fSRafael Auler ExecutableFileMemoryManager::~ExecutableFileMemoryManager() {} 92a34c753fSRafael Auler 9340c2e0faSMaksim Panchenko } // namespace bolt 94a34c753fSRafael Auler 9540c2e0faSMaksim Panchenko } // namespace llvm 96