public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* optimization/6627
@ 2002-10-06 16:06 sayle
  0 siblings, 0 replies; 2+ messages in thread
From: sayle @ 2002-10-06 16:06 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR optimization/6627; it has been noted by GNATS.

From: sayle@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: optimization/6627
Date: 6 Oct 2002 23:02:12 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	gcc-3_2-branch
 Changes by:	sayle@gcc.gnu.org	2002-10-06 16:02:12
 
 Modified files:
 	gcc            : ChangeLog toplev.c flags.h varasm.c tree.h 
 	gcc/config/i386: i386.h 
 	gcc/cp         : ChangeLog cp-tree.h decl.c 
 	gcc/java       : ChangeLog lang.c 
 
 Log message:
 	PR optimization/6627
 	* toplev.c (force_align_functions_log): New global variable.
 	* flags.h (force_align_functions_log): Add extern prototype.
 	* varasm.c (assemble_start_function): Use it to force minimum
 	function alignment.
 	* config/i386/i386.h (FUNCTION_BOUNDARY): Set the correct
 	minimum function alignment to one byte.
 	(TARGET_PTRMEMFUNC_VBIT_LOCATION): Store the virtual bit in
 	the least significant bit of vtable member function pointers.
 	* tree.h (enum ptrmemfunc_vbit_where_t): Move definition to
 	here from cp/cp-tree.h.
 	
 	* cp/cp-tree.h (enum ptrmemfunc_vbit_where_t): Delete definition
 	from here, and move it to tree.h.
 	* cp/decl.c (cxx_init_decl_processing): If storing the vbit
 	in function pointers, ensure that force_align_functions_log
 	is atleast one.
 	
 	* java/lang.c (java_init): If storing the vbit in function
 	pointers, ensure that force_align_functions_log is atleast
 	one to aid compatability with g++ vtables.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.13152.2.657.2.72&r2=1.13152.2.657.2.73
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/toplev.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.574.2.16.2.1&r2=1.574.2.16.2.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/flags.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.76.4.1&r2=1.76.4.1.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/varasm.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.250.2.14&r2=1.250.2.14.2.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.308.2.2&r2=1.308.2.2.4.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/i386/i386.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.243.2.8.2.1&r2=1.243.2.8.2.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.2685.2.114.2.12&r2=1.2685.2.114.2.13
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.681.2.12.2.3&r2=1.681.2.12.2.4
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/decl.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.866.2.36.2.1&r2=1.866.2.36.2.2
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.925.2.59.2.2&r2=1.925.2.59.2.3
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/lang.c.diff?cvsroot=gcc&only_with_tag=gcc-3_2-branch&r1=1.85.2.4&r2=1.85.2.4.2.1
 


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

* optimization/6627
@ 2002-10-02 11:56 sayle
  0 siblings, 0 replies; 2+ messages in thread
From: sayle @ 2002-10-02 11:56 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR optimization/6627; it has been noted by GNATS.

From: sayle@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: optimization/6627
Date: 2 Oct 2002 18:46:46 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	sayle@gcc.gnu.org	2002-10-02 11:46:46
 
 Modified files:
 	gcc            : ChangeLog toplev.c flags.h varasm.c tree.h 
 	gcc/config/i386: i386.h 
 	gcc/cp         : ChangeLog cp-tree.h decl.c 
 	gcc/java       : ChangeLog lang.c 
 
 Log message:
 	PR optimization/6627
 	* toplev.c (force_align_functions_log): New global variable.
 	* flags.h (force_align_functions_log): Add extern prototype.
 	* varasm.c (assemble_start_function): Use it to force minimum
 	function alignment.
 	* config/i386/i386.h (FUNCTION_BOUNDARY): Set the correct
 	minimum function alignment to one byte.
 	(TARGET_PTRMEMFUNC_VBIT_LOCATION): Store the virtual bit in
 	the least significant bit of vtable member function pointers.
 	* tree.h (enum ptrmemfunc_vbit_where_t): Move definition to
 	here from cp/cp-tree.h.
 	
 	* cp/cp-tree.h (enum ptrmemfunc_vbit_where_t): Delete definition
 	from here, and move it to tree.h.
 	* cp/decl.c (cxx_init_decl_processing): If storing the vbit
 	in function pointers, ensure that force_align_functions_log
 	is atleast one.
 	
 	* java/lang.c (java_init): If storing the vbit in function
 	pointers, ensure that force_align_functions_log is atleast
 	one to aid compatability with g++ vtables.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=1.15601&r2=1.15602
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/toplev.c.diff?cvsroot=gcc&r1=1.677&r2=1.678
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/flags.h.diff?cvsroot=gcc&r1=1.90&r2=1.91
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/varasm.c.diff?cvsroot=gcc&r1=1.313&r2=1.314
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.h.diff?cvsroot=gcc&r1=1.357&r2=1.358
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/i386/i386.h.diff?cvsroot=gcc&r1=1.291&r2=1.292
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.2977&r2=1.2978
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&r1=1.754&r2=1.755
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/decl.c.diff?cvsroot=gcc&r1=1.941&r2=1.942
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gcc&r1=1.1061&r2=1.1062
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/lang.c.diff?cvsroot=gcc&r1=1.110&r2=1.111
 


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

end of thread, other threads:[~2002-10-06 23:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-06 16:06 optimization/6627 sayle
  -- strict thread matches above, loose matches on Subject: below --
2002-10-02 11:56 optimization/6627 sayle

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).