Searched defs:abiPageSize (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GNUInfo.h24 uint64_t abiPageSize() const { return 0x10000; } function in class:mcld::AArch64GNUInfo
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h61 /// abiPageSize - the abi page size of the target machine, and we set it to 4K
63 virtual uint64_t abiPageSize() const { return 0x1000; } function in class:mcld::GNUInfo
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGNUInfo.cpp72 uint64_t MipsGNUInfo::abiPageSize() const function in class:mcld::MipsGNUInfo
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1893 load_seg->setAlign(abiPageSize());
2299 alignAddress(vma, abiPageSize());
2338 (vma & (abiPageSize() - 1)) != (offset & (abiPageSize() - 1))) {
2339 uint64_t padding = abiPageSize() +
2340 (vma & (abiPageSize() - 1)) -
2341 (offset & (abiPageSize() - 1));
2804 return std::min(config().options().commPageSize(), abiPageSize());
2806 return std::min(m_pInfo->commonPageSize(), abiPageSize());
2809 /// abiPageSize
2811 uint64_t GNULDBackend::abiPageSize() const function in class:GNULDBackend
[all...]

Completed in 97 milliseconds