Home
last modified time | relevance | path

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

/external/elfutils/src/libdwfl/
Ddwfl_module_return_value_location.c51 int nops = ebl_return_value_location (mod->ebl, functypedie, locops); local
52 if (unlikely (nops < 0))
54 if (nops == -1)
56 else if (nops == -2)
60 nops = -1;
63 return nops;
Dframe_unwind.c109 size_t nops, Dwarf_Addr *result, Dwarf_Addr bias) in expr_eval() argument
112 if (nops == 0) in expr_eval()
158 for (const Dwarf_Op *op = ops; op < ops + nops; op++) in expr_eval()
437 const Dwarf_Op *found = bsearch ((void *) (uintptr_t) offset, ops, nops, in expr_eval()
/external/elfutils/src/libdw/
Ddwarf_frame_register.c37 dwarf_frame_register (fs, regno, ops_mem, ops, nops) in dwarf_frame_register() argument
42 size_t *nops;
55 *nops = 0;
82 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_call_frame_cfa };
84 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_plus_uconst,
88 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_stack_value };
93 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_regx,
116 ops, nops, IDX_debug_frame) < 0)
Ddwarf_frame_cfa.c38 dwarf_frame_cfa (fs, ops, nops) in dwarf_frame_cfa() argument
41 size_t *nops;
52 *nops = 0;
58 *nops = 1;
67 ops, nops, IDX_debug_frame);
Dlibdw.h963 extern int dwarf_frame_cfa (Dwarf_Frame *frame, Dwarf_Op **ops, size_t *nops)
986 Dwarf_Op **ops, size_t *nops)
/external/elfutils/src/tests/
Daddrcfi.c51 print_detail (int result, const Dwarf_Op *ops, size_t nops, Dwarf_Addr bias) in print_detail() argument
55 else if (nops == 0) in print_detail()
60 for (size_t i = 0; i < nops; ++i) in print_detail()
99 size_t nops; in print_register() local
100 int result = dwarf_frame_register (stuff->frame, regno, ops_mem, &ops, &nops); in print_register()
101 print_detail (result, ops, nops, stuff->bias); in print_register()
/external/llvm/test/CodeGen/AArch64/
Darm64-stackmap-nops.ll5 ; Expect 8 bytes worth of nops here rather than 16: With the shadow optimization
/external/linux-tools-perf/src/tools/perf/util/
Dprobe-finder.c268 size_t nops; in convert_variable_location() local
280 dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0 || in convert_variable_location()
281 nops == 0) { in convert_variable_location()
717 size_t nops; in call_probe_finder() local
737 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1); in call_probe_finder()
738 if (ret <= 0 || nops == 0) { in call_probe_finder()
741 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa && in call_probe_finder()
745 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) { in call_probe_finder()
/external/llvm/test/CodeGen/PowerPC/
Dppc64-stackmap-nops.ll5 ; Expect 12 bytes worth of nops here rather than 32: With the shadow optimization
/external/javassist/src/main/javassist/bytecode/
DCodeIterator.java1485 int nops = gap - padding; in write() local
1487 adjustOffsets(bytecodeSize, nops); in write()
1495 while (nops-- > 0) in write()
1513 void adjustOffsets(int size, int nops) { in adjustOffsets() argument
1515 defaultByte -= nops; in adjustOffsets()
1519 offsets[i] -= nops; in adjustOffsets()
/external/llvm/test/MC/X86/AlignedBundling/
Dlong-nop-pad.s6 # Test that long nops are generated for padding where possible.
/external/llvm/test/MC/X86/
Dstackmap-nops.ll46 ; padded with nops.
/external/elfutils/include/elfutils/
Dlibdw.h963 extern int dwarf_frame_cfa (Dwarf_Frame *frame, Dwarf_Op **ops, size_t *nops)
986 Dwarf_Op **ops, size_t *nops)
/external/llvm/test/MC/MachO/
Dx86_32-optimal_nop.s153 # Only the .text sections gets optimal nops.
/external/llvm/docs/
DStackMaps.rst124 The stack map intrinsic generates no code in place, unless nops are
247 The patch point also emits nops to cover at least ``<numBytes>`` of
255 the call sequence and nops. However, the runtime may not assume
258 padding with nops if necessary.
/external/llvm/test/MC/Mips/
Dnacl-mask.s198 # check that 2 additional nops are inserted, to align it to the next bundle.
/external/llvm/test/CodeGen/X86/
Dstackmap-nops.ll229 ; padded with nops.
/external/libvpx/libvpx/third_party/libyuv/source/
Dx86inc.asm96 ; Always use long nops (reduces 0x90 spam in disassembly on x86_32)
/external/llvm/lib/Target/X86/
DX86Schedule.td130 // Nop, not very useful expect it provides a model for nops!
/external/flac/libFLAC/ia32/
Dlpc_asm.nasm658 ALIGN 16 ;4 nops
669 ALIGN 16 ;3 nops
/external/robolectric/lib/main/
Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/ ...
/external/llvm/lib/Target/PowerPC/
DPPCInstrInfo.td1892 // The POWER6 and POWER7 have special group-terminating nops.