Commit Graph

70892 Commits

Author SHA1 Message Date
Tom Tromey
a022cd5969 re PR libgcj/16032 (libgcj should reject class files with incorrect version numbers)
PR libgcj/16032:
	* interpret.cc (AVAL1U): Resolve pool entry when not direct
	threaded.
	(AVAL2U): Likewise.
	(compile): Handle 'ldc class' specially.
	(_Jv_InterpMethod::run): Added special 'ldc class' instruction.
	* verify.cc (check_constant): Handle 'ldc class' for 1.5 classes.
	* defineclass.cc (handleCodeAttribute): Set new field.
	(MAJOR_1_1, MINOR_1_1, MAJOR_1_2, MINOR_1_2, MAJOR_1_3, MINOR_1_3,
	MAJOR_1_4, MINOR_1_4, MAJOR_1_5, MINOR_1_5): New defines.
	(parse): Check version numbers.
	(_Jv_ClassReader::is_15): New field.
	(_Jv_ClassReader): Initialize it.
	* include/java-interp.h (_Jv_InterpMethod::is_15): New field.

From-SVN: r104325
2005-09-15 22:02:13 +00:00
Paolo Bonzini
9026e8d4d5 optabs.c (expand_binop): Use swap_commutative_operands_with_target to order operands.
2005-09-15  Paolo Bonzini  <bonzini@gnu.org>

	* optabs.c (expand_binop): Use swap_commutative_operands_with_target
	to order operands.
	(swap_commutative_operands_with_target): New.

From-SVN: r104324
2005-09-15 21:51:13 +00:00
Tom Tromey
befd75753f For PR libgcj/23288:
* java/net/URLClassLoader.java (definePackage): Correctly order
	arguments to definePackage.  Look up per-entry Attributes.
	(getAttributeValue): New method.

From-SVN: r104320
2005-09-15 20:17:05 +00:00
Joseph Myers
77923c2938 re PR target/23139 (-pedantic -ffast-math breaks working code)
fixincludes:
	PR c++/23139
	* inclhack.def (huge_val_hex, huge_valf_hex, huge_vall_hex): New
	fixes.
	* fixincl.x: Regenerate.
	* tests/base/bits/huge_val.h: New file.

gcc/testsuite:
	* g++.dg/warn/huge-val1.C: New test.

From-SVN: r104315
2005-09-15 20:09:27 +01:00
Benjamin Kosnik
451e92db80 re PR libstdc++/21674 (basic_string vs debug_mode)
2005-09-15  Benjamin Kosnik  <bkoz@redhat.com>

	PR libstdc++/21674
	PR libstdc++/22205
	PR libstdc++/22222
	* include/bits/c++config: Set _GLIBCXX_STD regardless of __GXX_WEAK__.
	Add in check for __NO_INLINE__ for warning.
	* testsuite/lib/dg-options.exp (dg-require-debug-mode): New.
	* testsuite/lib/libstdc++.exp (check_v3_target_debug_mode): New.
	* testsuite/21_strings/basic_string/element_access/char/21674.cc:
	Use it.
	* testsuite/21_strings/basic_string/element_access/wchar_t/21674.cc:
	Use it.

From-SVN: r104314
2005-09-15 18:58:02 +00:00
Paolo Carlini
f4ca8e2772 re PR libstdc++/23875 (operator<<(short) should not call operator<<(long), etc.)
2005-09-15  Paolo Carlini  <pcarlini@suse.de>

	PR libstdc++/23875
	* include/std/std_ostream.h (operator<<(short), operator<<(unsigned
	short), operator<<(int), operator<<(unsigned int), operator<<(float)):
	Don't call operator<<(long), operator<<(unsigned long), or
	operator<<(double), do the work mandated by the resolution of DR117...
	* include/bits/ostream.tcc (operator<<(short), operator<<(unsigned
	short), operator<<(int), operator<<(unsigned int), operator<<(float)):
	... here.
	* testsuite/27_io/basic_ostream/inserters_arithmetic/pod/23875.cc: New.

