OSDN Git Service

* config/i386/predicates.md (x86_64_movabs_operand): Reject
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 27 Jul 2011 16:16:42 +0000 (16:16 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 27 Jul 2011 16:16:42 +0000 (16:16 +0000)
pic32_bit_operand operands.
* config/i386/i386.c (ix86_expand_move): Check x86_64_movabs_operand
in DImode.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176833 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/config/i386/predicates.md

index 229473a..0c1508a 100644 (file)
@@ -1,3 +1,10 @@
+2011-07-27  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/i386/predicates.md (x86_64_movabs_operand): Reject
+       pic32_bit_operand operands.
+       * config/i386/i386.c (ix86_expand_move): Check x86_64_movabs_operand
+       in DImode.
+
 2011-07-27  Kai Tietz  <ktietz@redhat.com>
 
        * config/i386/i386.c (ix86_option_override_internal): Allow -mabi
        (optimize_bitfield_assignment_op): Add argument.
        Add argument to get_best_mode.
        (get_bit_range): New.
-       (expand_assignment): Calculate maxbits and pass it down
-       accordingly.
+       (expand_assignment): Calculate maxbits and pass it down accordingly.
        (store_field): New argument.
-       (expand_expr_real_2): New argument to store_field.
-       Include params.h.
+       (expand_expr_real_2): New argument to store_field.  Include params.h.
        * expr.h (store_bit_field): New argument.
        * stor-layout.c (get_best_mode): Restrict mode expansion by taking
        into account maxbits.
@@ -47,8 +52,7 @@
 
 2011-07-27  Jakub Jelinek  <jakub@redhat.com>
 
-       * dwarf2out.c (gen_producer_string): Ignore also -fverbose-asm
-       option.
+       * dwarf2out.c (gen_producer_string): Ignore also -fverbose-asm option.
 
 2011-07-27  Kai Tietz  <ktietz@redhat.com>
 
index 81c53cb..1728219 100644 (file)
@@ -15075,7 +15075,7 @@ ix86_expand_move (enum machine_mode mode, rtx operands[])
        {
          if (MEM_P (op0))
            op1 = force_reg (mode, op1);
-         else if (!TARGET_64BIT || !x86_64_movabs_operand (op1, mode))
+         else if (!(TARGET_64BIT && x86_64_movabs_operand (op1, DImode)))
            {
              rtx reg = can_create_pseudo_p () ? NULL_RTX : op0;
              op1 = legitimize_pic_address (op1, reg);
index 0515519..53988c2 100644 (file)
   return symbolic_operand (op, mode);
 })
 
-
 ;; Return true if OP is nonmemory operand acceptable by movabs patterns.
 (define_predicate "x86_64_movabs_operand"
-  (if_then_else (not (and (match_test "TARGET_64BIT")
-                         (match_test "flag_pic")))
-    (match_operand 0 "nonmemory_operand")
-    (ior (match_operand 0 "register_operand")
-        (and (match_operand 0 "const_double_operand")
-             (match_test "GET_MODE_SIZE (mode) <= 8")))))
+  (and (match_operand 0 "nonmemory_operand")
+       (not (match_operand 0 "pic_32bit_operand"))))
 
 ;; Return true if OP is either a symbol reference or a sum of a symbol
 ;; reference and a constant.