Home
last modified time | relevance | path

Searched refs:CodeAlign (Results 1 – 8 of 8) sorted by relevance

/external/llvm/tools/lli/
DRemoteJITUtils.h103 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
107 MemMgr->reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in reserveAllocationSpace()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp186 uint32_t CodeAlign = 1, RODataAlign = 1, RWDataAlign = 1; in loadObjectImpl() local
188 CodeSize, CodeAlign, in loadObjectImpl()
192 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in loadObjectImpl()
412 uint32_t &CodeAlign, in computeTotalAllocSize() argument
457 CodeAlign = std::max(CodeAlign, Alignment); in computeTotalAllocSize()
496 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign); in computeTotalAllocSize()
DRuntimeDyldImpl.h405 uint64_t &CodeSize, uint32_t &CodeAlign,
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITMemoryManagerTest.cpp146 uintptr_t CodeAlign = Align ? (uintptr_t)code[i] % Align : 0; in TEST() local
149 EXPECT_EQ((uintptr_t)0, CodeAlign); in TEST()
DMCJITCAPITest.cpp91 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
/external/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h57 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
61 return ClientMM->reserveAllocationSpace(CodeSize, CodeAlign, in reserveAllocationSpace()
/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h142 virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h116 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
125 if (auto AddrOrErr = Client.reserveMem(Id, CodeSize, CodeAlign)) in reserveAllocationSpace()
134 << " (" << CodeSize << " bytes, alignment " << CodeAlign in reserveAllocationSpace()