From-SVN: r104313
2005-09-15 17:27:23 +00:00
Daniel Berlin
14b33c04a1 tree-data-ref.c (analyze_array_indexes): Add estimate_only parameter.
2005-09-15  Daniel Berlin  <dberlin@dberlin.org>

	* tree-data-ref.c (analyze_array_indexes): Add estimate_only
	parameter.
	Update callers.
	(estimate_iters_using_array): New function.
	* tree-data-ref.h (estimate_iters_using_array): Prototype
	* tree-ssa-loop-niter.c (infer_loop_bounds_from_undefined):
	Use estimate_iters_using_array instead of analyze_array.

From-SVN: r104312
2005-09-15 17:21:48 +00:00
Mark Mitchell
312ea2368e * pt.c (check_explicit_instantiation_namespace): Fix typo.
From-SVN: r104311
2005-09-15 16:51:37 +00:00
Mark Mitchell
9c12301f5b re PR c++/13140 (declaration in global namespace, definition inside named or anon namespace)
PR c++/13140
	* decl.c (check_class_member_definition_namespace): New function.
	(grokfndecl): Use it.
	(grokvardecl): Likewise.
	(grokdecl): Improve documentation.
	* pt.c (check_explicit_instantiation_namespace): New function.
	(register_specialization): Call check_specialization_namespace
	when replacing an implicitly instantiated function.
	(check_explicit_specialization): Ensure that DECL_CONTEXT is set
	correctly for namespace-scope specializations.
	(do_decl_instantiation): Use
	check_explicit_instantiation_namespace.
	(do_type_instantiation): Likewise.

	PR c++/13140
	* g++.dg/parse/class2.C: New test.
	* g++.dg/template/explicit8.C: Likewise.
	* g++.dg/template/spec25.C: Likewise.

	* testsuite/testsuite_character.h: Specialize character<>
	templates in __gnu_cxx, not in __gnu_test.

From-SVN: r104310
2005-09-15 16:03:32 +00:00
Bryce McKinlay
c629e611eb re PR java/23891 (Problem folding static fields across packages)
2005-09-14  Bryce McKinlay  <mckinlay@redhat.com>

        PR java/23891
        * parse.y (maybe_create_class_interface_decl): Set TYPE_PACKAGE for
        the newly created type. Set import lists here, not in create_class.
        (jdep_resolve_class): Set current_class.
        (do_resolve_class): Use current_class's TYPE_PACKAGE to determine
        the current package context, not ctxp->package.
        (cicp_cache): Removed.
        (class_in_current_package): Simplify implementation using
	TYPE_PACKAGE.
        * jcf-parse.c (give_name_to_class): Set TYPE_PACKAGE.
        * java-tree.h (TYPE_PACKAGE): New macro.
        (struct lang_type): New member 'package'.

From-SVN: r104305
2005-09-15 15:13:03 +01:00
Nathan Sidwell
ec05ece4b9 re PR c++/23725 (Error message regression with g++.dg/inherit/using4.C)
PR c++/23725
	* error.c (dump_decl): <USING_DECL case> Use USING_DECL_SCOPE.

From-SVN: r104302
2005-09-15 11:27:12 +00:00
Eric Botcazou
d430cbe706 tree-nested.c (get_frame_type): Mark the "non-local frame structure" as addressable.
* tree-nested.c (get_frame_type): Mark the "non-local frame structure"
	as addressable.

From-SVN: r104300
2005-09-15 06:15:36 +00:00
Michael Matz
fca59ed2c9 * tree-vrp.c (vrp_int_const_binop <MINUS_EXPR>): Handle 0 - -INF.
From-SVN: r104298
2005-09-15 05:03:01 +00:00
Daniel Berlin
fd312e903f re PR tree-optimization/23835 (-O3 compile takes two times longer)
2005-09-14  Daniel Berlin  <dberlin@dberlin.org>

	PR tree-optimization/23835
	* tree-ssa-alias.c (sort_pointers_by_pt_vars): New function.
	(create_name_tags): Rewrite to be not O(num_ssa_names^2).

