OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [config/] [i386/] [sync.md] - Diff between revs 709 and 783

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 709 Rev 783
;; GCC machine description for i386 synchronization instructions.
;; GCC machine description for i386 synchronization instructions.
;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
;; Free Software Foundation, Inc.
;; Free Software Foundation, Inc.
;;
;;
;; This file is part of GCC.
;; This file is part of GCC.
;;
;;
;; GCC is free software; you can redistribute it and/or modify
;; GCC is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; any later version.
;;
;;
;; GCC is distributed in the hope that it will be useful,
;; GCC is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;; GNU General Public License for more details.
;;
;;
;; You should have received a copy of the GNU General Public License
;; You should have received a copy of the GNU General Public License
;; along with GCC; see the file COPYING3.  If not see
;; along with GCC; see the file COPYING3.  If not see
;; .
;; .
(define_c_enum "unspec" [
(define_c_enum "unspec" [
  UNSPEC_LFENCE
  UNSPEC_LFENCE
  UNSPEC_SFENCE
  UNSPEC_SFENCE
  UNSPEC_MFENCE
  UNSPEC_MFENCE
  UNSPEC_MOVA   ; For __atomic support
  UNSPEC_MOVA   ; For __atomic support
  UNSPEC_LDA
  UNSPEC_LDA
  UNSPEC_STA
  UNSPEC_STA
])
])
(define_c_enum "unspecv" [
(define_c_enum "unspecv" [
  UNSPECV_CMPXCHG_1
  UNSPECV_CMPXCHG_1
  UNSPECV_CMPXCHG_2
  UNSPECV_CMPXCHG_2
  UNSPECV_CMPXCHG_3
  UNSPECV_CMPXCHG_3
  UNSPECV_CMPXCHG_4
  UNSPECV_CMPXCHG_4
  UNSPECV_XCHG
  UNSPECV_XCHG
  UNSPECV_LOCK
  UNSPECV_LOCK
])
])
(define_expand "sse2_lfence"
(define_expand "sse2_lfence"
  [(set (match_dup 0)
  [(set (match_dup 0)
        (unspec:BLK [(match_dup 0)] UNSPEC_LFENCE))]
        (unspec:BLK [(match_dup 0)] UNSPEC_LFENCE))]
  "TARGET_SSE2"
  "TARGET_SSE2"
{
{
  operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
  operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
  MEM_VOLATILE_P (operands[0]) = 1;
  MEM_VOLATILE_P (operands[0]) = 1;
})
})
(define_insn "*sse2_lfence"
(define_insn "*sse2_lfence"
  [(set (match_operand:BLK 0 "" "")
  [(set (match_operand:BLK 0 "" "")
        (unspec:BLK [(match_dup 0)] UNSPEC_LFENCE))]
        (unspec:BLK [(match_dup 0)] UNSPEC_LFENCE))]
  "TARGET_SSE2"
  "TARGET_SSE2"
  "lfence"
  "lfence"
  [(set_attr "type" "sse")
  [(set_attr "type" "sse")
   (set_attr "length_address" "0")
   (set_attr "length_address" "0")
   (set_attr "atom_sse_attr" "lfence")
   (set_attr "atom_sse_attr" "lfence")
   (set_attr "memory" "unknown")])
   (set_attr "memory" "unknown")])
(define_expand "sse_sfence"
(define_expand "sse_sfence"
  [(set (match_dup 0)
  [(set (match_dup 0)
        (unspec:BLK [(match_dup 0)] UNSPEC_SFENCE))]
        (unspec:BLK [(match_dup 0)] UNSPEC_SFENCE))]
  "TARGET_SSE || TARGET_3DNOW_A"
  "TARGET_SSE || TARGET_3DNOW_A"
{
{
  operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
  operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
  MEM_VOLATILE_P (operands[0]) = 1;
  MEM_VOLATILE_P (operands[0]) = 1;
})
})
(define_insn "*sse_sfence"
(define_insn "*sse_sfence"
  [(set (match_operand:BLK 0 "" "")
  [(set (match_operand:BLK 0 "" "")
        (unspec:BLK [(match_dup 0)] UNSPEC_SFENCE))]
        (unspec:BLK [(match_dup 0)] UNSPEC_SFENCE))]
  "TARGET_SSE || TARGET_3DNOW_A"
  "TARGET_SSE || TARGET_3DNOW_A"
  "sfence"
  "sfence"
  [(set_attr "type" "sse")
  [(set_attr "type" "sse")
   (set_attr "length_address" "0")
   (set_attr "length_address" "0")
   (set_attr "atom_sse_attr" "fence")
   (set_attr "atom_sse_attr" "fence")
   (set_attr "memory" "unknown")])
   (set_attr "memory" "unknown")])
(define_expand "sse2_mfence"
(define_expand "sse2_mfence"
  [(set (match_dup 0)
  [(set (match_dup 0)
        (unspec:BLK [(match_dup 0)] UNSPEC_MFENCE))]
        (unspec:BLK [(match_dup 0)] UNSPEC_MFENCE))]
  "TARGET_SSE2"
  "TARGET_SSE2"
{
{
  operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
  operands[0] = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
  MEM_VOLATILE_P (operands[0]) = 1;
  MEM_VOLATILE_P (operands[0]) = 1;
})
})
(define_insn "mfence_sse2"
(define_insn "mfence_sse2"
  [(set (match_operand:BLK 0 "" "")
  [(set (match_operand:BLK 0 "" "")
        (unspec:BLK [(match_dup 0)] UNSPEC_MFENCE))]
        (unspec:BLK [(match_dup 0)] UNSPEC_MFENCE))]
  "TARGET_64BIT || TARGET_SSE2"
  "TARGET_64BIT || TARGET_SSE2"
  "mfence"
  "mfence"
  [(set_attr "type" "sse")
  [(set_attr "type" "sse")
   (set_attr "length_address" "0")
   (set_attr "length_address" "0")
   (set_attr "atom_sse_attr" "fence")
   (set_attr "atom_sse_attr" "fence")
   (set_attr "memory" "unknown")])
   (set_attr "memory" "unknown")])
