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

/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h59 /// abiPageSize - the abi page size of the target machine, and we set it to 4K
61 virtual uint64_t abiPageSize() const { return 0x1000; } function in class:mcld::GNUInfo
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGNUInfo.cpp55 uint64_t MipsGNUInfo::abiPageSize() const { function in class:mcld::MipsGNUInfo
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1801 load_seg->setAlign(abiPageSize());
2183 vma += abiPageSize();
2201 alignAddress(vma, abiPageSize());
2240 (vma & (abiPageSize() - 1)) != (offset & (abiPageSize() - 1))) {
2241 uint64_t padding = abiPageSize() + (vma & (abiPageSize() - 1)) -
2242 (offset & (abiPageSize() - 1));
2685 return std::min(config().options().commPageSize(), abiPageSize());
2687 return std::min(m_pInfo->commonPageSize(), abiPageSize());
2691 uint64_t GNULDBackend::abiPageSize() const { function in class:mcld::GNULDBackend
[all...]

Completed in 163 milliseconds