public inbox for systemtap-cvs@sourceware.org
help / color / mirror / Atom feed
* src ChangeLog translate.cxx translate.h
@ 2007-10-02 21:41 fche
  0 siblings, 0 replies; 4+ messages in thread
From: fche @ 2007-10-02 21:41 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	fche@sourceware.org	2007-10-02 21:41:07

Modified files:
	.              : ChangeLog translate.cxx translate.h 

Log message:
	PR 3635: reduce number of global objects
	
	2007-10-02  Frank Ch. Eigler  <fche@redhat.com>
	
	PR 3635
	* translate.cxx (emit_global): Wrap all globals and locks into one
	top-level struct.  Update references to former "global_VAR" prefix.
	* translate.h (emit_global_init): New function.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ChangeLog.diff?cvsroot=systemtap&r1=1.686&r2=1.687
http://sourceware.org/cgi-bin/cvsweb.cgi/src/translate.cxx.diff?cvsroot=systemtap&r1=1.184&r2=1.185
http://sourceware.org/cgi-bin/cvsweb.cgi/src/translate.h.diff?cvsroot=systemtap&r1=1.9&r2=1.10


^ permalink raw reply	[flat|nested] 4+ messages in thread

* src ChangeLog translate.cxx translate.h
@ 2007-04-25 14:21 dsmith
  0 siblings, 0 replies; 4+ messages in thread
From: dsmith @ 2007-04-25 14:21 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	dsmith@sourceware.org	2007-04-25 15:21:43

Modified files:
	.              : ChangeLog translate.cxx translate.h 

Log message:
	2007-04-25  David Smith  <dsmith@redhat.com>
	
	PR 2339
	* translate.cxx: Renamed "qname" to "value" throughout, since
	there are times now when qname would refer to a constant value.
	(tmpvar::override): Added function to allow for overriding a
	temporary variable name with a string.
	(tmpvar::value): New function that returns either the overridden
	string or the temporary variable name.
	(c_unparser::c_expression): New function.
	(c_unparser_assignment::c_assignop): Speed up assignment when
	numeric or string constants are used.
	(c_tmpcounter::visit_block): Avoid empty structs inside the union
	of temporary variables.
	(c_tmpcounter_assignment::prepare_rvalue): New function.
	(c_tmpcounter_assignment::c_assignop): New function.
	(c_tmpcounter_assignment::visit_symbol): Update temporary
	declarations.
	(c_unparser_assignment::prepare_rvalue): Speed up use of rvalues
	by using numeric and string constants directly instead of copying
	them to temporaries first.
	(c_tmpcounter::load_map_indices): New function.
	(c_unparser::load_map_indices): Speed up use of numeric and string
	constants as map indices.
	(c_tmpcounter::visit_arrayindex): Updated temporary declarations.
	(c_tmpcounter_assignment::visit_arrayindex): Updated temporary
	declarations.
	* translate.h (class translator_output): Added tellp() and seekp()
	functions.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ChangeLog.diff?cvsroot=systemtap&r1=1.607&r2=1.608
http://sourceware.org/cgi-bin/cvsweb.cgi/src/translate.cxx.diff?cvsroot=systemtap&r1=1.168&r2=1.169
http://sourceware.org/cgi-bin/cvsweb.cgi/src/translate.h.diff?cvsroot=systemtap&r1=1.8&r2=1.9


^ permalink raw reply	[flat|nested] 4+ messages in thread

* src ChangeLog translate.cxx translate.h
@ 2006-02-25 21:05 fche
  0 siblings, 0 replies; 4+ messages in thread
From: fche @ 2006-02-25 21:05 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	fche@sourceware.org	2006-02-25 21:05:46

Modified files:
	.              : ChangeLog translate.cxx translate.h 

Log message:
	2006-02-25  Frank Ch. Eigler  <fche@elastic.org>
	
	* translate.cxx (var::init): Don't crush string module_params.
	(emit_global_param): New function, forked out of emit_global,
	to put module_param calls at the bottom of C file.
	* translate.h: Corresponding changes.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ChangeLog.diff?cvsroot=systemtap&r1=1.326&r2=1.327
http://sourceware.org/cgi-bin/cvsweb.cgi/src/translate.cxx.diff?cvsroot=systemtap&r1=1.104&r2=1.105
http://sourceware.org/cgi-bin/cvsweb.cgi/src/translate.h.diff?cvsroot=systemtap&r1=1.5&r2=1.6


^ permalink raw reply	[flat|nested] 4+ messages in thread

* src ChangeLog translate.cxx translate.h
@ 2005-08-24 17:37 fche
  0 siblings, 0 replies; 4+ messages in thread
From: fche @ 2005-08-24 17:37 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	fche@sourceware.org	2005-08-24 17:37:03

Modified files:
	.              : ChangeLog translate.cxx translate.h 

Log message:
	2005-08-24  Frank Ch. Eigler  <fche@elastic.org>
	
	* translate.cxx (emit_global, emit_module_init): Use 2.6.9-compatible
	rwlock initialization.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/ChangeLog.diff?cvsroot=systemtap&r1=1.115&r2=1.116
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/translate.cxx.diff?cvsroot=systemtap&r1=1.35&r2=1.36
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/translate.h.diff?cvsroot=systemtap&r1=1.3&r2=1.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-10-02 21:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-02 21:41 src ChangeLog translate.cxx translate.h fche
  -- strict thread matches above, loose matches on Subject: below --
2007-04-25 14:21 dsmith
2006-02-25 21:05 fche
2005-08-24 17:37 fche

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).