(define_insn "mfence_nosse"
(define_insn "mfence_nosse"
  [(set (match_operand:BLK 0 "" "")
  [(set (match_operand:BLK 0 "" "")
        (unspec:BLK [(match_dup 0)] UNSPEC_MFENCE))
        (unspec:BLK [(match_dup 0)] UNSPEC_MFENCE))
   (clobber (reg:CC FLAGS_REG))]
   (clobber (reg:CC FLAGS_REG))]
  "!(TARGET_64BIT || TARGET_SSE2)"
  "!(TARGET_64BIT || TARGET_SSE2)"
  "lock{%;} or{l}\t{$0, (%%esp)|DWORD PTR [esp], 0}"
  "lock{%;} or{l}\t{$0, (%%esp)|DWORD PTR [esp], 0}"
  [(set_attr "memory" "unknown")])
  [(set_attr "memory" "unknown")])
(define_expand "mem_thread_fence"
(define_expand "mem_thread_fence"
  [(match_operand:SI 0 "const_int_operand" "")]         ;; model
  [(match_operand:SI 0 "const_int_operand" "")]         ;; model
  ""
  ""
{
{
  /* Unless this is a SEQ_CST fence, the i386 memory model is strong
  /* Unless this is a SEQ_CST fence, the i386 memory model is strong
     enough not to require barriers of any kind.  */
     enough not to require barriers of any kind.  */
  if (INTVAL (operands[0]) == MEMMODEL_SEQ_CST)
  if (INTVAL (operands[0]) == MEMMODEL_SEQ_CST)
    {
    {
      rtx (*mfence_insn)(rtx);
      rtx (*mfence_insn)(rtx);
      rtx mem;
      rtx mem;
      if (TARGET_64BIT || TARGET_SSE2)
      if (TARGET_64BIT || TARGET_SSE2)
        mfence_insn = gen_mfence_sse2;
        mfence_insn = gen_mfence_sse2;
      else
      else
        mfence_insn = gen_mfence_nosse;
        mfence_insn = gen_mfence_nosse;
      mem = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
      mem = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (Pmode));
      MEM_VOLATILE_P (mem) = 1;
      MEM_VOLATILE_P (mem) = 1;
      emit_insn (mfence_insn (mem));
      emit_insn (mfence_insn (mem));
    }
    }
  DONE;
  DONE;
})
})
;; ??? From volume 3 section 8.1.1 Guaranteed Atomic Operations,
;; ??? From volume 3 section 8.1.1 Guaranteed Atomic Operations,
;; Only beginning at Pentium family processors do we get any guarantee of
;; Only beginning at Pentium family processors do we get any guarantee of
;; atomicity in aligned 64-bit quantities.  Beginning at P6, we get a
;; atomicity in aligned 64-bit quantities.  Beginning at P6, we get a
;; guarantee for 64-bit accesses that do not cross a cacheline boundary.
;; guarantee for 64-bit accesses that do not cross a cacheline boundary.
;;
;;
;; Note that the TARGET_CMPXCHG8B test below is a stand-in for "Pentium".
;; Note that the TARGET_CMPXCHG8B test below is a stand-in for "Pentium".
;;
;;
;; Importantly, *no* processor makes atomicity guarantees for larger
;; Importantly, *no* processor makes atomicity guarantees for larger
;; accesses.  In particular, there's no way to perform an atomic TImode
;; accesses.  In particular, there's no way to perform an atomic TImode
;; move, despite the apparent applicability of MOVDQA et al.
;; move, despite the apparent applicability of MOVDQA et al.
(define_mode_iterator ATOMIC
(define_mode_iterator ATOMIC
   [QI HI SI
   [QI HI SI
    (DI "TARGET_64BIT || (TARGET_CMPXCHG8B && (TARGET_80387 || TARGET_SSE))")
    (DI "TARGET_64BIT || (TARGET_CMPXCHG8B && (TARGET_80387 || TARGET_SSE))")
   ])
   ])
