OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CodeAlign
(Results
1 - 8
of
8
) sorted by null
/external/llvm/tools/lli/
RemoteJITUtils.h
103
void reserveAllocationSpace(uintptr_t CodeSize, uint32_t
CodeAlign
,
107
MemMgr->reserveAllocationSpace(CodeSize,
CodeAlign
, RODataSize, RODataAlign,
/external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp
146
uintptr_t
CodeAlign
= Align ? (uintptr_t)code[i] % Align : 0;
149
EXPECT_EQ((uintptr_t)0,
CodeAlign
);
MCJITCAPITest.cpp
91
void reserveAllocationSpace(uintptr_t CodeSize, uint32_t
CodeAlign
,
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp
186
uint32_t
CodeAlign
= 1, RODataAlign = 1, RWDataAlign = 1;
188
CodeSize,
CodeAlign
,
192
MemMgr.reserveAllocationSpace(CodeSize,
CodeAlign
, RODataSize, RODataAlign,
412
uint32_t &
CodeAlign
,
457
CodeAlign
= std::max(
CodeAlign
, Alignment);
496
CodeSize = computeAllocationSizeForSections(CodeSectionSizes,
CodeAlign
);
[
all
...]
RuntimeDyldImpl.h
405
uint64_t &CodeSize, uint32_t &
CodeAlign
,
/external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h
142
virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t
CodeAlign
,
/external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.h
57
void reserveAllocationSpace(uintptr_t CodeSize, uint32_t
CodeAlign
,
61
return ClientMM->reserveAllocationSpace(CodeSize,
CodeAlign
,
/external/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h
116
void reserveAllocationSpace(uintptr_t CodeSize, uint32_t
CodeAlign
,
125
if (auto AddrOrErr = Client.reserveMem(Id, CodeSize,
CodeAlign
))
134
<< " (" << CodeSize << " bytes, alignment " <<
CodeAlign
Completed in 76 milliseconds