Home
last modified time | relevance | path

Searched refs:rwx (Results 1 – 5 of 5) sorted by relevance

/qemu/tests/tcg/s390x/
H A Dmvc-smc.c14 static unsigned char rwx[RWX_OFFSET + sizeof(rw)] variable
67 size = sizeof(rwx) - RWX_OFFSET - 4; in main()
68 expected = emit_function(rwx + RWX_OFFSET, size); in main()
69 if (((function_t)(rwx + RWX_OFFSET))(0) != expected) { in main()
76 memcpy_mvc(rwx + RWX_OFFSET, rw, size); in main()
77 if (((function_t)(rwx + RWX_OFFSET))(0) != expected) { in main()
/qemu/linux-user/loongarch64/
H A DMakefile.vdso11 -Wl,--no-warn-rwx-segments -Wl,-z,max-page-size=4096 \
/qemu/tests/tcg/loongarch64/
H A DMakefile.softmmu-target19 LDFLAGS+=-static -nostdlib $(CRT_OBJS) $(MINILIB_OBJS) -lgcc -Wl,--no-warn-rwx-segments
/qemu/target/riscv/
H A Ddebug.c434 bool rwx = !!(ctrl & (TYPE2_LOAD | TYPE2_STORE | TYPE2_EXEC)); in type2_breakpoint_enabled() local
436 return mode && rwx; in type2_breakpoint_enabled()
562 bool rwx = !!(ctrl & (TYPE6_LOAD | TYPE6_STORE | TYPE6_EXEC)); in type6_breakpoint_enabled() local
564 return mode && rwx; in type6_breakpoint_enabled()
H A Dcpu_helper.c1447 target_ulong rwx = pte & (PTE_R | PTE_W | PTE_X); in get_physical_address() local
1449 switch (rwx) { in get_physical_address()
1460 rwx = is_sstack_idx ? (PTE_R | PTE_W) : (is_probe ? 0 : PTE_R); in get_physical_address()
1477 if (rwx & PTE_R) { in get_physical_address()
1480 if (rwx & PTE_W) { in get_physical_address()
1483 if (rwx & PTE_X) { in get_physical_address()