(define_expand "atomic_load"
(define_expand "atomic_load"
  [(set (match_operand:ATOMIC 0 "register_operand" "")
  [(set (match_operand:ATOMIC 0 "register_operand" "")
        (unspec:ATOMIC [(match_operand:ATOMIC 1 "memory_operand" "")
        (unspec:ATOMIC [(match_operand:ATOMIC 1 "memory_operand" "")
                        (match_operand:SI 2 "const_int_operand" "")]
                        (match_operand:SI 2 "const_int_operand" "")]
                       UNSPEC_MOVA))]
                       UNSPEC_MOVA))]
  ""
  ""
{
{
  /* For DImode on 32-bit, we can use the FPU to perform the load.  */
  /* For DImode on 32-bit, we can use the FPU to perform the load.  */
  if (mode == DImode && !TARGET_64BIT)
  if (mode == DImode && !TARGET_64BIT)
    emit_insn (gen_atomic_loaddi_fpu
    emit_insn (gen_atomic_loaddi_fpu
               (operands[0], operands[1],
               (operands[0], operands[1],
                assign_386_stack_local (DImode,
                assign_386_stack_local (DImode,
                                        (virtuals_instantiated
                                        (virtuals_instantiated
                                         ? SLOT_TEMP : SLOT_VIRTUAL))));
                                         ? SLOT_TEMP : SLOT_VIRTUAL))));
  else
  else
    emit_move_insn (operands[0], operands[1]);
    emit_move_insn (operands[0], operands[1]);
  DONE;
  DONE;
})
})
(define_insn_and_split "atomic_loaddi_fpu"
(define_insn_and_split "atomic_loaddi_fpu"
  [(set (match_operand:DI 0 "nonimmediate_operand" "=x,m,?r")
  [(set (match_operand:DI 0 "nonimmediate_operand" "=x,m,?r")
        (unspec:DI [(match_operand:DI 1 "memory_operand" "m,m,m")]
        (unspec:DI [(match_operand:DI 1 "memory_operand" "m,m,m")]
                   UNSPEC_MOVA))
                   UNSPEC_MOVA))
   (clobber (match_operand:DI 2 "memory_operand" "=X,X,m"))
   (clobber (match_operand:DI 2 "memory_operand" "=X,X,m"))
   (clobber (match_scratch:DF 3 "=X,xf,xf"))]
   (clobber (match_scratch:DF 3 "=X,xf,xf"))]
  "!TARGET_64BIT && (TARGET_80387 || TARGET_SSE)"
  "!TARGET_64BIT && (TARGET_80387 || TARGET_SSE)"
  "#"
  "#"
  "&& reload_completed"
  "&& reload_completed"
  [(const_int 0)]
  [(const_int 0)]
{
{
  rtx dst = operands[0], src = operands[1];
  rtx dst = operands[0], src = operands[1];
  rtx mem = operands[2], tmp = operands[3];
  rtx mem = operands[2], tmp = operands[3];
  if (SSE_REG_P (dst))
  if (SSE_REG_P (dst))
    emit_move_insn (dst, src);
    emit_move_insn (dst, src);
  else
  else
    {
    {
      if (MEM_P (dst))
      if (MEM_P (dst))
        mem = dst;
        mem = dst;
      if (FP_REG_P (tmp))
      if (FP_REG_P (tmp))
        {
        {
          emit_insn (gen_loaddi_via_fpu (tmp, src));
          emit_insn (gen_loaddi_via_fpu (tmp, src));
          emit_insn (gen_storedi_via_fpu (mem, tmp));
          emit_insn (gen_storedi_via_fpu (mem, tmp));
        }
        }
      else
      else
        {
        {
          adjust_reg_mode (tmp, DImode);
          adjust_reg_mode (tmp, DImode);
          emit_move_insn (tmp, src);
          emit_move_insn (tmp, src);
          emit_move_insn (mem, tmp);
          emit_move_insn (mem, tmp);
        }
        }
      if (mem != dst)
      if (mem != dst)
        emit_move_insn (dst, mem);
        emit_move_insn (dst, mem);
    }
    }
  DONE;
  DONE;
})
})
(define_expand "atomic_store"
(define_expand "atomic_store"
  [(set (match_operand:ATOMIC 0 "memory_operand" "")
  [(set (match_operand:ATOMIC 0 "memory_operand" "")
        (unspec:ATOMIC [(match_operand:ATOMIC 1 "register_operand" "")
        (unspec:ATOMIC [(match_operand:ATOMIC 1 "register_operand" "")
                        (match_operand:SI 2 "const_int_operand" "")]
                        (match_operand:SI 2 "const_int_operand" "")]
                       UNSPEC_MOVA))]
                       UNSPEC_MOVA))]
  ""
  ""
{
{
  enum memmodel model = (enum memmodel) INTVAL (operands[2]);
  enum memmodel model = (enum memmodel) INTVAL (operands[2]);
  if (mode == DImode && !TARGET_64BIT)
  if (mode == DImode && !TARGET_64BIT)
    {
    {
      /* For DImode on 32-bit, we can use the FPU to perform the store.  */
      /* For DImode on 32-bit, we can use the FPU to perform the store.  */
      /* Note that while we could perform a cmpxchg8b loop, that turns
      /* Note that while we could perform a cmpxchg8b loop, that turns
         out to be significantly larger than this plus a barrier.  */
         out to be significantly larger than this plus a barrier.  */
      emit_insn (gen_atomic_storedi_fpu
      emit_insn (gen_atomic_storedi_fpu
                 (operands[0], operands[1],
                 (operands[0], operands[1],
                  assign_386_stack_local (DImode,
                  assign_386_stack_local (DImode,
                                          (virtuals_instantiated
                                          (virtuals_instantiated
                                           ? SLOT_TEMP : SLOT_VIRTUAL))));
                                           ? SLOT_TEMP : SLOT_VIRTUAL))));
    }
    }
  else
  else
    {
    {
      /* For seq-cst stores, when we lack MFENCE, use XCHG.  */
      /* For seq-cst stores, when we lack MFENCE, use XCHG.  */
      if (model == MEMMODEL_SEQ_CST && !(TARGET_64BIT || TARGET_SSE2))
      if (model == MEMMODEL_SEQ_CST && !(TARGET_64BIT || TARGET_SSE2))
        {
        {
          emit_insn (gen_atomic_exchange (gen_reg_rtx (mode),
          emit_insn (gen_atomic_exchange (gen_reg_rtx (mode),
                                                operands[0], operands[1],
                                                operands[0], operands[1],
                                                operands[2]));
                                                operands[2]));
          DONE;
          DONE;
        }
        }
      /* Otherwise use a normal store.  */
      /* Otherwise use a normal store.  */
      emit_move_insn (operands[0], operands[1]);
      emit_move_insn (operands[0], operands[1]);
    }
    }
  /* ... followed by an MFENCE, if required.  */
  /* ... followed by an MFENCE, if required.  */
  if (model == MEMMODEL_SEQ_CST)
  if (model == MEMMODEL_SEQ_CST)
    emit_insn (gen_mem_thread_fence (operands[2]));
    emit_insn (gen_mem_thread_fence (operands[2]));
  DONE;
  DONE;
})
})
(define_insn_and_split "atomic_storedi_fpu"
(define_insn_and_split "atomic_storedi_fpu"
  [(set (match_operand:DI 0 "memory_operand" "=m,m,m")
  [(set (match_operand:DI 0 "memory_operand" "=m,m,m")
        (unspec:DI [(match_operand:DI 1 "register_operand" "x,m,?r")]
        (unspec:DI [(match_operand:DI 1 "register_operand" "x,m,?r")]
                   UNSPEC_MOVA))
                   UNSPEC_MOVA))
   (clobber (match_operand:DI 2 "memory_operand" "=X,X,m"))
   (clobber (match_operand:DI 2 "memory_operand" "=X,X,m"))
   (clobber (match_scratch:DF 3 "=X,xf,xf"))]
   (clobber (match_scratch:DF 3 "=X,xf,xf"))]
  "!TARGET_64BIT && (TARGET_80387 || TARGET_SSE)"
  "!TARGET_64BIT && (TARGET_80387 || TARGET_SSE)"
  "#"
  "#"
  "&& reload_completed"
  "&& reload_completed"
  [(const_int 0)]
  [(const_int 0)]
{
{
  rtx dst = operands[0], src = operands[1];
  rtx dst = operands[0], src = operands[1];
  rtx mem = operands[2], tmp = operands[3];
  rtx mem = operands[2], tmp = operands[3];
  if (!SSE_REG_P (src))
  if (!SSE_REG_P (src))
    {
    {
      if (REG_P (src))
      if (REG_P (src))
        {
        {
          emit_move_insn (mem, src);
          emit_move_insn (mem, src);
          src = mem;
          src = mem;
        }
        }
      if (FP_REG_P (tmp))
      if (FP_REG_P (tmp))
        {
        {
          emit_insn (gen_loaddi_via_fpu (tmp, src));
          emit_insn (gen_loaddi_via_fpu (tmp, src));
          emit_insn (gen_storedi_via_fpu (dst, tmp));
          emit_insn (gen_storedi_via_fpu (dst, tmp));
          DONE;
          DONE;
        }
        }
      else
      else
        {
        {
          adjust_reg_mode (tmp, DImode);
          adjust_reg_mode (tmp, DImode);
          emit_move_insn (tmp, mem);
          emit_move_insn (tmp, mem);
          src = tmp;
          src = tmp;
        }
        }
    }
    }
  emit_move_insn (dst, src);
  emit_move_insn (dst, src);
  DONE;
  DONE;
})
})
;; ??? You'd think that we'd be able to perform this via FLOAT + FIX_TRUNC
;; ??? You'd think that we'd be able to perform this via FLOAT + FIX_TRUNC
;; operations.  But the fix_trunc patterns want way more setup than we want
;; operations.  But the fix_trunc patterns want way more setup than we want
;; to provide.  Note that the scratch is DFmode instead of XFmode in order
;; to provide.  Note that the scratch is DFmode instead of XFmode in order
;; to make it easy to allocate a scratch in either SSE or FP_REGs above.
;; to make it easy to allocate a scratch in either SSE or FP_REGs above.
(define_insn "loaddi_via_fpu"
(define_insn "loaddi_via_fpu"
  [(set (match_operand:DF 0 "register_operand" "=f")
  [(set (match_operand:DF 0 "register_operand" "=f")
        (unspec:DF [(match_operand:DI 1 "memory_operand" "m")] UNSPEC_LDA))]
        (unspec:DF [(match_operand:DI 1 "memory_operand" "m")] UNSPEC_LDA))]
  "TARGET_80387"
  "TARGET_80387"
  "fild%Z1\t%1"
  "fild%Z1\t%1"
  [(set_attr "type" "fmov")
  [(set_attr "type" "fmov")
   (set_attr "mode" "DF")
   (set_attr "mode" "DF")
   (set_attr "fp_int_src" "true")])
   (set_attr "fp_int_src" "true")])
