URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [config/] [sparc/] [sync.md] - Rev 282
Compare with Previous | Blame | View Log
;; GCC machine description for SPARC synchronization instructions.;; Copyright (C) 2005, 2007, 2009;; Free Software Foundation, Inc.;;;; This file is part of GCC.;;;; GCC is free software; you can redistribute it and/or modify;; it under the terms of the GNU General Public License as published by;; the Free Software Foundation; either version 3, or (at your option);; any later version.;;;; GCC is distributed in the hope that it will be useful,;; but WITHOUT ANY WARRANTY; without even the implied warranty of;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the;; GNU General Public License for more details.;;;; You should have received a copy of the GNU General Public License;; along with GCC; see the file COPYING3. If not see;; <http://www.gnu.org/licenses/>.(define_mode_iterator I12MODE [QI HI])(define_mode_iterator I24MODE [HI SI])(define_mode_iterator I48MODE [SI (DI "TARGET_ARCH64 || TARGET_V8PLUS")])(define_mode_attr modesuffix [(SI "") (DI "x")])(define_expand "memory_barrier"[(set (match_dup 0)(unspec:BLK [(match_dup 0)] UNSPEC_MEMBAR))]"TARGET_V8 || TARGET_V9"{operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));MEM_VOLATILE_P (operands[0]) = 1;})(define_insn "*stbar"[(set (match_operand:BLK 0 "" "")(unspec:BLK [(match_dup 0)] UNSPEC_MEMBAR))]"TARGET_V8""stbar"[(set_attr "type" "multi")]);; membar #StoreStore | #LoadStore | #StoreLoad | #LoadLoad(define_insn "*membar"[(set (match_operand:BLK 0 "" "")(unspec:BLK [(match_dup 0)] UNSPEC_MEMBAR))]"TARGET_V9""membar\t15"[(set_attr "type" "multi")])(define_expand "sync_compare_and_swap<mode>"[(match_operand:I12MODE 0 "register_operand" "")(match_operand:I12MODE 1 "memory_operand" "")(match_operand:I12MODE 2 "register_operand" "")(match_operand:I12MODE 3 "register_operand" "")]"TARGET_V9"{sparc_expand_compare_and_swap_12 (operands[0], operands[1],operands[2], operands[3]);DONE;})(define_expand "sync_compare_and_swap<mode>"[(parallel[(set (match_operand:I48MODE 0 "register_operand" "=r")(match_operand:I48MODE 1 "memory_operand" ""))(set (match_dup 1)(unspec_volatile:I48MODE[(match_operand:I48MODE 2 "register_operand" "")(match_operand:I48MODE 3 "register_operand" "")]UNSPECV_CAS))])]"TARGET_V9"{if (! REG_P (XEXP (operands[1], 0))){rtx addr = force_reg (Pmode, XEXP (operands[1], 0));operands[1] = replace_equiv_address (operands[1], addr);}emit_insn (gen_memory_barrier ());})(define_insn "*sync_compare_and_swap<mode>"[(set (match_operand:I48MODE 0 "register_operand" "=r")(match_operand:I48MODE 1 "memory_reg_operand" "+m"))(set (match_dup 1)(unspec_volatile:I48MODE[(match_operand:I48MODE 2 "register_operand" "r")(match_operand:I48MODE 3 "register_operand" "0")]UNSPECV_CAS))]"TARGET_V9 && (<MODE>mode == SImode || TARGET_ARCH64)""cas<modesuffix>\t%1, %2, %0"[(set_attr "type" "multi")])(define_insn "*sync_compare_and_swapdi_v8plus"[(set (match_operand:DI 0 "register_operand" "=h")(match_operand:DI 1 "memory_reg_operand" "+m"))(set (match_dup 1)(unspec_volatile:DI[(match_operand:DI 2 "register_operand" "h")(match_operand:DI 3 "register_operand" "0")]UNSPECV_CAS))]"TARGET_V8PLUS"{if (sparc_check_64 (operands[3], insn) <= 0)output_asm_insn ("srl\t%L3, 0, %L3", operands);output_asm_insn ("sllx\t%H3, 32, %H3", operands);output_asm_insn ("or\t%L3, %H3, %L3", operands);if (sparc_check_64 (operands[2], insn) <= 0)output_asm_insn ("srl\t%L2, 0, %L2", operands);output_asm_insn ("sllx\t%H2, 32, %H3", operands);output_asm_insn ("or\t%L2, %H3, %H3", operands);output_asm_insn ("casx\t%1, %H3, %L3", operands);return "srlx\t%L3, 32, %H3";}[(set_attr "type" "multi")(set_attr "length" "8")])(define_expand "sync_lock_test_and_set<mode>"[(match_operand:I12MODE 0 "register_operand" "")(match_operand:I12MODE 1 "memory_operand" "")(match_operand:I12MODE 2 "arith_operand" "")]"!TARGET_V9"{if (operands[2] != const1_rtx)FAIL;if (TARGET_V8)emit_insn (gen_memory_barrier ());if (<MODE>mode != QImode)operands[1] = adjust_address (operands[1], QImode, 0);emit_insn (gen_ldstub<mode> (operands[0], operands[1]));DONE;})(define_expand "sync_lock_test_and_setsi"[(parallel[(set (match_operand:SI 0 "register_operand" "")(unspec_volatile:SI [(match_operand:SI 1 "memory_operand" "")]UNSPECV_SWAP))(set (match_dup 1)(match_operand:SI 2 "arith_operand" ""))])]""{if (! TARGET_V8 && ! TARGET_V9){if (operands[2] != const1_rtx)FAIL;operands[1] = adjust_address (operands[1], QImode, 0);emit_insn (gen_ldstubsi (operands[0], operands[1]));DONE;}emit_insn (gen_memory_barrier ());operands[2] = force_reg (SImode, operands[2]);})(define_insn "*swapsi"[(set (match_operand:SI 0 "register_operand" "=r")(unspec_volatile:SI [(match_operand:SI 1 "memory_operand" "+m")]UNSPECV_SWAP))(set (match_dup 1)(match_operand:SI 2 "register_operand" "0"))]"TARGET_V8 || TARGET_V9""swap\t%1, %0"[(set_attr "type" "multi")])(define_expand "ldstubqi"[(parallel [(set (match_operand:QI 0 "register_operand" "")(unspec_volatile:QI [(match_operand:QI 1 "memory_operand" "")]UNSPECV_LDSTUB))(set (match_dup 1) (const_int -1))])]"""")(define_expand "ldstub<mode>"[(parallel [(set (match_operand:I24MODE 0 "register_operand" "")(zero_extend:I24MODE(unspec_volatile:QI [(match_operand:QI 1 "memory_operand" "")]UNSPECV_LDSTUB)))(set (match_dup 1) (const_int -1))])]"""")(define_insn "*ldstubqi"[(set (match_operand:QI 0 "register_operand" "=r")(unspec_volatile:QI [(match_operand:QI 1 "memory_operand" "+m")]UNSPECV_LDSTUB))(set (match_dup 1) (const_int -1))]"""ldstub\t%1, %0"[(set_attr "type" "multi")])(define_insn "*ldstub<mode>"[(set (match_operand:I24MODE 0 "register_operand" "=r")(zero_extend:I24MODE(unspec_volatile:QI [(match_operand:QI 1 "memory_operand" "+m")]UNSPECV_LDSTUB)))(set (match_dup 1) (const_int -1))]"""ldstub\t%1, %0"[(set_attr "type" "multi")])