From-SVN: r104296
2005-09-15 01:28:10 +00:00
Christopher Faylor
0d676b85ae pex-win32.c: Include "windows.h".
* pex-win32.c: Include "windows.h".
(backslashify): New function.
(fix_argv): Use backslashify to convert path to windows format.  Allocate one
more place in new argv for potential executable from '#!' parsing.
(tack_on_executable): New function.  Conditional on USE_MINGW_MSYS
(openkey): Ditto.
(mingw_rootify): Ditto.
(msys_rootify): Ditto.
(spawn_script): New function.
(pex_win32_exec_child): Save translated argv in newargv.  Pass to spawn_script
if spawnv* fails.
(main): New function.  Conditional on MAIN.  Useful for testing.

From-SVN: r104292
2005-09-15 00:46:20 +00:00
GCC Administrator
62ff44d425 Daily bump.
[[Split portion of a mixed commit.]]

From-SVN: r104289.2
2005-09-15 00:16:18 +00:00
Richard Henderson
47b71abba9 vect.md (addv2sf3, subv2sf3): Rewrite as expand.
* config/ia64/vect.md (addv2sf3, subv2sf3): Rewrite as expand.
        (addv2sf3_1, addv2sf3_2, subv2sf3_1, subv2sf3_2): New.

From-SVN: r104287
2005-09-14 17:05:53 -07:00
Andrew Pinski
5139c66bf8 i386.c (contains_128bit_aligned_vector_p): Add break in the ARRAY_TYPE case.
2005-09-14  Andrew Pinski  <pinskia@physics.uc.edu>

        * config/i386/i386.c (contains_128bit_aligned_vector_p): Add break
        in the ARRAY_TYPE case.

From-SVN: r104286
2005-09-14 16:53:32 -07:00
Josh Conner
a325b0be7e re PR tree-optimization/23584 (ipa-pure-const pass ignores dereferencing a volatile pointer type)
PR middle-end/23584
    * gcc.dg/pr23584.c: New test.

From-SVN: r104284
2005-09-14 21:34:37 +00:00
Jerry DeLisle
c5e04c908b PR fortran/21875 Internal Unit Array I/O, NIST
2005-09-14  Jerry DeLisle  <jvdelisle@verizon.net>

	PR fortran/21875 Internal Unit Array I/O, NIST
	* gfortran.dg/arrayio_1.f90: New test.
	* gfortran.dg/arrayio_1.f90: New test.
	* gfortran.dg/arrayio_1.f90: New test.
	* gfortran.dg/arrayio_1.f90: New test.
	* gfortran.dg/arrayio_1.f90: New test.

From-SVN: r104278
2005-09-14 20:25:56 +00:00
Paul Thomas
109b0ac2a8 PR fortran/21875 Internal Unit Array I/O, NIST
2005-09-14  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/21875 Internal Unit Array I/O, NIST
	* fortran/trans-io.c (gfc_build_io_library_fndecls): Add field for
	array descriptor to IOPARM structure.
	* fortran/trans-io.c (set_internal_unit): New function to generate code
	to store the character (array) and the character length for an internal
	unit.
	* fortran/trans-io (build_dt): Use the new function set_internal_unit.

From-SVN: r104277
2005-09-14 20:19:37 +00:00
Jerry DeLisle
59154ed24c PR fortran/21875 Internal Unit Array I/O, NIST
2005-09-14  Jerry DeLisle  <jvdelisle@verizon.net

	PR fortran/21875 Internal Unit Array I/O, NIST
	* libgfortran.h: Add run time error code for array stride.
	* runtime/error.c (translate_error): Add error message for
	array stride.
	* io/io.h: Add array descriptor pointer to IOPARM structure.
	Add prtotypes for two new functions.
	* io/transfer.c (data_transfer_init): Removed initialization and
	moved to unit.c (get_unit)
	* io/transfer.c (next_record_r): Include internal unit read
	functionality.
	* io/transfer.c (next_record_w): Include internal unit write
	functionality, including padding of character array records.
	* io/unit.c (get_array_unit_len): New function to return the number
	of records in the character array 'file' from the array descriptor.
	* io/unit.c (get_unit): Gathered initialization code from
	init_data_transfer for internal units and added initialization of
	character array unit.
	* io/unit.c (is_array_io): New function to determine if internal unit
	is an array.
	* io/unix.c (mem_alloc_w_at): Add error checks for bad record length
	and end of file.

