Home | History | Annotate | Download | only in qemu

Lines Matching refs:DATA_SIZE

21 #define DATA_SIZE (1 << SHIFT)
23 #if DATA_SIZE == 8
27 #elif DATA_SIZE == 4
31 #elif DATA_SIZE == 2
35 #elif DATA_SIZE == 1
119 if ((addr & (DATA_SIZE - 1)) != 0)
124 } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
130 memcheck_validate_ld(addr, DATA_SIZE, (target_ulong)(ptrdiff_t)GETPC())) {
149 invalidate_cache = memcheck_validate_ld(addr, DATA_SIZE,
155 if ((addr & (DATA_SIZE - 1)) != 0) {
181 if ((addr & (DATA_SIZE - 1)) != 0)
207 if ((addr & (DATA_SIZE - 1)) != 0)
211 } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
214 addr1 = addr & ~(DATA_SIZE - 1);
215 addr2 = addr1 + DATA_SIZE;
220 shift = (addr & (DATA_SIZE - 1)) * 8;
222 res = (res1 << shift) | (res2 >> ((DATA_SIZE * 8) - shift));
224 res = (res1 >> shift) | (res2 << ((DATA_SIZE * 8) - shift));
294 if ((addr & (DATA_SIZE - 1)) != 0)
299 } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
305 memcheck_validate_st(addr, DATA_SIZE, (uint64_t)val,
324 invalidate_cache = memcheck_validate_st(addr, DATA_SIZE,
331 if ((addr & (DATA_SIZE - 1)) != 0) {
357 if ((addr & (DATA_SIZE - 1)) != 0)
382 if ((addr & (DATA_SIZE - 1)) != 0)
386 } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
391 for(i = DATA_SIZE - 1; i >= 0; i--) {
393 glue(slow_stb, MMUSUFFIX)(addr + i, val >> (((DATA_SIZE - 1) * 8) - (i * 8)),
419 #undef DATA_SIZE