1. 14 Feb, 2005 12 commits
  2. 13 Feb, 2005 16 commits
  3. 12 Feb, 2005 12 commits
    • utils.c (gnat_type_for_mode): Return NULL for COMPLEX modes... · bd0b34a8
              * utils.c (gnat_type_for_mode): Return NULL for COMPLEX modes;
              validate SCALAR_INT_MODE_P before calling gnat_type_for_size.
      
      From-SVN: r94946
      Richard Henderson committed
    • * gcc.dg/vect/vect-96.c: Fix typo. · c202a7f9
      From-SVN: r94945
      Dorit Naishlos committed
    • symbol.c (gfc_use_ha_derived): Remove, fold functionality into ... · 1e6283cb
      * symbol.c (gfc_use_ha_derived): Remove, fold functionality into ...
      (gfc_use_derived): ... this function.
      
      From-SVN: r94942
      Tobias Schlüter committed
    • re PR c++/14479 (enum definition in template class with template methods causes error.) · d3270770
      	PR c++/14479
      	PR c++/19487
      	* pt.c (maybe_check_template_type): Remove.
      	* cp-tree.h (maybe_check_template_type): Remove prototype.
      	* name-lookup.c (maybe_process_template_type_declaration): Don't
      	use maybe_check_template_type.
      
      	* g++.dg/template/enum5.C: New test.
      
      From-SVN: r94941
      Kriang Lerdsuwanakij committed
    • builtins.c, [...]: Update copyright. · 537677ba
      	* builtins.c, java-except.h, jcf-parse.c, jv-scan.c, lex.c,
      	parse-scan.y: Update copyright.
      
      From-SVN: r94940
      Kazu Hirata committed
    • c-tree.h, [...]: Fix comment typos. · 647eea9d
      	* c-tree.h, combine.c, expmed.c, flow.c, libgcc2.c,
      	simplify-rtx.c, tree-ssa-live.h: Fix comment typos.  Follow
      	spelling conventions.
      
      From-SVN: r94939
      Kazu Hirata committed
    • Fixes bug libgcj/8170 · 00089780
             Fixes bug libgcj/8170
             * java/lang/ClassLoader.java (loadClass): Don't rewrap
             ClassNotFoundException.
             * gnu/java/lang/MainThread.java (run): Chain NoClassDefFoundError.
             * gnu/gcj/runtime/NameFinder.java (remove_interpreter): Removed.
             (remove_internal): New field superceding remove_interpreter.
             (sanitizeStack): Remove all no-package classes starting with "_Jv_".
             Remove no-class methods starting with "_Jv_". And Replace null
             class or method names with the empty string. Stop at either the
             MainThread or a real Thread run() method.
             (newElement): Made static.
             * java/net/URLClassLoader.java (findClass): Throw
             ClassNotFoundExceptions including urls, plus parent using toString().
             (thisString): New field.
             (toString): New method.
      
      From-SVN: r94935
      Mark Wielaard committed
    • tree-vectorizer.c (vect_get_base_and_offset): Remove. · 8ad833ac
              * tree-vectorizer.c (vect_get_base_and_offset): Remove.
              (vect_is_simple_iv_evolution): Remove redundant parameter
              and step check.
              (vect_analyze_scalar_cycles): Call vect_is_simple_iv_evolution
              without last parameter.
              (vect_analyze_pointer_ref_access): Get access_fn as parameter.
              Return pointer step. Call vect_is_simple_iv_evolution without
              last parameter. Check only that the step is multiple of size
              type. Remove stmt_vinfo updates.
              (vect_get_memtag_and_dr): Remove.
              (vect_get_memtag): New function.
              (vect_address_analysis): New function.
              (vect_object_analysis): New function.
              (vect_analyze_data_refs): Call vect_object_analysis and
              vect_get_memtag. Update stmt_vinfo fields.
      
      From-SVN: r94934
      Ira Rosen committed
    • tree-data-ref.c (array_base_name_differ_p): Check that the bases exist and are objects. · e3a8a4ed
              * tree-data-ref.c (array_base_name_differ_p): Check that the bases
              exist and are objects. Remove checks for pointer.
              * tree-vectorizer.c (vect_create_addr_base_for_vector_ref): Use
              STMT_VINFO_VECT_DR_BASE_ADDRESS instead of DR_BASE_NAME.
              (vect_create_data_ref_ptr): Likewise.
              (vect_base_addr_differ_p): New function.
              (vect_analyze_data_ref_dependence): Call vect_base_addr_differ_p.
              (vect_analyze_pointer_ref_access): Add output parameter - ptr_init.
              Don't set the DR_BASE_NAME field of data-ref.
              (vect_get_memtag_and_dr): Use ptr_init instead of DR_BASE_NAME.
      
      From-SVN: r94932
      Ira Rosen committed
    • optabs.h (enum optab_index): Add new OTI_ldexp. · c94a75af
      	* optabs.h (enum optab_index): Add new OTI_ldexp.
      	(ldexp_optab): Define corresponding macro.
      	* optabs.c (init_optabs): Initialize ldexp_optab.
      	* genopinit.c (optabs): Implement ldexp_optab using ldexp?f3
      	patterns.
      	* builtins.c (expand_builtin_mathfn_2): Handle BUILT_IN_LDEXP{,F,L}
      	using ldexp_optab.
      	(expand_builtin): Expand BUILT_IN_LDEXP{,F,L} using
      	expand_builtin_mathfn_2 if flag_unsafe_math_optimizations is set.
      
      	* config/i386/i386.md (ldexpsf3, ldexpdf3, ldexpxf3): New expanders
      	to implement ldexpf, ldexp and ldexpl built-ins as inline x87
      	intrinsics.
      
      testsuite:
      
      	* gcc.dg/builtins-34.c: Also check ldexp*.
      
      From-SVN: r94931
      Uros Bizjak committed
    • tree-vectorizer.h (struct _stmt_vec_info): Rename a field: base to base_address. · a5ae3ad6
      2005-02-13  Ira Rosen  <irar@il.ibm.com>
      
              * tree-vectorizer.h (struct _stmt_vec_info): Rename a field: base
              to base_address.
              * tree-vectorizer.c (new_stmt_vec_info): Rename the above field of
              stmt_vec_info.
              (vect_get_base_and_offset): Always return an address.
              (vect_create_addr_base_for_vector_ref): Remove treatment for
              different data reference types.
              (vect_compute_data_ref_alignment): Rename base to base_address in
              stmt_vec_info. Get the object in order to force its alignment.
              (vect_get_memtag_and_dr): Rename base to base_address in
              stmt_vec_info. Extract the object for memtag analysis.
      
      From-SVN: r94930
      Ira Rosen committed
    • * gcc.dg/tree-ssa/20040703-1.c: Quote decimal dot. · 6092c5db
      From-SVN: r94929
      Hans-Peter Nilsson committed