summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2005-07-26 Frank Ch. Eigler <fche@redhat.com>fche2005-07-2622-134/+384
| | | | | | | | | | | | | | | | | | | | | Support %{ embedded-c %} * staptree.h (embeddedcode): New statement subtype. Stub support in visitors. * staptree.cxx: Ditto. * parse.cxx: Parse %{ / %}. Accept "_" as identifier leading char. (parse_probe): Simplify calling convention. * elaborate.h: Store embedded code. * elaborate.cxx: Pass it. * translate.cxx: Transcribe it. Return some dropped module init/exit code. * Makefile.am: Add buildok/buildko tests. * Makefile.in: Regenerated. * main.cxx: Return EXIT_SUCCESS/FAILURE even for weird rc. * testsuite/parseok/nine.stp: Test _identifiers. * testsuite/transko/*.stp: Tweak to force -p3 rather than -p2 errors. * testsuite/semok/transko.stp: ... and keep it that way in the future. * testsuite/parse*/*: Some new tests for %{ %}. * testsuite/build*/*: New tests for -p4.
* 2005-07-26 Martin Hunt <hunt@redhat.com>hunt2005-07-263-4/+5
| | | | * Makefile.am (AM_CPPFLAGS): Set PKGLIBDIR correctly.
* 2005-07-26 Martin Hunt <hunt@redhat.com>hunt2005-07-265-131/+345
| | | | | | | | * systemtap.spec.in: Stpd goes in libexec/systemtap. * Makefile.am (libexecdir): Set to libexecdir/systemtap. * aclocal.m4, Makefile.in: Regenerated
* Clean up spec file, fix build of bundled elfutils.roland2005-07-251-29/+57
|
* 2005-07-25 Roland McGrath <roland@redhat.com>roland2005-07-257-417/+178
| | | | | | | | | * configure.ac: Don't define PKGLIBDIR and PKGDATADIR here. * Makefile.am (AM_CPPFLAGS): New variable, use -D here instead. (dist-hook): Don't remove ChangeLog files. (install-data-local): Don't install docs, just runtime stuff. (rpm, clean-local): Use make variables instead of @substitution@s. * configure, config.in, aclocal.m4, Makefile.in: Regenerated
* 2005-07-22 Graydon Hoare <graydon@redhat.com>graydon2005-07-238-19/+438
| | | | | | | | | | | | | | | * translate.cxx (itervar): New class. (*::visit_foreach_loop): Implement. Various bug fixes. * staptree.cxx (deep_copy_visitor::*): Copy tok fields. * elaborate.cxx (lvalue_aware_traversing_visitor): (mutated_map_collector): (no_map_mutation_during_iteration_check): New classes. (semantic_pass_maps): New function to check map usage. (semantic_pass): Call it. * testsuite/transok/eight.stp: Test 'foreach' loop translation. * testsuite/semko/{thirteen,fourteen,fifteen}.stp: Test prohibited forms of foreach loops.
* Produce some statistics regarding the time (cpu cycles) in the interrupt handlercspiraki2005-07-221-7/+11
|
* New file.hunt2005-07-211-0/+103
|
* 2005-07-21 Martin Hunt <hunt@redhat.com>hunt2005-07-215-56/+95
| | | | | | | | | | | | * Makefile.am (EXTRA_DIST): Add systemtap.spec. (install-data-local): Install docs and probes. (docs): New target. (rpm): New target. * configure.ac: Set initial version to 0.1.1. (pkglibdir): Set to libexec. * Makefile.in: Regenerated.
* Set HAVE_DOT to NO.hunt2005-07-211-1/+1
|
* Allow clean compile on x86_64 and change output to include process namecspiraki2005-07-211-7/+12
|
* 2005-07-20 Graydon Hoare <graydon@redhat.com>graydon2005-07-208-507/+920
| | | | | | | | | * elaborate.{cxx,h} (find_array): Remove. (find_scalar): Rename to find_var, add array support. * staptree.{cxx,h} (vardecl::compatible_arity): New method. * translate.cxx: Refactor, add array read/write support. * testsuite/transok/three.stp: Uncomment array uses. * testsuite/transok/seven.stp: New test of array r/w.
* 2005-07-20 Frank Ch. Eigler <fche@redhat.com>fche2005-07-203-54/+169
| | | | | | | * tapsets.cxx (*::emit_[de]registrations): Add logic for probe lifecycle control (session_state). * translate.cxx (emit_common_header,emit_module_{init,exit}): Ditto. (visit_*): Use per-context errorcount.
* 2005-07-20 Martin Hunt <hunt@redhat.com>hunt2005-07-202-4/+7
| | | | | * io.c (_stp_vlog): Don't count transport failures for these messages.
* 2005-07-19 Martin Hunt <hunt@redhat.com>hunt2005-07-202-2/+10
| | | | | * print.c (_stp_print_flush): Check return value and increment transport failures.
* nonefche2005-07-192-2/+2
|
* 2005-07-19 Frank Ch. Eigler <fche@redhat.com>fche2005-07-193-4/+12
| | | | | * Makefile.am (dist-hook): Complete the resulting tarball. * Makefile.in: Regenerated.
* 2005-07-19 Frank Ch. Eigler <fche@redhat.com>fche2005-07-192-25/+12
| | | | | * translate.cxx (emit_module_init/exit, translate_pass): Conform to newer runtime startup/shutdown hooks.
* 2005-07-18 Martin Hunt <hunt@redhat.com>hunt2005-07-193-3/+47
| | | | | | | | | * transport.h (_stp_transport_write): Call _stp_relay_write(). * transport.c (_stp_cleanup_and_exit): Print transport failure count. (_stp_relay_write): Like relay_write() except returns -1 on error.
* 2005-07-18 Martin Hunt <hunt@redhat.com>hunt2005-07-192-2/+6
| | | | * stp_merge.c (main): Fix dropped count calculation.
* 2005-07-15 Frank Ch. Eigler <fche@redhat.com>fche2005-07-155-2/+20
| | | | | | * Makefile.am (install-data-local): Correct typo. * buildrun.cxx (compile_pass): Ditto. * main.cxx (main): Print errors if passes 4 or 5 fail.
* 2005-07-14 Frank Ch. Eigler <fche@redhat.com>fche2005-07-143-25/+87
| | | | | | | * buildrun.cxx (compile_pass, run_pass): Get closer to a working test_mode. * translate.cxx (emit_module_init, emit_common_header): Ditto. (translate_pass): Ditto.
* 2005-07-14 Frank Ch. Eigler <fche@redhat.com>fche2005-07-142-3/+7
| | | | * alloc.c (_stp_error): Rename, to avoid name collision with ../io.c.
* *** empty log message ***trz2005-07-142-0/+9
|
* fix unmatched mutex unlocktrz2005-07-141-0/+1
|
* add forgotten initializationtrz2005-07-141-0/+2
|
* nonefche2005-07-141-9/+99
|
* 2005-07-14 Frank Ch. Eigler <fche@redhat.com>fche2005-07-149-73/+86
| | | | | | | | | * Makefile.am (stpd): Install in $pkglibdir. (runtime): Copy to $pkgdatadir. * configure.ac: Pass along pkgdatadir and pkglibdir. * main.cxx: Default runtime_path from pkgdatadir. * buildrun.cxx (run_pass): Correct stpd directory. * Makefile.in, configure, config.in: Regenerated.
* 2005-07-14 Frank Ch. Eigler <fche@redhat.com>fche2005-07-142-1/+5
| | | | * builtin_functions.h (printk): Use explicit format string.
* 2005-07-14 Frank Ch. Eigler <fche@redhat.com>fche2005-07-143-3/+9
| | | | | * stpd.c (main): Pass !quiet mode to init_stp(). * librelay.c (init_relayfs): Be quiet if !print_totals.
* 2005-07-13 Martin Hunt <hunt@redhat.com>hunt2005-07-132-1/+3
| | | | * stpd.c (usage): Fix usage string.
* 2005-07-13 Martin Hunt <hunt@redhat.com>hunt2005-07-132-1/+5
| | | | * librelay.c (init_stp): Change last arg to NULL, not 0.
* 2005-07-12 Martin Hunt <hunt@redhat.com>hunt2005-07-135-81/+95
| | | | | | | | | | | | * bench/run_bench (do_time): Use ttest instead of "time". Fix processor computation. * bench/ttest.c: Like "time.c" except takes an argument to adjust loop size. Also computes system time + user time instead of real time. Added a warmup loop to get consistent results from cpus which adjust speed based on load. * bench/time.c: Replaced by ttest.c
* 2005-07-12 Graydon Hoare <graydon@redhat.com>graydon2005-07-138-21/+233
| | | | | | | | | | | | | | | | | * elaborate.cxx (semantic_pass_symbols): Only enter body if non-null. (semantic_pass_types): Likewise. (semantic_pass): Pass session to register_standard_tapsets. * translate.cxx (builtin_collector): New struct. (hookup_builtins): New function. (translate_pass): Only translate functions with bodies. (c_unparser::emit_common_header): Likewise, and call hookup_builtins. * tapsets.hh (builtin_function): New class. (register_standard_tapsets): Change parameter to session. * tapsets.cc (bultin_function::*): Implement class. (register_standard_tapsets): Register printk, log, warn. * testsuite/transok/six.stp: New test.
* nonefche2005-07-121-1/+1
|
* 2005-07-12 Frank Ch. Eigler <fche@redhat.com>fche2005-07-129-30/+177
| | | | | | | | | * buildrun.cxx (compile_pass): Make non-verbose mode quieter. (run_pass): Spawn stpd for dirty work. * Makefile.am: Also build stpd into libexecdir. * configure.ac: Pass LIBEXECDIR. * Makefile.in, configure, config.in: Regenerated. * AUTHORS: Update.
* Fix relayfs.hunt2005-07-121-3/+7
|
* 2005-07-11 Martin Hunt <hunt@redhat.com>hunt2005-07-1212-292/+78
| | | | | | | | | | * build_probe: Set RELAYFS correctly. * Makefile.template: Fix for RELAYFS. * stp: Moved here. All probes now use this copy. * ALL/stp: source the master copy of stp.
* 2005-07-11 Graydon Hoare <graydon@redhat.com>graydon2005-07-112-8/+13
| | | | | * staptree.cxx (require): Generally handle null pointers in src. (deep_copy_visitor::visit_if_statement): Revert fche's change.
* 2005-07-11 Frank Ch. Eigler <fche@redhat.com>fche2005-07-113-2/+11
| | | | | | * parse.cxx (parse_literal): Compile cleanly on 64-bit host. * staptree.cxx (deep_copy_visitor::visit_if_statement): Don't freak on a null if_statement.elseblock.
* 2005-07-10 Martin Hunt <hunt@redhat.com>hunt2005-07-112-0/+6
| | | | * runtime.h (init_module): Fix return value.
* Fix buildhunt2005-07-081-16/+2
|
* Update docshunt2005-07-081-0/+1
|
* *** empty log message ***hunt2005-07-081-1/+1
|
* Update.hunt2005-07-081-14/+7
|
* 2005-07-08 Martin Hunt <hunt@redhat.com>hunt2005-07-082-0/+26
| | | | | * runtime.h: Move some common pieces of modules into this file. Includes MODULE_LICENSE, cleanup_module and init_module.
* 2005-07-08 Martin Hunt <hunt@redhat.com>hunt2005-07-0814-189/+39
| | | | | | * ALL: Use new runtime.h. Change init_module() to probe_start() and don't do transport calls. Remove MODULE_LICENSE and cleanup_module().
* Fix accidently commented-out line.hunt2005-07-081-1/+1
|
* 2005-07-08 Martin Hunt <hunt@redhat.com>hunt2005-07-081-8/+20
| | | | | | * shellsnoop/shellsnoop.c (init_module): Call _stp_transport_close() if initialization fails. (cleanup_module): Call _stp_transport_cleanup().
* 2005-07-08 Martin Hunt <hunt@redhat.com>hunt2005-07-083-62/+88
| | | | | | | | | | | | | | | | | | * transport.c: Rename pid to _stp_pid. Rename t to _stp_tport. (_stp_cleanup_and_exit): New internal function. (stp_exit_helper): Call _stp_cleanup_and_exit(). (_stp_transport_cleanup): New function. (_stp_cmd_handler): Remove handler for STP_TRANSPORT_MODE. The transport now notifies the daemon of the transport. (_stp_transport_close): No longer calls _stp_exit_helper(). That is done by _stp_transport_cleanup(). (_stp_transport_open): When done, call _stp_handle_transport() to notify the daemon what our transport is. (_stp_transport_send): Put a retry limit on sends. * transport.h: Rename pid to _stp_pid. (_stp_transport_cleanup): Add prototype.