Home
last modified time | relevance | path

Searched refs:nops (Results 1 – 22 of 22) sorted by relevance

/Linux-v4.19/tools/perf/arch/powerpc/util/
Dskip-callchain-idx.c51 size_t nops; in check_return_reg() local
54 result = dwarf_frame_register(frame, ra_regno, ops_mem, &ops, &nops); in check_return_reg()
65 if ((nops != 0 || ops != NULL) && in check_return_reg()
66 !(nops == 1 && ops[0].atom == DW_OP_regx && in check_return_reg()
74 result = dwarf_frame_cfa(frame, &ops, &nops); in check_return_reg()
84 if (nops == 1 && ops[0].atom == DW_OP_bregx && ops[0].number == 1 && in check_return_reg()
/Linux-v4.19/arch/riscv/kernel/
Dftrace.c17 unsigned int nops[2] = {NOP4, NOP4}; in ftrace_check_current_call() local
21 expected = nops; in ftrace_check_current_call()
48 unsigned int nops[2] = {NOP4, NOP4}; in __ftrace_modify_call() local
54 ret = probe_kernel_write((void *)hook_pos, enable ? call : nops, in __ftrace_modify_call()
/Linux-v4.19/tools/build/feature/
Dtest-dwarf_getlocations.c10 size_t nops; in main() local
12 return (int)dwarf_getlocations(&attr, offset, &base, &start, &end, &op, &nops); in main()
/Linux-v4.19/arch/s390/kernel/
Dalternative.c30 static const void *nops[] __initdata_or_module = { variable
59 memcpy(insns, nops[len / 2 - 1], len); in add_padding()
Dentry.S277 # interrupts. So lets use 3 nops as a landing pad for all possible rewinds.
/Linux-v4.19/arch/arm64/include/asm/
Darch_gicv3.h71 nops(8); in gic_read_iar_cavium_thunderx()
73 nops(4); in gic_read_iar_cavium_thunderx()
Dbarrier.h24 #define nops(n) asm volatile(__nops(n)) macro
Dalternative.h205 nops (662b-661b) / AARCH64_INSN_SIZE
Dassembler.h139 .macro nops, num
/Linux-v4.19/fs/nfs/
Dcallback_xdr.c172 hdr->nops = ntohl(*p); in decode_compound_hdr_arg()
675 hdr->nops = xdr_reserve_space(xdr, 4); in encode_compound_hdr_res()
676 if (unlikely(hdr->nops == NULL)) in encode_compound_hdr_res()
944 unsigned int nops = 0; in nfs4_callback_compound() local
972 while (status == 0 && nops != hdr_arg.nops) { in nfs4_callback_compound()
973 status = process_op(nops, rqstp, &xdr_in, in nfs4_callback_compound()
976 nops++; in nfs4_callback_compound()
983 nops--; in nfs4_callback_compound()
987 *hdr_res.nops = htonl(nops); in nfs4_callback_compound()
Dcallback.h55 unsigned nops; member
62 __be32 *nops; member
Dnfs4xdr.c940 uint32_t nops; member
1030 *p = cpu_to_be32(hdr->nops); in encode_compound_hdr()
1038 hdr->nops++; in encode_op_hdr()
1044 WARN_ON_ONCE(hdr->nops > NFS4_MAX_OPS); in encode_nops()
1045 *hdr->nops_p = htonl(hdr->nops); in encode_nops()
2359 .nops = 0, in nfs4_xdr_enc_open_confirm()
2723 .nops = 0, in nfs4_xdr_enc_renew()
2740 .nops = 0, in nfs4_xdr_enc_setclientid()
2757 .nops = 0, in nfs4_xdr_enc_setclientid_confirm()
3182 hdr->nops = be32_to_cpup(p); in decode_compound_hdr()
[all …]
/Linux-v4.19/fs/nfsd/
Dnfs4callback.c55 u32 nops; member
270 *p = cpu_to_be32(hdr->nops); /* argarray element count */ in encode_cb_compound4args()
278 BUG_ON(hdr->nops > NFS4_MAX_BACK_CHANNEL_OPS); in encode_cb_nops()
279 *hdr->nops_p = cpu_to_be32(hdr->nops); in encode_cb_nops()
307 hdr->nops = be32_to_cpup(p); in decode_cb_compound4res()
337 hdr->nops++; in encode_cb_recall4args()
372 hdr->nops++; in encode_cb_sequence4args()
585 hdr->nops++; in encode_cb_layout4args()
660 hdr.nops++; in nfs4_xdr_enc_cb_notify_lock()
/Linux-v4.19/include/linux/mtd/
Dspinand.h214 unsigned int nops; member
220 .nops = sizeof((struct spi_mem_op[]){ __VA_ARGS__ }) / \
/Linux-v4.19/tools/perf/util/
Dprobe-finder.c183 size_t nops; in convert_variable_location() local
196 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) { in convert_variable_location()
218 &nops, 1) > 0) in convert_variable_location()
224 if (nops == 0) in convert_variable_location()
673 size_t nops; in call_probe_finder() local
699 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1); in call_probe_finder()
700 if (ret <= 0 || nops == 0) { in call_probe_finder()
703 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa && in call_probe_finder()
707 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) { in call_probe_finder()
Ddwarf-aux.c1062 size_t nops; in die_get_var_range() local
1080 &start, &end, &op, &nops)) > 0) { in die_get_var_range()
/Linux-v4.19/arch/powerpc/kernel/
Dentry_64.S519 .macro nops number macro
535 nops 6
548 nops 3
553 nops 7
/Linux-v4.19/drivers/mtd/nand/spi/
Dcore.c812 for (i = 0; i < variants->nops; i++) { in spinand_select_op_variant()
/Linux-v4.19/tools/objtool/Documentation/
Dstack-validation.txt73 replacing the frame pointer related instructions with nops, here's
/Linux-v4.19/Documentation/trace/
Dftrace-design.rst419 ftrace_graph_call location with nops
Dftrace.rst291 have been converted to nops and are available to be traced.
2560 scans this table and updates all the locations into nops. It
2572 if the modified code crosses cache (or page) boundaries), and the nops are
2590 as nops.
/Linux-v4.19/Documentation/
DDMA-API.txt529 guarantee that the sync points become nops.