From-SVN: r104276
2005-09-14 20:18:19 +00:00
Eric Botcazou
7ad00e1325 * tree.c (substitute_in_expr, case 4): New case, for ARRAY_REF.
From-SVN: r104271
2005-09-14 15:04:56 +00:00
Uros Bizjak
b2d16a23f1 re PR middle-end/22480 (ICE in convert_move, at expr.c:390 with -ftree-vectorize)
2005-09-14  Uros Bizjak  <uros@kss-loka.si>

        PR middle-end/22480
        * tree-vect-transform.c (vectorizable_operation): Return false for
        scalar shift operations and for vector shift operations with
        non-invariant shift arguments.  Use scalar tree operand op1 as
        a shift operand when vector shift insn pattern uses scalar shift
        operand.
        * Makefile.in (tree-vect-transform.o): Depend on recog.h.

From-SVN: r104264
2005-09-14 09:27:01 +00:00
Olivier Hainque
816fa80a8f gimplify.c (gimplify_init_ctor_eval): Don't discard a zero-sized value if it has side-effects.
* gimplify.c (gimplify_init_ctor_eval): Don't discard a zero-sized
	value if it has side-effects.

From-SVN: r104262
2005-09-14 06:59:10 +00:00
Paul Thomas
0df3cf7f04 re PR fortran/19358 ([gfortran] Segfault with missing upper bound)
2005-09-13  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/19358
	* trans-array.c (gfc_trans_dummy_array_bias): correct the typo
	which uses dim[i].upper for lbound, rather than dim[i].lower.

2005-09-13  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/19358
	* gfortran.fortran-torture/assumed_dummy_1.f90: New test.

From-SVN: r104259
2005-09-14 05:12:04 +00:00
Jonathan Wakely
0120daacbe re PR libstdc++/21674 (basic_string vs debug_mode)
2005-09-13  Jonathan Wakely  <cow@compsoc.man.ac.uk>
	    Benjamin Kosnik  <bkoz@redhat.com>

	PR libstdc++/21674
	* testsuite/21_strings/basic_string/element_access/char/21674.cc: New.
	* testsuite/21_strings/basic_string/element_access/wchar_t/21674.cc:
	New.

Co-Authored-By: Benjamin Kosnik <bkoz@redhat.com>

From-SVN: r104256
2005-09-14 03:22:17 +00:00
David Edelsohn
c969253262 re PR target/22068 (Multiply-immediate opportunity)
PR target/22068
        * config/rs6000/rs6000.md (muldi3): Add mulli alternative.

From-SVN: r104255
2005-09-13 21:12:43 -04:00
Josh Conner
68a2828871 re PR c++/23180 (Segfault on const initializer with bogus pointer arithmetics)
PR c++/23180
        * g++.dg/init/struct2.C: New test.
        * g++.dg/init/struct3.C: New test.

From-SVN: r104254
2005-09-14 00:25:01 +00:00
GCC Administrator
bb9baf1c9b Daily bump.
[[Split portion of a mixed commit.]]

