Home
last modified time | relevance | path

Searched full:dtrace (Results 1 – 22 of 22) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/systemtap/
H A D0001-Do-not-let-configure-write-a-python-location-into-th.patch4 Subject: [PATCH] Do not let configure write a python location into the dtrace
10 dtrace.in | 2 +-
13 diff --git a/dtrace.in b/dtrace.in
15 --- a/dtrace.in
16 +++ b/dtrace.in
/openbmc/qemu/trace/
H A Dmeson.build37 if 'dtrace' in get_option('trace_backends')
38 trace_dtrace = custom_target(fmt.format('trace-dtrace', 'dtrace'),
39 output: fmt.format('trace-dtrace', 'dtrace'),
43 trace_dtrace_h = custom_target(fmt.format('trace-dtrace', 'h'),
44 output: fmt.format('trace-dtrace', 'h'),
46 … command: [ dtrace, '-DSTAP_SDT_V2', '-o', '@OUTPUT@', '-h', '-s', '@INPUT@' ])
49 trace_dtrace_o = custom_target(fmt.format('trace-dtrace', 'o'),
50 output: fmt.format('trace-dtrace', 'o'),
52 … command: [ dtrace, '-DSTAP_SDT_V2', '-o', '@OUTPUT@', '-G', '-s', '@INPUT@' ])
H A Dcontrol.c151 "when using the DTrace/SystemTap backends.\n" in trace_list_events()
/openbmc/qemu/scripts/tracetool/format/
H A Dd.py4 trace/generated-tracers.dtrace (DTrace only).
20 # https://wikis.oracle.com/display/DTrace/Types,+Operators+and+Expressions
36 # SystemTap's dtrace(1) warns about empty "provider qemu {}" but is happy
38 # But dtrace on macOS can't deal with empty files.
50 # macOS dtrace accepts only C99 _Bool
61 # SystemTap dtrace(1) emits a warning when long long is used
H A Dstap.py4 Generate .stp file (DTrace with SystemTAP only).
16 from tracetool.backend.dtrace import binary, probeprefix
H A Dsimpletrace_stap.py4 Generate .stp file that outputs simpletrace binary traces (DTrace with SystemTAP only).
16 from tracetool.backend.dtrace import probeprefix
H A Dlog_stap.py4 Generate .stp file that printfs log messages (DTrace with SystemTAP only).
17 from tracetool.backend.dtrace import binary, probeprefix
/openbmc/qemu/scripts/tracetool/backend/
H A Ddtrace.py4 DTrace/SystemTAP backend.
39 header = "trace-dtrace-root.h"
41 header = "trace-dtrace-%s.h" % group
44 # require SDT_USE_VARIADIC to be defined. If dtrace includes <sys/sdt.h>
56 # SystemTap defines <provider>_<name>_ENABLED() but other DTrace
/openbmc/qemu/docs/devel/
H A Dtracing.rst60 - trace-dtrace-<subdir>.h - DTrace event probe specification
61 - trace-dtrace-<subdir>.dtrace - DTrace event probe helper declaration
62 - trace-dtrace-<subdir>.o - binary DTrace provider (generated by dtrace)
216 ./configure --enable-trace-backends=simple,dtrace
352 The "dtrace" backend uses DTrace sdt probes but has only been tested with
358 scripts/tracetool.py --backends=dtrace --format=stap \
/openbmc/qemu/scripts/tracetool/
H A D__init__.py427 See tracetool.backend.dtrace.BINARY.
429 See tracetool.backend.dtrace.PROBEPREFIX.
447 import tracetool.backend.dtrace
448 tracetool.backend.dtrace.BINARY = binary
449 tracetool.backend.dtrace.PROBEPREFIX = probe_prefix
/openbmc/qemu/tests/lcitool/projects/
H A Dqemu.yml22 - dtrace
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/tigervnc/
H A Dtigervnc_1.15.0.bb55 --without-dtrace \
/openbmc/qemu/scripts/
H A Dtracetool.py49 --probe-prefix <prefix> Prefix for dtrace probe names (required for 'stap' backend).
H A Dmeson-buildoptions.sh56 printf "%s\n" ' dtrace/ftrace/log/nop/simple/syslog/ust)'
/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/
H A Dsystemtap_git.bb66 ${bindir}/dtrace \
/openbmc/qemu/bsd-user/arm/
H A Dtarget_arch_cpu.h62 * and special kernel breakpoints, trace points, dtrace, etc. in target_cpu_loop()
/openbmc/openbmc/poky/meta/recipes-devtools/ruby/
H A Druby_3.4.3.bb66 --disable-dtrace \
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pcp/
H A Dpcp_6.3.7.bb4 …ke-qt4 xconfirm true gmake xz dblatex hdiutil rpm bzip2 which mkinstallp dtrace seinfo qmake-qt5 g…
/openbmc/qemu/
H A Dmeson_options.txt282 choices: ['dtrace', 'ftrace', 'log', 'nop', 'simple', 'syslog', 'ust'],
H A Dmeson.build151 dtrace = not_found variable
153 if 'dtrace' in get_option('trace_backends')
154 dtrace = find_program('dtrace', required: true) variable
157 # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol
3576 'scripts/tracetool/backend/dtrace.py',
/openbmc/qemu/.gitlab-ci.d/
H A Dbuildtest.yml174 --enable-modules --enable-trace-backends=dtrace --enable-docs
/openbmc/openbmc/poky/documentation/profile-manual/
H A Dusage.rst739 system. This is exactly analogous to what Sun's DTrace did, except
740 that DTrace invented its own language for the purpose. SystemTap,
741 heavily inspired by DTrace, also created its own one-off language,