From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15135 invoked by alias); 16 May 2009 00:32:27 -0000 Received: (qmail 15097 invoked by uid 9586); 16 May 2009 00:32:25 -0000 Date: Sat, 16 May 2009 00:32:00 -0000 Message-ID: <20090516003225.15086.qmail@sourceware.org> From: jistone@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-0.9.7-130-g62f6ae6 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 3863e7999255deeaa7f8f4bba7df893773812537 X-Git-Newrev: 62f6ae64f9d1269e07d320e9a168ee737b2cf851 Mailing-List: contact systemtap-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-cvs-owner@sourceware.org List-Archive: Reply-To: systemtap@sourceware.org X-SW-Source: 2009-q2/txt/msg00234.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "systemtap: system-wide probe/trace tool". The branch, master has been updated via 62f6ae64f9d1269e07d320e9a168ee737b2cf851 (commit) via d0b4a5ffde2a86bc672097a4d5462b204364e59f (commit) via 0d3ea790a5ee17df1600ccb377fbeeb9f5574642 (commit) via 1adf8ef1ca448709a7a4527b916d65ada0b3fc04 (commit) via 511785011b1bd7092d9e093f6e954c131d83a3a0 (commit) via b6fa229bc4b361a23f23daa13af634a0515230d6 (commit) via c94efd6357211094fce035d7435efe971bdf5ae1 (commit) via aa214f4bf19e711e01998a07b390934c1b027f74 (commit) via 440f755a3b886c6cfdca9f523302f1f0938f7fec (commit) via 707bf35ea17c442b797d98d7d2acd8506bfbc65b (commit) from 3863e7999255deeaa7f8f4bba7df893773812537 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 62f6ae64f9d1269e07d320e9a168ee737b2cf851 Merge: 3863e7999255deeaa7f8f4bba7df893773812537 d0b4a5ffde2a86bc672097a4d5462b204364e59f Author: Josh Stone Date: Fri May 15 15:54:43 2009 -0700 Merge branch 'tapsets-cleanup' commit d0b4a5ffde2a86bc672097a4d5462b204364e59f Author: Josh Stone Date: Fri May 15 15:23:42 2009 -0700 Privatize many dwflpp members This helps make it more obvious which methods are accessed by external classes, which should help in refactoring. commit 0d3ea790a5ee17df1600ccb377fbeeb9f5574642 Author: Josh Stone Date: Fri May 15 15:22:05 2009 -0700 Simplify our unordered_map typedefs commit 1adf8ef1ca448709a7a4527b916d65ada0b3fc04 Author: Josh Stone Date: Fri May 15 14:26:32 2009 -0700 Break the dwflpp dependence on query_cu commit 511785011b1bd7092d9e093f6e954c131d83a3a0 Author: Josh Stone Date: Fri May 15 14:10:57 2009 -0700 Break the dwflpp dependence on query_module commit b6fa229bc4b361a23f23daa13af634a0515230d6 Author: Josh Stone Date: Fri May 15 13:14:52 2009 -0700 Merge the dwflpp::query_cu_..._address methods The method query_cu_containing_global_address was only called by query_cu_containing_module_address, and the latter was just doing a simple argument transform. They are now merged into a single method, query_cu_containing_address. The function module_address_to_global is also merged here at its only call site. commit c94efd6357211094fce035d7435efe971bdf5ae1 Author: Josh Stone Date: Fri May 15 12:56:15 2009 -0700 Don't shadow dwlfpp::dwfl in loc2c_emit_address commit aa214f4bf19e711e01998a07b390934c1b027f74 Author: Josh Stone Date: Fri May 15 12:29:19 2009 -0700 Remove unused dwflpp methods These three methods had no callers, and are thus obsolete: dwflpp::focus_on_module_containing_global_address(Dwarf_Addr a) dwflpp::global_address_to_module(Dwarf_Addr a) dwflpp::cu_name_matches(string pattern) commit 440f755a3b886c6cfdca9f523302f1f0938f7fec Author: Josh Stone Date: Tue May 12 19:33:14 2009 -0700 Move dfwlpp into its own file It's not a terribly clean split, but moving it helps reveals some of the knots that need to be untangled. commit 707bf35ea17c442b797d98d7d2acd8506bfbc65b Author: Josh Stone Date: Mon May 11 18:15:31 2009 -0700 Consolidate dwflpp setup ----------------------------------------------------------------------- Summary of changes: Makefile.am | 2 +- Makefile.in | 50 +- aclocal.m4 | 92 +- configure | 4046 +++++++++++++++------------- doc/Makefile.in | 22 +- doc/SystemTap_Tapset_Reference/Makefile.in | 24 +- dwarf_wrappers.cxx | 13 + dwarf_wrappers.h | 2 + dwflpp.cxx | 2093 ++++++++++++++ dwflpp.h | 368 +++ grapher/Makefile.in | 24 +- tapsets.cxx | 2373 +---------------- testsuite/Makefile.in | 5 +- testsuite/aclocal.m4 | 44 +- testsuite/configure | 1224 +++++---- 15 files changed, 5556 insertions(+), 4826 deletions(-) create mode 100644 dwflpp.cxx create mode 100644 dwflpp.h hooks/post-receive -- systemtap: system-wide probe/trace tool