+2015-09-15 Alan Lawrence <alan.lawrence@arm.com>
+
+ * config/aarch64/aarch64-simd.md (vec_store_lanesoi_lane<mode>): Rename
+ to...
+ (aarch64_vec_store_lanesoi_lane<mode>): ...this.
+
+ (vec_store_lanesci_lane<mode>): Rename to...
+ (aarch64_vec_store_lanesci_lane<mode>): ...this.
+
+ (vec_store_lanesxi_lane<mode>): Rename to...
+ (aarch64_vec_store_lanesxi_lane<mode>): ...this.
+
+ (aarch64_st2_lane<mode>, aarch64_st3_lane<mode>,
+ aarch64_st4_lane<mode>): Follow renaming.
+
2015-09-15 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/s390/s390.c (s390_const_operand_ok): Add missing
)
;; RTL uses GCC vector extension indices, so flip only for assembly.
-(define_insn "vec_store_lanesoi_lane<mode>"
+(define_insn "aarch64_vec_store_lanesoi_lane<mode>"
[(set (match_operand:<V_TWO_ELEM> 0 "aarch64_simd_struct_operand" "=Utv")
(unspec:<V_TWO_ELEM> [(match_operand:OI 1 "register_operand" "w")
(unspec:VALLDIF [(const_int 0)] UNSPEC_VSTRUCTDUMMY)
)
;; RTL uses GCC vector extension indices, so flip only for assembly.
-(define_insn "vec_store_lanesci_lane<mode>"
+(define_insn "aarch64_vec_store_lanesci_lane<mode>"
[(set (match_operand:<V_THREE_ELEM> 0 "aarch64_simd_struct_operand" "=Utv")
(unspec:<V_THREE_ELEM> [(match_operand:CI 1 "register_operand" "w")
(unspec:VALLDIF [(const_int 0)] UNSPEC_VSTRUCTDUMMY)
)
;; RTL uses GCC vector extension indices, so flip only for assembly.
-(define_insn "vec_store_lanesxi_lane<mode>"
+(define_insn "aarch64_vec_store_lanesxi_lane<mode>"
[(set (match_operand:<V_FOUR_ELEM> 0 "aarch64_simd_struct_operand" "=Utv")
(unspec:<V_FOUR_ELEM> [(match_operand:XI 1 "register_operand" "w")
(unspec:VALLDIF [(const_int 0)] UNSPEC_VSTRUCTDUMMY)
machine_mode mode = <V_TWO_ELEM>mode;
rtx mem = gen_rtx_MEM (mode, operands[0]);
- emit_insn (gen_vec_store_lanesoi_lane<mode> (mem, operands[1], operands[2]));
+ emit_insn (gen_aarch64_vec_store_lanesoi_lane<mode> (mem,
+ operands[1],
+ operands[2]));
DONE;
})
machine_mode mode = <V_THREE_ELEM>mode;
rtx mem = gen_rtx_MEM (mode, operands[0]);
- emit_insn (gen_vec_store_lanesci_lane<mode> (mem, operands[1], operands[2]));
+ emit_insn (gen_aarch64_vec_store_lanesci_lane<mode> (mem,
+ operands[1],
+ operands[2]));
DONE;
})
machine_mode mode = <V_FOUR_ELEM>mode;
rtx mem = gen_rtx_MEM (mode, operands[0]);
- emit_insn (gen_vec_store_lanesxi_lane<mode> (mem, operands[1], operands[2]));
+ emit_insn (gen_aarch64_vec_store_lanesxi_lane<mode> (mem,
+ operands[1],
+ operands[2]));
DONE;
})