From-SVN: r104251.2
2005-09-14 00:16:25 +00:00
Janis Johnson
46fb9bf365 pr15784-4.c, [...]: Clean up temp files.
* gcc.dg/pr15784-4.c, gcc.dg/pr20130-1.c, gcc.dg/ucnid-6.c:
	Clean up temp files.
	* gcc.dg/tree-ssa/20030821-1.c, gcc.dg/tree-ssa/20040514-2.c,
	gcc.dg/tree-ssa/builtin-fprintf-1.c,
	gcc.dg/tree-ssa/builtin-fprintf-chk-1.c,
	gcc.dg/tree-ssa/builtin-printf-1.c,
	gcc.dg/tree-ssa/builtin-printf-chk-1.c,
	gcc.dg/tree-ssa/builtin-vfprintf-1.c,
	gcc.dg/tree-ssa/builtin-vfprintf-chk-1.c,
	gcc.dg/tree-ssa/builtin-vprintf-1.c,
	gcc.dg/tree-ssa/builtin-vprintf-chk-1.c, gcc.dg/tree-ssa/ltrans-8.c,
	gcc.dg/tree-ssa/pr19055-2.c, gcc.dg/tree-ssa/pr19055.c,
	gcc.dg/tree-ssa/pr21985.c: Clean up dump files.
	* gcc.dg/vect/fast-math-vect-reduc-5.c, gcc.dg/vect/pr22506.c,
	gcc.dg/vect/trapv-vect-reduc-4.c, gcc.dg/vect/vect-116.c,
	gcc.dg/vect/vect-reduc-6.c, gcc.dg/vect/vect-reduc-7.c,
	gcc.dg/vect/vect-reduc-8.c, gcc.dg/vect/vect-reduc-9.c,
	gcc.dg/vect/vect-shift-1.c: Clean up .vect files.

From-SVN: r104247
2005-09-13 23:46:26 +00:00
Alan Modra
007544681e linux64.h (DBX_OUTPUT_BRAC): Treat function name passed as NAME as if it were label at start of function code.
* config/rs6000/linux64.h (DBX_OUTPUT_BRAC): Treat function name
	passed as NAME as if it were label at start of function code.

From-SVN: r104245
2005-09-14 08:59:31 +09:30
Josh Conner
9cb5fdd062 gcc-dg.exp: Load scanipa.exp.
* lib/gcc-dg.exp: Load scanipa.exp.
        (cleanup-dump): New procedure.
        (cleanup-rtl-dump, cleanup-tree-dump, cleanup-ipa-dump): Use it.
        * lib/scandump.exp: New file.
        * lib/scantree.exp: Use it.
        * lib/scanipa.exp: New file.

From-SVN: r104244
2005-09-13 23:27:25 +00:00
Kaz Kojima
1894379210 sh.md (*movv4sf_i): Add general register cases to the constraints.
* config/sh/sh.md (*movv4sf_i): Add general register cases to
	the constraints.

From-SVN: r104242
2005-09-13 22:03:18 +00:00
Andrew Pinski
af8e89081e darwin.md (movdf_low_si): Mark the outgoing r constraint as early clobber.
2005-09-13  Andrew Pinski  <pinskia@physics.uc.edu>

        * config/rs6000/darwin.md (movdf_low_si): Mark the outgoing r constraint
        as early clobber.  Rewrite so the PIC register is not implicitly used.

From-SVN: r104241
2005-09-13 14:50:47 -07:00
Erik Edelmann
c4abe01049 re PR fortran/17740 (ICE in gfc_trans_arrayfunc_assign, at fortran/trans-expr.c:2011)
2005-09-13  Erik Edelmann  <erik.edelmann@iki.fi>
fortran/
	PR fortran/17740
	* trans-expr.c (gfc_trans_arrayfunc_assign): Check value
	of attr.elemental for specific function instead of generic name.
testsuite/
	PR fortran/17740
	* gfortran.dg/generic_4.f90: New test.

From-SVN: r104240
2005-09-13 23:46:04 +02:00
Volker Reichelt
282c3fdc47 tree.c (annotate_with_file_line): Compare line numbers before file names.
* tree.c (annotate_with_file_line): Compare line numbers before
	file names.

From-SVN: r104239
2005-09-13 21:12:57 +00:00
David Edelsohn
00ff8e1926 re PR libstdc++/22554 (pb_assoc header build and install overflows exec)
2005-09-12  David Edelsohn  <dje@gcc.gnu.org>

	PR libstdc++/22554
	PR libstdc++/23734
	* include/Makefile.am (stamp-assoc): Install each subgroup
	of headers separately.
	* include/Makefile.in: Regenerate.

From-SVN: r104238
2005-09-13 19:22:52 +00:00
Uros Bizjak
79e72538bf re PR target/23816 (ICE in extract_insn, at recog.c:2084)
PR target/23816
        * config/i386/sse.md (*ieee_sminv4sf3, *ieee_smaxv4sf3)
        (*ieee_sminv2df3, *ieee_smaxv2df3): New insn patterns.