(define_insn "storedi_via_fpu"
(define_insn "storedi_via_fpu"
  [(set (match_operand:DI 0 "memory_operand" "=m")
  [(set (match_operand:DI 0 "memory_operand" "=m")
        (unspec:DI [(match_operand:DF 1 "register_operand" "f")] UNSPEC_STA))]
        (unspec:DI [(match_operand:DF 1 "register_operand" "f")] UNSPEC_STA))]
  "TARGET_80387"
  "TARGET_80387"
{
{
  gcc_assert (find_regno_note (insn, REG_DEAD, FIRST_STACK_REG) != NULL_RTX);
  gcc_assert (find_regno_note (insn, REG_DEAD, FIRST_STACK_REG) != NULL_RTX);
  return "fistp%Z0\t%0";
  return "fistp%Z0\t%0";
}
}
  [(set_attr "type" "fmov")
  [(set_attr "type" "fmov")
   (set_attr "mode" "DI")])
   (set_attr "mode" "DI")])
(define_expand "atomic_compare_and_swap"
(define_expand "atomic_compare_and_swap"
  [(match_operand:QI 0 "register_operand" "")           ;; bool success output
  [(match_operand:QI 0 "register_operand" "")           ;; bool success output
   (match_operand:SWI124 1 "register_operand" "")       ;; oldval output
   (match_operand:SWI124 1 "register_operand" "")       ;; oldval output
   (match_operand:SWI124 2 "memory_operand" "")         ;; memory
   (match_operand:SWI124 2 "memory_operand" "")         ;; memory
   (match_operand:SWI124 3 "register_operand" "")       ;; expected input
   (match_operand:SWI124 3 "register_operand" "")       ;; expected input
   (match_operand:SWI124 4 "register_operand" "")       ;; newval input
   (match_operand:SWI124 4 "register_operand" "")       ;; newval input
   (match_operand:SI 5 "const_int_operand" "")          ;; is_weak
   (match_operand:SI 5 "const_int_operand" "")          ;; is_weak
   (match_operand:SI 6 "const_int_operand" "")          ;; success model
   (match_operand:SI 6 "const_int_operand" "")          ;; success model
   (match_operand:SI 7 "const_int_operand" "")]         ;; failure model
   (match_operand:SI 7 "const_int_operand" "")]         ;; failure model
  "TARGET_CMPXCHG"
  "TARGET_CMPXCHG"
{
{
  emit_insn (gen_atomic_compare_and_swap_single
  emit_insn (gen_atomic_compare_and_swap_single
             (operands[1], operands[2], operands[3], operands[4]));
             (operands[1], operands[2], operands[3], operands[4]));
  ix86_expand_setcc (operands[0], EQ, gen_rtx_REG (CCZmode, FLAGS_REG),
  ix86_expand_setcc (operands[0], EQ, gen_rtx_REG (CCZmode, FLAGS_REG),
                     const0_rtx);
                     const0_rtx);
  DONE;
  DONE;
})
})
(define_mode_iterator CASMODE
(define_mode_iterator CASMODE
  [(DI "TARGET_64BIT || TARGET_CMPXCHG8B")
  [(DI "TARGET_64BIT || TARGET_CMPXCHG8B")
   (TI "TARGET_64BIT && TARGET_CMPXCHG16B")])
   (TI "TARGET_64BIT && TARGET_CMPXCHG16B")])
(define_mode_iterator DCASMODE
(define_mode_iterator DCASMODE
  [(DI "!TARGET_64BIT && TARGET_CMPXCHG8B && !flag_pic")
  [(DI "!TARGET_64BIT && TARGET_CMPXCHG8B && !flag_pic")
   (TI "TARGET_64BIT && TARGET_CMPXCHG16B")])
   (TI "TARGET_64BIT && TARGET_CMPXCHG16B")])
