Searched refs:PageBytes (Results 26 - 39 of 39) sorted by relevance

12

/gem5/src/dev/arm/
H A Dgeneric_timer.cc527 ctrlRange(RangeSize(p->base, TheISA::PageBytes)),
528 timerRange(RangeSize(p->base + TheISA::PageBytes, TheISA::PageBytes)),
/gem5/src/arch/arm/
H A Dutility.cc452 return addr & ~(PageBytes - 1);
458 return (addr + PageBytes - 1) & ~(PageBytes - 1);
H A Dpagetable.hh152 pfn(_paddr >> PageShift), size(PageBytes - 1), vpn(_vaddr >> PageShift),
H A Dremote_gdb.cc185 for (ChunkGenerator gen(va, len, PageBytes); !gen.done(); gen.next()) {
/gem5/src/gpu-compute/
H A Dgpu_tlb.cc95 * TheISA::PageBytes), then there are various issues w/ the current
889 Addr baseAddr = localApicBase.base * PageBytes;
892 if (baseAddr <= paddr && baseAddr + PageBytes > paddr) {
1039 TheISA::PageBytes);
1438 Addr virt_page_addr = roundDown(vaddr, TheISA::PageBytes);
1489 TheISA::PageBytes);
1618 TheISA::PageBytes);
H A Dshader.cc82 length = roundUp(length, TheISA::PageBytes);
H A Dcompute_unit.cc1153 int stride = last ? (roundDown(vaddr, TheISA::PageBytes) -
1154 roundDown(last, TheISA::PageBytes)) >> TheISA::PageShift
1174 vaddr+stride*pf*TheISA::PageBytes);
1180 0, vaddr + stride * pf * TheISA::PageBytes,
1704 Addr virt_page_addr = roundDown(addr, TheISA::PageBytes);
/gem5/src/arch/x86/
H A Dtlb.cc243 AddrRange apicRange(localApicBase.base * PageBytes,
244 (localApicBase.base + 1) * PageBytes - 1);
H A Dinterrupts.cc355 ranges.push_back(RangeSize(pioAddr, PageBytes));
/gem5/src/dev/storage/
H A Dide_disk.cc446 curPrd.getByteCount(), TheISA::PageBytes);
458 if (dmaReadCG->size() == TheISA::PageBytes)
529 curPrd.getByteCount(), TheISA::PageBytes);
543 if (dmaWriteCG->size() == TheISA::PageBytes)
/gem5/src/sim/
H A Dsystem.hh293 Addr getPageBytes() const { return TheISA::PageBytes; }
H A Dsyscall_emul.cc237 return (int)PageBytes;
261 PageBytes); !gen.done(); gen.next()) {
263 p->allocateMem(roundDown(gen.addr(), PageBytes), PageBytes); local
271 Addr next_page = roundUp(gen.addr(), PageBytes);
274 if (gen.addr() + PageBytes > next_page &&
277 size_needed = PageBytes - size_needed;
H A Dsyscall_emul.hh1173 if ((start % TheISA::PageBytes != 0) ||
1174 (provided_address % TheISA::PageBytes != 0)) {
1179 new_length = roundUp(new_length, TheISA::PageBytes);
1750 offset *= TheISA::PageBytes;
1752 if (start & (TheISA::PageBytes - 1) ||
1753 offset & (TheISA::PageBytes - 1) ||
1788 length = roundUp(length, TheISA::PageBytes);
/gem5/src/arch/arm/linux/
H A Dprocess.cc1731 allocateMem(commPage, PageBytes);
1739 for (Addr addr = 0; addr < PageBytes; addr += sizeof(swiNeg1)) {

Completed in 60 milliseconds

12