From-SVN: r104236
2005-09-13 12:02:04 -07:00
Benjamin Kosnik
f81ab296b9 22309_thread.cc: Remove dg-do run.
2005-09-12  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/ext/mt_allocator/22309_thread.cc: Remove dg-do run.
	* testsuite/lib/libstdc++.exp ( proc libstdc++_init): Enable
	shared only for linux.

From-SVN: r104235
2005-09-13 18:36:39 +00:00
Ian Lance Taylor
1984d2e8cd loop-doloop.c (doloop_modify): Use GEN_INT to pass an rtx rather than a HOST_WIDEST_INT to gen_doloop_begin.
* loop-doloop.c (doloop_modify): Use GEN_INT to pass an rtx rather
	than a HOST_WIDEST_INT to gen_doloop_begin.

From-SVN: r104234
2005-09-13 17:28:02 +00:00
Diego Novillo
5681f1ab03 * tree-dfa.c (dump_variable): Guard against NULL annotations.
From-SVN: r104233
2005-09-13 12:05:37 -04:00
Joseph Myers
587817d094 * zh_CN.po: Update.
From-SVN: r104231
2005-09-13 16:48:36 +01:00
Bastian Blank
3beac9100a re PR c++/16171 ([ABI] Problems with standard names in different namespaces)
PR c++/16171
	* mangle.c (find_substitution): Do not use special substitutions
	for identifiers not in std::.

	PR c++/16171
	* g++.dg/abi/mangle26.C: New test.
	* g++.dg/abi/mangle27.C: New test.
	* g++.dg/abi/mangle28.C: New test.
	* g++.dg/abi/mangle29.C: New test.

From-SVN: r104228
2005-09-13 15:15:37 +00:00
Mark Mitchell
7b09c6a499 re PR c++/23839 (ICE: expected var_decl, have parm_decl in cxx_mark_addressable, at cp/typeck.c:4343)
PR c++/23839
	* typeck.c (cxx_mark_addressable): Only check DECL_HARD_REGISTER
	for VAR_DECLs.

	PR c++/23839
	* g++.dg/parse/register1.C: New test.

From-SVN: r104225
2005-09-13 14:45:13 +00:00
Mark Mitchell
6493555fd3 re PR c++/23842 (Incorrect access control context)
PR c++/23842
	* pt.c (tsubst_default_argument): Do treat default argument
	expressions as occurring in the context of the function called.

	PR c++/23842
	* g++.dg/template/access16.C: New test.

From-SVN: r104224
2005-09-13 14:44:08 +00:00
Richard Sandiford
8abbec4748 * gfortran.dg/char_pack_2.f90: Increase the vector size.
From-SVN: r104220
2005-09-13 11:01:23 +00:00
Richard Sandiford
4fd9a81345 re PR fortran/18899 ([gfortran] ubound wrongly calculated for passed array)
PR fortran/18899
	* trans-intrinsic.c (gfc_conv_intrinsic_bound): Move initialization
	of argse.  Remove now-redundant want_pointer assignment.
	* trans-array.c (gfc_conv_expr_descriptor): When not assigning to
	a pointer, keep the original bounds of a full array reference.

From-SVN: r104219
2005-09-13 08:07:15 +00:00
Zdenek Dvorak
d7f0e25cd0 re PR tree-optimization/23817 (ICE in check_loop_closed_ssa_use, at tree-ssa-loop-manip.c:398)
PR tree-optimize/23817
	* tree-cfg.c (tree_merge_blocks): Preserve loop closed ssa.

