Home
last modified time | relevance | path

Searched refs:allocateCodeSection (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMemoryManagerTest.cpp19 uint8_t *code1 = MemMgr->allocateCodeSection(256, 0, 1, ""); in TEST()
21 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); in TEST()
52 uint8_t *code1 = MemMgr->allocateCodeSection(0x100000, 0, 1, ""); in TEST()
54 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); in TEST()
91 code[i] = MemMgr->allocateCodeSection(32, 0, 1, ""); in TEST()
130 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, ""); in TEST()
H A DMCJITCAPITest.cpp37 return static_cast<SectionMemoryManager*>(object)->allocateCodeSection( in roundTripAllocateCodeSection()
113 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, in allocateCodeSection() function in __anon98a3fc8f0111::TestReserveAllocationSpaceMemoryManager
117 return SectionMemoryManager::allocateCodeSection(Size, Alignment, in allocateCodeSection()
/llvm-project-15.0.7/llvm/tools/lli/
H A DForwardingMemoryManager.h33 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, in allocateCodeSection() function
36 return MemMgr->allocateCodeSection(Size, Alignment, SectionID, SectionName); in allocateCodeSection()
/llvm-project-15.0.7/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DELF_x86_64_StubBuf.s6 # CHECK: allocateCodeSection(Size = 42, Alignment = 16, SectionName = __text)
/llvm-project-15.0.7/bolt/include/bolt/Rewrite/
H A DExecutableFileMemoryManager.h45 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, in allocateCodeSection() function
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h117 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
H A DRuntimeDyld.h103 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DExecutableFileMemoryManager.cpp46 Ret = SectionMemoryManager::allocateCodeSection(Size, Alignment, SectionID, in allocateSection()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericRTDyldMemoryManager.h55 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DAssembler.cpp279 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, in allocateCodeSection() function in llvm::exegesis::__anon5f6aaf520111::TrackingSectionMemoryManager
283 return SectionMemoryManager::allocateCodeSection(Size, Alignment, SectionID, in allocateCodeSection()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp339 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
372 uint8_t *SimpleBindingMemoryManager::allocateCodeSection( in allocateCodeSection() function in __anon37a441510111::SimpleBindingMemoryManager
H A DSectionMemoryManager.cpp33 uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() function in llvm::SectionMemoryManager
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h256 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericRTDyldMemoryManager.cpp62 uint8_t *EPCGenericRTDyldMemoryManager::allocateCodeSection( in allocateCodeSection() function in llvm::orc::EPCGenericRTDyldMemoryManager
/llvm-project-15.0.7/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp202 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
293 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size, in allocateCodeSection() function in TrivialMemoryManager
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRExecutionUnit.cpp606 uint8_t *IRExecutionUnit::MemoryManager::allocateCodeSection( in allocateCodeSection() function in IRExecutionUnit::MemoryManager
611 uint8_t *return_value = m_default_mm_up->allocateCodeSection( in allocateCodeSection()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp872 Addr = MemMgr.allocateCodeSection(Allocate, Alignment, SectionID, Name); in emitSection()