From: Bin Cheng Date: Wed, 23 Jan 2019 22:43:42 +0000 (+0000) Subject: re PR target/85711 (ICE in aarch64_classify_address, at config/aarch64/aarch64.c... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76ca8d0f4a9873953244792b20e5ca51f4a88c65;p=gcc.git re PR target/85711 (ICE in aarch64_classify_address, at config/aarch64/aarch64.c:5678) 2019-01-23 Bin Cheng Steve Ellcey PR target/85711 * recog.c (address_operand): Return false on wrong mode for address. (constrain_operands): Check for mode with 'p' constraint. Co-Authored-By: Steve Ellcey From-SVN: r268219 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5befc93d0ef..094bee46229 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2019-01-23 Bin Cheng + Steve Ellcey + + PR target/85711 + * recog.c (address_operand): Return false on wrong mode for address. + (constrain_operands): Check for mode with 'p' constraint. + 2019-01-23 Uroš Bizjak PR target/88998 diff --git a/gcc/recog.c b/gcc/recog.c index d0c498fced2..a9f584bc0dc 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -1070,6 +1070,11 @@ general_operand (rtx op, machine_mode mode) int address_operand (rtx op, machine_mode mode) { + /* Wrong mode for an address expr. */ + if (GET_MODE (op) != VOIDmode + && ! SCALAR_INT_MODE_P (GET_MODE (op))) + return false; + return memory_address_p (mode, op); } @@ -2696,10 +2701,13 @@ constrain_operands (int strict, alternative_mask alternatives) /* p is used for address_operands. When we are called by gen_reload, no one will have checked that the address is strictly valid, i.e., that all pseudos requiring hard regs - have gotten them. */ - if (strict <= 0 - || (strict_memory_address_p (recog_data.operand_mode[opno], - op))) + have gotten them. We also want to make sure we have a + valid mode. */ + if ((GET_MODE (op) == VOIDmode + || SCALAR_INT_MODE_P (GET_MODE (op))) + && (strict <= 0 + || (strict_memory_address_p + (recog_data.operand_mode[opno], op)))) win = 1; break;