(define_mode_attr doublemodesuffix [(DI "8") (TI "16")])
(define_mode_attr doublemodesuffix [(DI "8") (TI "16")])
(define_mode_attr DCASHMODE [(DI "SI") (TI "DI")])
(define_mode_attr DCASHMODE [(DI "SI") (TI "DI")])
(define_expand "atomic_compare_and_swap"
(define_expand "atomic_compare_and_swap"
  [(match_operand:QI 0 "register_operand" "")           ;; bool success output
  [(match_operand:QI 0 "register_operand" "")           ;; bool success output
   (match_operand:CASMODE 1 "register_operand" "")      ;; oldval output
   (match_operand:CASMODE 1 "register_operand" "")      ;; oldval output
   (match_operand:CASMODE 2 "memory_operand" "")        ;; memory
   (match_operand:CASMODE 2 "memory_operand" "")        ;; memory
   (match_operand:CASMODE 3 "register_operand" "")      ;; expected input
   (match_operand:CASMODE 3 "register_operand" "")      ;; expected input
   (match_operand:CASMODE 4 "register_operand" "")      ;; newval input
   (match_operand:CASMODE 4 "register_operand" "")      ;; newval input
   (match_operand:SI 5 "const_int_operand" "")          ;; is_weak
   (match_operand:SI 5 "const_int_operand" "")          ;; is_weak
   (match_operand:SI 6 "const_int_operand" "")          ;; success model
   (match_operand:SI 6 "const_int_operand" "")          ;; success model
   (match_operand:SI 7 "const_int_operand" "")]         ;; failure model
   (match_operand:SI 7 "const_int_operand" "")]         ;; failure model
  "TARGET_CMPXCHG"
  "TARGET_CMPXCHG"
{
{
  if (mode == DImode && TARGET_64BIT)
  if (mode == DImode && TARGET_64BIT)
    {
    {
      emit_insn (gen_atomic_compare_and_swap_singledi
      emit_insn (gen_atomic_compare_and_swap_singledi
                 (operands[1], operands[2], operands[3], operands[4]));
                 (operands[1], operands[2], operands[3], operands[4]));
    }
    }
  else
  else
    {
    {
      enum machine_mode hmode = mode;
      enum machine_mode hmode = mode;
      rtx lo_o, lo_e, lo_n, hi_o, hi_e, hi_n, mem;
      rtx lo_o, lo_e, lo_n, hi_o, hi_e, hi_n, mem;
      lo_o = operands[1];
      lo_o = operands[1];
      mem  = operands[2];
      mem  = operands[2];
      lo_e = operands[3];
      lo_e = operands[3];
      lo_n = operands[4];
      lo_n = operands[4];
      hi_o = gen_highpart (hmode, lo_o);
      hi_o = gen_highpart (hmode, lo_o);
      hi_e = gen_highpart (hmode, lo_e);
      hi_e = gen_highpart (hmode, lo_e);
      hi_n = gen_highpart (hmode, lo_n);
      hi_n = gen_highpart (hmode, lo_n);
      lo_o = gen_lowpart (hmode, lo_o);
      lo_o = gen_lowpart (hmode, lo_o);
      lo_e = gen_lowpart (hmode, lo_e);
      lo_e = gen_lowpart (hmode, lo_e);
      lo_n = gen_lowpart (hmode, lo_n);
      lo_n = gen_lowpart (hmode, lo_n);
      if (mode == DImode
      if (mode == DImode
          && !TARGET_64BIT
          && !TARGET_64BIT
          && flag_pic
          && flag_pic
          && !cmpxchg8b_pic_memory_operand (mem, DImode))
          && !cmpxchg8b_pic_memory_operand (mem, DImode))
        mem = replace_equiv_address (mem, force_reg (Pmode, XEXP (mem, 0)));
        mem = replace_equiv_address (mem, force_reg (Pmode, XEXP (mem, 0)));
      emit_insn (gen_atomic_compare_and_swap_double
      emit_insn (gen_atomic_compare_and_swap_double
                 (lo_o, hi_o, mem, lo_e, hi_e, lo_n, hi_n));
                 (lo_o, hi_o, mem, lo_e, hi_e, lo_n, hi_n));
    }
    }
  ix86_expand_setcc (operands[0], EQ, gen_rtx_REG (CCZmode, FLAGS_REG),
  ix86_expand_setcc (operands[0], EQ, gen_rtx_REG (CCZmode, FLAGS_REG),
                     const0_rtx);
                     const0_rtx);
  DONE;
  DONE;
})
})
(define_insn "atomic_compare_and_swap_single"
(define_insn "atomic_compare_and_swap_single"
  [(set (match_operand:SWI 0 "register_operand" "=a")
  [(set (match_operand:SWI 0 "register_operand" "=a")
        (unspec_volatile:SWI
        (unspec_volatile:SWI
          [(match_operand:SWI 1 "memory_operand" "+m")
          [(match_operand:SWI 1 "memory_operand" "+m")
           (match_operand:SWI 2 "register_operand" "0")
           (match_operand:SWI 2 "register_operand" "0")
           (match_operand:SWI 3 "register_operand" "")]
           (match_operand:SWI 3 "register_operand" "")]
          UNSPECV_CMPXCHG_1))
          UNSPECV_CMPXCHG_1))
   (set (match_dup 1)
   (set (match_dup 1)
        (unspec_volatile:SWI [(const_int 0)] UNSPECV_CMPXCHG_2))
        (unspec_volatile:SWI [(const_int 0)] UNSPECV_CMPXCHG_2))
   (set (reg:CCZ FLAGS_REG)
   (set (reg:CCZ FLAGS_REG)
        (unspec_volatile:CCZ [(const_int 0)] UNSPECV_CMPXCHG_3))]
        (unspec_volatile:CCZ [(const_int 0)] UNSPECV_CMPXCHG_3))]
  "TARGET_CMPXCHG"
  "TARGET_CMPXCHG"
  "lock{%;} cmpxchg{}\t{%3, %1|%1, %3}")
  "lock{%;} cmpxchg{}\t{%3, %1|%1, %3}")