From-SVN: r104218
2005-09-13 07:33:49 +00:00
Richard Sandiford
7823229bc3 re PR fortran/19269 (transpose(reshape(...)) of character array segfaults.)
gcc/fortran/
	PR target/19269
	* iresolve.c (gfc_resolve_cshift, gfc_resolve_eoshift)
	(gfc_resolve_pack, gfc_resolve_reshape, gfc_resolve_spread)
	(gfc_resolve_transpose, gfc_resolve_unpack): Add "_char" to the name
	for character-based operations.
	(gfc_resolve_pack): Remove ATTRIBUTE_UNUSED from array argument.
	(gfc_resolve_unpack): Copy the whole typespec from the vector.
	* trans-array.c (gfc_conv_expr_descriptor): In the EXPR_FUNCTION
	case, get the string length from the scalarization state.

libgfortran/
	PR target/19269
	* intrinsics/cshift0.c (cshift0): Add an extra size argument.
	(cshift0_1, cshift0_2, cshift0_4, cshift0_8): Replace explicit
	implementations with...
	(DEFINE_CSHIFT): ...this new macro.  Define character versions too.
	* intrinsics/eoshift0.c (zeros): Delete.
	(eoshift0): Add extra size and filler arguments.  Use memset if no
	bound is provided.
	(eoshift0_1, eoshift0_2, eoshift0_4, eoshift0_8): Replace explicit
	implementations with...
	(DEFINE_EOSHIFT): ...this new macro.  Define character versions too.
	* intrinsics/eoshift2.c (zeros): Delete.
	(eoshift2): Add extra size and filler arguments.  Use memset if no
	bound is provided.
	(eoshift2_1, eoshift2_2, eoshift2_4, eoshift2_8): Replace explicit
	implementations with...
	(DEFINE_EOSHIFT): ...this new macro.  Define character versions too.
	* intrinsics/pack.c (pack_internal): New static function, reusing
	the contents of pack and adding an extra size argument.  Change
	"mptr" rather than "m" when calculating the array size.
	(pack): Redefine as a forwarder to pack_internal.
	(pack_s_internal): New static function, reusing the contents of
	pack_s and adding an extra size argument.
	(pack_s): Redefine as a forwarder to pack_s_internal.
	(pack_char, pack_s_char): New functions.
	* intrinsics/reshape.c (reshape_internal): New static function,
	reusing the contents of reshape and adding an extra size argument.
	(reshape): Redefine as a forwarder to reshape_internal.
	(reshape_char): New function.
	* intrinsics/spread.c (spread_internal): New static function,
	reusing the contents of spread and adding an extra size argument.
	(spread): Redefine as a forwarder to spread_internal.
	(spread_char): New function.
	* intrinsics/transpose.c (transpose_internal): New static function,
	reusing the contents of transpose and adding an extra size argument.
	(transpose): Redefine as a forwarder to transpose_internal.
	(transpose_char): New function.
	* intrinsics/unpack.c (unpack_internal): New static function, reusing
	the contents of unpack1 and adding extra size and fsize arguments.
	(unpack1): Redefine as a forwarder to unpack_internal.
	(unpack0): Call unpack_internal instead of unpack1.
	(unpack1_char, unpack0_char): New functions.
	* m4/cshift1.m4 (cshift1): New static function, reusing the contents
	of cshift1_<kind> and adding an extra size argument.
	(cshift1_<kind>): Redefine as a forwarder to cshift1.
	(cshift1_<kind>_char): New function.
	* m4/eoshift1.m4 (zeros): Delete.
	(eoshift1): New static function, reusing the contents of
	eoshift1_<kind> and adding extra size and filler arguments.
	Fix calculation of hstride.  Use memset if no bound is provided.
	(eoshift1_<kind>): Redefine as a forwarder to eoshift1.
	(eoshift1_<kind>_char): New function.
	* m4/eoshift3.m4 (zeros): Delete.
	(eoshift3): New static function, reusing the contents of
	eoshift3_<kind> and adding extra size and filler arguments.
	Use memset if no bound is provided.
	(eoshift3_<kind>): Redefine as a forwarder to eoshift3.
	(eoshift3_<kind>_char): New function.
	* generated/cshift1_4.c, generated/cshift1_8.c,
	* generated/eoshift1_4.c, generated/eoshift1_8.c,
	* generated/eoshift3_4.c, generated/eoshift3_8.c: Regenerate.

From-SVN: r104217
2005-09-13 07:15:01 +00:00