Home
last modified time | relevance | path

Searched refs:kPageMask (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/mips/
Dsimulator-mips.cc843 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0); in ICacheMatch()
844 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0); in ICacheMatch()
855 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage()
856 intptr_t end_page = ((start + size) & ~CachePage::kPageMask); in AllOnOnePage()
875 int offset = (start & CachePage::kPageMask); in FlushICache()
881 DCHECK_EQ(0, start & CachePage::kPageMask); in FlushICache()
910 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask)); in FlushOnePage()
911 int offset = (start & CachePage::kPageMask); in FlushOnePage()
921 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask)); in CheckICache()
923 int offset = (address & CachePage::kPageMask); in CheckICache()
Dsimulator-mips.h89 static const int kPageMask = kPageSize - 1; variable
/external/v8/src/mips64/
Dsimulator-mips64.cc773 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0); in ICacheMatch()
774 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0); in ICacheMatch()
785 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage()
786 intptr_t end_page = ((start + size) & ~CachePage::kPageMask); in AllOnOnePage()
805 int offset = (start & CachePage::kPageMask); in FlushICache()
811 DCHECK_EQ((uint64_t)0, start & CachePage::kPageMask); in FlushICache()
840 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask)); in FlushOnePage()
841 int offset = (start & CachePage::kPageMask); in FlushOnePage()
851 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask)); in CheckICache()
853 int offset = (address & CachePage::kPageMask); in CheckICache()
Dsimulator-mips64.h118 static const int kPageMask = kPageSize - 1; variable
/external/v8/src/arm/
Dsimulator-arm.cc611 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0); in ICacheMatch()
612 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0); in ICacheMatch()
623 intptr_t start_page = (start & ~CachePage::kPageMask); in AllOnOnePage()
624 intptr_t end_page = ((start + size) & ~CachePage::kPageMask); in AllOnOnePage()
643 int offset = (start & CachePage::kPageMask); in FlushICache()
649 DCHECK_EQ(0, start & CachePage::kPageMask); in FlushICache()
678 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask)); in FlushOnePage()
679 int offset = (start & CachePage::kPageMask); in FlushOnePage()
689 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask)); in CheckICache()
691 int offset = (address & CachePage::kPageMask); in CheckICache()
Dsimulator-arm.h77 static const int kPageMask = kPageSize - 1; variable