;; For double-word compare and swap, we are obliged to play tricks with
;; For double-word compare and swap, we are obliged to play tricks with
;; the input newval (op5:op6) because the Intel register numbering does
;; the input newval (op5:op6) because the Intel register numbering does
;; not match the gcc register numbering, so the pair must be CX:BX.
;; not match the gcc register numbering, so the pair must be CX:BX.
;; That said, in order to take advantage of possible lower-subreg opts,
;; That said, in order to take advantage of possible lower-subreg opts,
;; treat all of the integral operands in the same way.
;; treat all of the integral operands in the same way.
(define_insn "atomic_compare_and_swap_double"
(define_insn "atomic_compare_and_swap_double"
  [(set (match_operand: 0 "register_operand" "=a")
  [(set (match_operand: 0 "register_operand" "=a")
        (unspec_volatile:
        (unspec_volatile:
          [(match_operand:DCASMODE 2 "memory_operand" "+m")
          [(match_operand:DCASMODE 2 "memory_operand" "+m")
           (match_operand: 3 "register_operand" "0")
           (match_operand: 3 "register_operand" "0")
           (match_operand: 4 "register_operand" "1")
           (match_operand: 4 "register_operand" "1")
           (match_operand: 5 "register_operand" "b")
           (match_operand: 5 "register_operand" "b")
           (match_operand: 6 "register_operand" "c")]
           (match_operand: 6 "register_operand" "c")]
          UNSPECV_CMPXCHG_1))
          UNSPECV_CMPXCHG_1))
   (set (match_operand: 1 "register_operand" "=d")
   (set (match_operand: 1 "register_operand" "=d")
        (unspec_volatile: [(const_int 0)] UNSPECV_CMPXCHG_2))
        (unspec_volatile: [(const_int 0)] UNSPECV_CMPXCHG_2))
   (set (match_dup 2)
   (set (match_dup 2)
        (unspec_volatile:DCASMODE [(const_int 0)] UNSPECV_CMPXCHG_3))
        (unspec_volatile:DCASMODE [(const_int 0)] UNSPECV_CMPXCHG_3))
   (set (reg:CCZ FLAGS_REG)
   (set (reg:CCZ FLAGS_REG)
        (unspec_volatile:CCZ [(const_int 0)] UNSPECV_CMPXCHG_4))]
        (unspec_volatile:CCZ [(const_int 0)] UNSPECV_CMPXCHG_4))]
  ""
  ""
  "lock{%;} cmpxchgb\t%2")
  "lock{%;} cmpxchgb\t%2")
;; Theoretically we'd like to use constraint "r" (any reg) for op5,
;; Theoretically we'd like to use constraint "r" (any reg) for op5,
;; but that includes ecx.  If op5 and op6 are the same (like when
;; but that includes ecx.  If op5 and op6 are the same (like when
;; the input is -1LL) GCC might chose to allocate op5 to ecx, like
;; the input is -1LL) GCC might chose to allocate op5 to ecx, like
;; op6.  This breaks, as the xchg will move the PIC register contents
;; op6.  This breaks, as the xchg will move the PIC register contents
;; to %ecx then --> boom.  Operands 5 and 6 really need to be different
;; to %ecx then --> boom.  Operands 5 and 6 really need to be different
;; registers, which in this case means op5 must not be ecx.  Instead
;; registers, which in this case means op5 must not be ecx.  Instead
;; of playing tricks with fake early clobbers or the like we just
;; of playing tricks with fake early clobbers or the like we just
;; enumerate all regs possible here, which (as this is !TARGET_64BIT)
;; enumerate all regs possible here, which (as this is !TARGET_64BIT)
;; are just esi and edi.
;; are just esi and edi.
(define_insn "*atomic_compare_and_swap_doubledi_pic"
(define_insn "*atomic_compare_and_swap_doubledi_pic"
  [(set (match_operand:SI 0 "register_operand" "=a")
  [(set (match_operand:SI 0 "register_operand" "=a")
        (unspec_volatile:SI
        (unspec_volatile:SI
          [(match_operand:DI 2 "cmpxchg8b_pic_memory_operand" "+m")
          [(match_operand:DI 2 "cmpxchg8b_pic_memory_operand" "+m")
           (match_operand:SI 3 "register_operand" "0")
           (match_operand:SI 3 "register_operand" "0")
           (match_operand:SI 4 "register_operand" "1")
           (match_operand:SI 4 "register_operand" "1")
           (match_operand:SI 5 "register_operand" "SD")
           (match_operand:SI 5 "register_operand" "SD")
           (match_operand:SI 6 "register_operand" "c")]
           (match_operand:SI 6 "register_operand" "c")]
          UNSPECV_CMPXCHG_1))
          UNSPECV_CMPXCHG_1))
   (set (match_operand:SI 1 "register_operand" "=d")
   (set (match_operand:SI 1 "register_operand" "=d")
        (unspec_volatile:SI [(const_int 0)] UNSPECV_CMPXCHG_2))
        (unspec_volatile:SI [(const_int 0)] UNSPECV_CMPXCHG_2))
   (set (match_dup 2)
   (set (match_dup 2)
        (unspec_volatile:DI [(const_int 0)] UNSPECV_CMPXCHG_3))
        (unspec_volatile:DI [(const_int 0)] UNSPECV_CMPXCHG_3))
   (set (reg:CCZ FLAGS_REG)
   (set (reg:CCZ FLAGS_REG)
        (unspec_volatile:CCZ [(const_int 0)] UNSPECV_CMPXCHG_4))]
        (unspec_volatile:CCZ [(const_int 0)] UNSPECV_CMPXCHG_4))]
  "!TARGET_64BIT && TARGET_CMPXCHG8B && flag_pic"
  "!TARGET_64BIT && TARGET_CMPXCHG8B && flag_pic"
  "xchg{l}\t%%ebx, %5\;lock{%;} cmpxchg8b\t%2\;xchg{l}\t%%ebx, %5")
  "xchg{l}\t%%ebx, %5\;lock{%;} cmpxchg8b\t%2\;xchg{l}\t%%ebx, %5")
