Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/Mips/
DMipsGNUInfo.h30 uint64_t abiPageSize() const;
DMipsGNUInfo.cpp55 uint64_t MipsGNUInfo::abiPageSize() const { in abiPageSize() function in mcld::MipsGNUInfo
/frameworks/compile/mclinker/lib/Script/
DNullaryOp.cpp32 res->setValue(pBackend.abiPageSize()); in eval()
/frameworks/compile/mclinker/include/mcld/Target/
DGNUInfo.h61 virtual uint64_t abiPageSize() const { return 0x1000; } in abiPageSize() function
DTargetLDBackend.h174 virtual uint64_t abiPageSize() const = 0;
DGNULDBackend.h182 uint64_t abiPageSize() const;
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp1801 load_seg->setAlign(abiPageSize()); in createProgramHdrs()
2183 vma += abiPageSize(); in setOutputSectionAddress()
2201 alignAddress(vma, abiPageSize()); in setOutputSectionAddress()
2240 (vma & (abiPageSize() - 1)) != (offset & (abiPageSize() - 1))) { in setOutputSectionAddress()
2241 uint64_t padding = abiPageSize() + (vma & (abiPageSize() - 1)) - in setOutputSectionAddress()
2242 (offset & (abiPageSize() - 1)); in setOutputSectionAddress()
2685 return std::min(config().options().commPageSize(), abiPageSize()); in commonPageSize()
2687 return std::min(m_pInfo->commonPageSize(), abiPageSize()); in commonPageSize()
2691 uint64_t GNULDBackend::abiPageSize() const { in abiPageSize() function in mcld::GNULDBackend
2695 return m_pInfo->abiPageSize(); in abiPageSize()