This is the mail archive of the systemtap-cvs@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.0-471-g9fa29c5


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  9fa29c5277f3e3f4525ff3335a2cbc2b518c2010 (commit)
      from  e0c56962dbc24692c699f7f9ba3bf267c3807921 (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 9fa29c5277f3e3f4525ff3335a2cbc2b518c2010
Author: Mark Wielaard <mjw@redhat.com>
Date:   Thu Jan 7 17:54:28 2010 +0100

    Fix multi-piece constant failure in vta-test.exp on 32bit systems.
    
    Commit 73b5e9 "Make sure loc2c declare_noncontig_union for different locs
    don't overlap", wasn't complete. It only took into account having a piece
    becuase of a noncontiguous loc and a constant loc together. But pieces can
    be nested deeper (newer gcc outputs multiple constant locations for one
    piece on 32bit systems). This patch keeps track of the piece declaration
    depth. Another approach could have been to have each sub-piece in its own
    local scope, but keeping track of the depth and naming the temporary unions
    distinct fitted the current code better. It currently only supports a depth
    of 10. An error will be emitted if a location construct needs more than 10
    pieces to be assembled.
    
    * loc2c.c (declare_noncontig_union): Take depth argument. Always use the
      same name for the union (u_pieces<depth>).
      (translate_base_fetch): Take depth argument. Use it to calculate union
      names.
      (translate_base_store): Likewise.
      (c_translate_fetch): Pass in depth zero.
      (c_translate_store): Likewise.
      (c_translate_pointer): Likewise.
      (c_translate_pointer_store): Likewise.

-----------------------------------------------------------------------

Summary of changes:
 loc2c.c |   76 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 38 insertions(+), 38 deletions(-)


hooks/post-receive
--
systemtap: system-wide probe/trace tool


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]