;; For operand 2 nonmemory_operand predicate is used instead of
;; For operand 2 nonmemory_operand predicate is used instead of
;; register_operand to allow combiner to better optimize atomic
;; register_operand to allow combiner to better optimize atomic
;; additions of constants.
;; additions of constants.
(define_insn "atomic_fetch_add"
(define_insn "atomic_fetch_add"
  [(set (match_operand:SWI 0 "register_operand" "=")
  [(set (match_operand:SWI 0 "register_operand" "=")
        (unspec_volatile:SWI
        (unspec_volatile:SWI
          [(match_operand:SWI 1 "memory_operand" "+m")
          [(match_operand:SWI 1 "memory_operand" "+m")
           (match_operand:SI 3 "const_int_operand" "")]         ;; model
           (match_operand:SI 3 "const_int_operand" "")]         ;; model
          UNSPECV_XCHG))
          UNSPECV_XCHG))
   (set (match_dup 1)
   (set (match_dup 1)
        (plus:SWI (match_dup 1)
        (plus:SWI (match_dup 1)
                  (match_operand:SWI 2 "nonmemory_operand" "0")))
                  (match_operand:SWI 2 "nonmemory_operand" "0")))
   (clobber (reg:CC FLAGS_REG))]
   (clobber (reg:CC FLAGS_REG))]
  "TARGET_XADD"
  "TARGET_XADD"
  "lock{%;} xadd{}\t{%0, %1|%1, %0}")
  "lock{%;} xadd{}\t{%0, %1|%1, %0}")
;; This peephole2 and following insn optimize
;; This peephole2 and following insn optimize
;; __sync_fetch_and_add (x, -N) == N into just lock {add,sub,inc,dec}
;; __sync_fetch_and_add (x, -N) == N into just lock {add,sub,inc,dec}
;; followed by testing of flags instead of lock xadd and comparisons.
;; followed by testing of flags instead of lock xadd and comparisons.
(define_peephole2
(define_peephole2
  [(set (match_operand:SWI 0 "register_operand" "")
  [(set (match_operand:SWI 0 "register_operand" "")
        (match_operand:SWI 2 "const_int_operand" ""))
        (match_operand:SWI 2 "const_int_operand" ""))
   (parallel [(set (match_dup 0)
   (parallel [(set (match_dup 0)
                   (unspec_volatile:SWI
                   (unspec_volatile:SWI
                     [(match_operand:SWI 1 "memory_operand" "")
                     [(match_operand:SWI 1 "memory_operand" "")
                      (match_operand:SI 4 "const_int_operand" "")]
                      (match_operand:SI 4 "const_int_operand" "")]
                     UNSPECV_XCHG))
                     UNSPECV_XCHG))
              (set (match_dup 1)
              (set (match_dup 1)
                   (plus:SWI (match_dup 1)
                   (plus:SWI (match_dup 1)
                             (match_dup 0)))
                             (match_dup 0)))
              (clobber (reg:CC FLAGS_REG))])
              (clobber (reg:CC FLAGS_REG))])
   (set (reg:CCZ FLAGS_REG)
   (set (reg:CCZ FLAGS_REG)
        (compare:CCZ (match_dup 0)
        (compare:CCZ (match_dup 0)
                     (match_operand:SWI 3 "const_int_operand" "")))]
                     (match_operand:SWI 3 "const_int_operand" "")))]
  "peep2_reg_dead_p (3, operands[0])
  "peep2_reg_dead_p (3, operands[0])
   && (unsigned HOST_WIDE_INT) INTVAL (operands[2])
   && (unsigned HOST_WIDE_INT) INTVAL (operands[2])
      == -(unsigned HOST_WIDE_INT) INTVAL (operands[3])
      == -(unsigned HOST_WIDE_INT) INTVAL (operands[3])
   && !reg_overlap_mentioned_p (operands[0], operands[1])"
   && !reg_overlap_mentioned_p (operands[0], operands[1])"
  [(parallel [(set (reg:CCZ FLAGS_REG)
  [(parallel [(set (reg:CCZ FLAGS_REG)
                   (compare:CCZ
                   (compare:CCZ
                     (unspec_volatile:SWI [(match_dup 1) (match_dup 4)]
                     (unspec_volatile:SWI [(match_dup 1) (match_dup 4)]
                                          UNSPECV_XCHG)
                                          UNSPECV_XCHG)
                     (match_dup 3)))
                     (match_dup 3)))
              (set (match_dup 1)
              (set (match_dup 1)
                   (plus:SWI (match_dup 1)
                   (plus:SWI (match_dup 1)
                             (match_dup 2)))])])
                             (match_dup 2)))])])
(define_insn "*atomic_fetch_add_cmp"
(define_insn "*atomic_fetch_add_cmp"
  [(set (reg:CCZ FLAGS_REG)
  [(set (reg:CCZ FLAGS_REG)
        (compare:CCZ (unspec_volatile:SWI
        (compare:CCZ (unspec_volatile:SWI
                       [(match_operand:SWI 0 "memory_operand" "+m")
                       [(match_operand:SWI 0 "memory_operand" "+m")
                        (match_operand:SI 3 "const_int_operand" "")]
                        (match_operand:SI 3 "const_int_operand" "")]
                       UNSPECV_XCHG)
                       UNSPECV_XCHG)
                     (match_operand:SWI 2 "const_int_operand" "i")))
                     (match_operand:SWI 2 "const_int_operand" "i")))
   (set (match_dup 0)
   (set (match_dup 0)
        (plus:SWI (match_dup 0)
        (plus:SWI (match_dup 0)
                  (match_operand:SWI 1 "const_int_operand" "i")))]
                  (match_operand:SWI 1 "const_int_operand" "i")))]
  "(unsigned HOST_WIDE_INT) INTVAL (operands[1])
  "(unsigned HOST_WIDE_INT) INTVAL (operands[1])
   == -(unsigned HOST_WIDE_INT) INTVAL (operands[2])"
   == -(unsigned HOST_WIDE_INT) INTVAL (operands[2])"
{
{
  if (TARGET_USE_INCDEC)
  if (TARGET_USE_INCDEC)
    {
    {
      if (operands[1] == const1_rtx)
      if (operands[1] == const1_rtx)
        return "lock{%;} inc{}\t%0";
        return "lock{%;} inc{}\t%0";
      if (operands[1] == constm1_rtx)
      if (operands[1] == constm1_rtx)
        return "lock{%;} dec{}\t%0";
        return "lock{%;} dec{}\t%0";
    }
    }
  if (x86_maybe_negate_const_int (&operands[1], mode))
  if (x86_maybe_negate_const_int (&operands[1], mode))
    return "lock{%;} sub{}\t{%1, %0|%0, %1}";
    return "lock{%;} sub{}\t{%1, %0|%0, %1}";
  return "lock{%;} add{}\t{%1, %0|%0, %1}";
  return "lock{%;} add{}\t{%1, %0|%0, %1}";
})
})
;; Recall that xchg implicitly sets LOCK#, so adding it again wastes space.
;; Recall that xchg implicitly sets LOCK#, so adding it again wastes space.
;; In addition, it is always a full barrier, so we can ignore the memory model.
;; In addition, it is always a full barrier, so we can ignore the memory model.
(define_insn "atomic_exchange"
(define_insn "atomic_exchange"
  [(set (match_operand:SWI 0 "register_operand" "=")            ;; output
  [(set (match_operand:SWI 0 "register_operand" "=")            ;; output
        (unspec_volatile:SWI
        (unspec_volatile:SWI
          [(match_operand:SWI 1 "memory_operand" "+m")          ;; memory
          [(match_operand:SWI 1 "memory_operand" "+m")          ;; memory
           (match_operand:SI 3 "const_int_operand" "")]         ;; model
           (match_operand:SI 3 "const_int_operand" "")]         ;; model
          UNSPECV_XCHG))
          UNSPECV_XCHG))
   (set (match_dup 1)
   (set (match_dup 1)
        (match_operand:SWI 2 "register_operand" "0"))]          ;; input
        (match_operand:SWI 2 "register_operand" "0"))]          ;; input
  ""
  ""
  "xchg{}\t{%1, %0|%0, %1}")
  "xchg{}\t{%1, %0|%0, %1}")
