From a628ab6d267089a84247af749f5d4e76717e08ed Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Tue, 16 Nov 2004 17:37:31 +0000 Subject: [PATCH] s390.c (s390_cc_modes_compatible): New function. 2004-11-16 Andreas Krebbel * config/s390/s390.c (s390_cc_modes_compatible): New function. (TARGET_CC_MODES_COMPATIBLE): Target macro defined. From-SVN: r90745 --- gcc/ChangeLog | 5 +++++ gcc/config/s390/s390.c | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 521c31b09e6..7ec570dea48 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-16 Andreas Krebbel + + * config/s390/s390.c (s390_cc_modes_compatible): New function. + (TARGET_CC_MODES_COMPATIBLE): Target macro defined. + 2004-11-16 Kaz Kojima PR target/18447 diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c index a6f0d64dc7b..91ee90d282d 100644 --- a/gcc/config/s390/s390.c +++ b/gcc/config/s390/s390.c @@ -82,6 +82,9 @@ static bool s390_call_saved_register_used (tree); static bool s390_pass_by_reference (CUMULATIVE_ARGS *, enum machine_mode mode, tree, bool); static bool s390_fixed_condition_code_regs (unsigned int *, unsigned int *); +static enum machine_mode s390_cc_modes_compatible (enum machine_mode, + enum machine_mode); + #undef TARGET_ASM_ALIGNED_HI_OP #define TARGET_ASM_ALIGNED_HI_OP "\t.word\t" @@ -160,6 +163,9 @@ static bool s390_fixed_condition_code_regs (unsigned int *, unsigned int *); #undef TARGET_FIXED_CONDITION_CODE_REGS #define TARGET_FIXED_CONDITION_CODE_REGS s390_fixed_condition_code_regs +#undef TARGET_CC_MODES_COMPATIBLE +#define TARGET_CC_MODES_COMPATIBLE s390_cc_modes_compatible + struct gcc_target targetm = TARGET_INITIALIZER; extern int reload_completed; @@ -8338,6 +8344,40 @@ s390_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2) return true; } +/* If two condition code modes are compatible, return a condition code + mode which is compatible with both. Otherwise, return + VOIDmode. */ + +static enum machine_mode +s390_cc_modes_compatible (enum machine_mode m1, enum machine_mode m2) +{ + if (m1 == m2) + return m1; + + switch (m1) + { + case CCZmode: + if (m2 == CCUmode || m2 == CCTmode + || m2 == CCSmode || m2 == CCSRmode || m2 == CCURmode) + return m2; + return VOIDmode; + + case CCSmode: + case CCUmode: + case CCTmode: + case CCSRmode: + case CCURmode: + if (m2 == CCZmode) + return m1; + + return VOIDmode; + + default: + return VOIDmode; + } + return VOIDmode; +} + /* This function is used by the call expanders of the machine description. It emits the call insn itself together with the necessary operations to adjust the target address and returns the emitted insn. -- 2.30.2