This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

[PING] Re: [PATCH] ARM half-precision floating point, 3/8 (target hooks)


Ping! Can somebody review this patch? There was quite a bit of discussion about whether this was the right approach when I posted it last month, and I think the consensus was that this is OK -- at least, I didn't seem to get any specific suggestions for things that need fixing. But, the patch hasn't been formally approved by a maintainer.

http://gcc.gnu.org/ml/gcc-patches/2009-04/msg01124.html

I'll be posting revised versions of some of the later pieces of the series to address the comments I got on those.

Thanks,

-Sandra

2009-04-15 Sandra Loosemore <sandra@codesourcery.com>

    gcc/
    * doc/tm.texi (Misc): Document TARGET_INVALID_PARAMETER_TYPE,
    TARGET_INVALID_RETURN_TYPE, TARGET_PROMOTED_TYPE, and
    TARGET_CONVERT_TO_TYPE.
    * hooks.c (hook_tree_const_tree_null): Define.
    * hooks.h (hook_tree_const_tree_null): Declare.
    * target.h (struct gcc_target):  Add invalid_parameter_type,
    invalid_return_type, promoted_type, and convert_to_type fields.
    * target-def.h: (TARGET_INVALID_PARAMETER_TYPE): Define.
    (TARGET_INVALID_RETURN_TYPE): Define.
    (TARGET_PROMOTED_TYPE): Define.
    (TARGET_CONVERT_TO_TYPE): Define.
    (TARGET_INITIALIZER): Update for new fields.
    * c-decl.c (grokdeclarator): Check targetm.invalid_return_type.
    (grokparms): Check targetm.invalid_parameter_type.
    * c-typeck.c (default_conversion): Check targetm.promoted_type.
    * c-convert.c (convert): Check targetm.convert_to_type.
    * cp/typeck.c (default_conversion): Check targetm.promoted_type.
    * cp/decl.c (grokdeclarator): Check targetm.invalid_return_type.
    (grokparms): Check targetm.invalid_parameter_type.
    * cp/cvt.c (ocp_convert): Check targetm.convert_to_type.
    (build_expr_type_conversion): Check targetm.promoted_type.



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