Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64GNUInfo.h24 uint64_t abiPageSize() const { return 0x10000; } in abiPageSize() function
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsGNUInfo.h31 uint64_t abiPageSize() const;
DMipsGNUInfo.cpp72 uint64_t MipsGNUInfo::abiPageSize() const in abiPageSize() function in mcld::MipsGNUInfo
/frameworks/compile/mclinker/include/mcld/Target/
DGNUInfo.h63 virtual uint64_t abiPageSize() const { return 0x1000; } in abiPageSize() function
DTargetLDBackend.h162 virtual uint64_t abiPageSize() const = 0;
DGNULDBackend.h183 uint64_t abiPageSize() const;
/frameworks/compile/mclinker/lib/Script/
DNullaryOp.cpp33 res->setValue(pBackend.abiPageSize()); in eval()
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp1893 load_seg->setAlign(abiPageSize()); in createProgramHdrs()
2299 alignAddress(vma, abiPageSize()); in setOutputSectionAddress()
2338 (vma & (abiPageSize() - 1)) != (offset & (abiPageSize() - 1))) { in setOutputSectionAddress()
2339 uint64_t padding = abiPageSize() + in setOutputSectionAddress()
2340 (vma & (abiPageSize() - 1)) - in setOutputSectionAddress()
2341 (offset & (abiPageSize() - 1)); in setOutputSectionAddress()
2804 return std::min(config().options().commPageSize(), abiPageSize()); in commonPageSize()
2806 return std::min(m_pInfo->commonPageSize(), abiPageSize()); in commonPageSize()
2811 uint64_t GNULDBackend::abiPageSize() const in abiPageSize() function in GNULDBackend
2816 return m_pInfo->abiPageSize(); in abiPageSize()