(define_insn "atomic_add"
(define_insn "atomic_add"
  [(set (match_operand:SWI 0 "memory_operand" "+m")
  [(set (match_operand:SWI 0 "memory_operand" "+m")
        (unspec_volatile:SWI
        (unspec_volatile:SWI
          [(plus:SWI (match_dup 0)
          [(plus:SWI (match_dup 0)
                     (match_operand:SWI 1 "nonmemory_operand" ""))
                     (match_operand:SWI 1 "nonmemory_operand" ""))
           (match_operand:SI 2 "const_int_operand" "")]         ;; model
           (match_operand:SI 2 "const_int_operand" "")]         ;; model
          UNSPECV_LOCK))
          UNSPECV_LOCK))
   (clobber (reg:CC FLAGS_REG))]
   (clobber (reg:CC FLAGS_REG))]
  ""
  ""
{
{
  if (TARGET_USE_INCDEC)
  if (TARGET_USE_INCDEC)
    {
    {
      if (operands[1] == const1_rtx)
      if (operands[1] == const1_rtx)
        return "lock{%;} inc{}\t%0";
        return "lock{%;} inc{}\t%0";
      if (operands[1] == constm1_rtx)
      if (operands[1] == constm1_rtx)
        return "lock{%;} dec{}\t%0";
        return "lock{%;} dec{}\t%0";
    }
    }
  if (x86_maybe_negate_const_int (&operands[1], mode))
  if (x86_maybe_negate_const_int (&operands[1], mode))
    return "lock{%;} sub{}\t{%1, %0|%0, %1}";
    return "lock{%;} sub{}\t{%1, %0|%0, %1}";
  return "lock{%;} add{}\t{%1, %0|%0, %1}";
  return "lock{%;} add{}\t{%1, %0|%0, %1}";
})
})
(define_insn "atomic_sub"
(define_insn "atomic_sub"
  [(set (match_operand:SWI 0 "memory_operand" "+m")
  [(set (match_operand:SWI 0 "memory_operand" "+m")
        (unspec_volatile:SWI
        (unspec_volatile:SWI
          [(minus:SWI (match_dup 0)
          [(minus:SWI (match_dup 0)
                      (match_operand:SWI 1 "nonmemory_operand" ""))
                      (match_operand:SWI 1 "nonmemory_operand" ""))
           (match_operand:SI 2 "const_int_operand" "")]         ;; model
           (match_operand:SI 2 "const_int_operand" "")]         ;; model
          UNSPECV_LOCK))
          UNSPECV_LOCK))
   (clobber (reg:CC FLAGS_REG))]
   (clobber (reg:CC FLAGS_REG))]
  ""
  ""
{
{
  if (TARGET_USE_INCDEC)
  if (TARGET_USE_INCDEC)
    {
    {
      if (operands[1] == const1_rtx)
      if (operands[1] == const1_rtx)
        return "lock{%;} dec{}\t%0";
        return "lock{%;} dec{}\t%0";
      if (operands[1] == constm1_rtx)
      if (operands[1] == constm1_rtx)
        return "lock{%;} inc{}\t%0";
        return "lock{%;} inc{}\t%0";
    }
    }
  if (x86_maybe_negate_const_int (&operands[1], mode))
  if (x86_maybe_negate_const_int (&operands[1], mode))
    return "lock{%;} add{}\t{%1, %0|%0, %1}";
    return "lock{%;} add{}\t{%1, %0|%0, %1}";
  return "lock{%;} sub{}\t{%1, %0|%0, %1}";
  return "lock{%;} sub{}\t{%1, %0|%0, %1}";
})
})
(define_insn "atomic_"
(define_insn "atomic_"
  [(set (match_operand:SWI 0 "memory_operand" "+m")
  [(set (match_operand:SWI 0 "memory_operand" "+m")
        (unspec_volatile:SWI
        (unspec_volatile:SWI
          [(any_logic:SWI (match_dup 0)
          [(any_logic:SWI (match_dup 0)
                          (match_operand:SWI 1 "nonmemory_operand" ""))
                          (match_operand:SWI 1 "nonmemory_operand" ""))
           (match_operand:SI 2 "const_int_operand" "")]         ;; model
           (match_operand:SI 2 "const_int_operand" "")]         ;; model
          UNSPECV_LOCK))
          UNSPECV_LOCK))
   (clobber (reg:CC FLAGS_REG))]
   (clobber (reg:CC FLAGS_REG))]
  ""
  ""
  "lock{%;} {}\t{%1, %0|%0, %1}")
  "lock{%;} {}\t{%1, %0|%0, %1}")
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.