OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [config/] [mips/] [predicates.md] - Diff between revs 282 and 384

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

Rev 282 Rev 384
;; Predicate definitions for MIPS.
;; Predicate definitions for MIPS.
;; Copyright (C) 2004, 2007, 2008 Free Software Foundation, Inc.
;; Copyright (C) 2004, 2007, 2008 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_predicate "const_uns_arith_operand"
(define_predicate "const_uns_arith_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "SMALL_OPERAND_UNSIGNED (INTVAL (op))")))
       (match_test "SMALL_OPERAND_UNSIGNED (INTVAL (op))")))
(define_predicate "uns_arith_operand"
(define_predicate "uns_arith_operand"
  (ior (match_operand 0 "const_uns_arith_operand")
  (ior (match_operand 0 "const_uns_arith_operand")
       (match_operand 0 "register_operand")))
       (match_operand 0 "register_operand")))
(define_predicate "const_arith_operand"
(define_predicate "const_arith_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "SMALL_OPERAND (INTVAL (op))")))
       (match_test "SMALL_OPERAND (INTVAL (op))")))
(define_predicate "arith_operand"
(define_predicate "arith_operand"
  (ior (match_operand 0 "const_arith_operand")
  (ior (match_operand 0 "const_arith_operand")
       (match_operand 0 "register_operand")))
       (match_operand 0 "register_operand")))
(define_predicate "const_uimm6_operand"
(define_predicate "const_uimm6_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "UIMM6_OPERAND (INTVAL (op))")))
       (match_test "UIMM6_OPERAND (INTVAL (op))")))
(define_predicate "const_imm10_operand"
(define_predicate "const_imm10_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "IMM10_OPERAND (INTVAL (op))")))
       (match_test "IMM10_OPERAND (INTVAL (op))")))
(define_predicate "reg_imm10_operand"
(define_predicate "reg_imm10_operand"
  (ior (match_operand 0 "const_imm10_operand")
  (ior (match_operand 0 "const_imm10_operand")
       (match_operand 0 "register_operand")))
       (match_operand 0 "register_operand")))
(define_predicate "sle_operand"
(define_predicate "sle_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "SMALL_OPERAND (INTVAL (op) + 1)")))
       (match_test "SMALL_OPERAND (INTVAL (op) + 1)")))
(define_predicate "sleu_operand"
(define_predicate "sleu_operand"
  (and (match_operand 0 "sle_operand")
  (and (match_operand 0 "sle_operand")
       (match_test "INTVAL (op) + 1 != 0")))
       (match_test "INTVAL (op) + 1 != 0")))
(define_predicate "const_0_operand"
(define_predicate "const_0_operand"
  (and (match_code "const_int,const_double,const_vector")
  (and (match_code "const_int,const_double,const_vector")
       (match_test "op == CONST0_RTX (GET_MODE (op))")))
       (match_test "op == CONST0_RTX (GET_MODE (op))")))
(define_predicate "reg_or_0_operand"
(define_predicate "reg_or_0_operand"
  (ior (and (match_operand 0 "const_0_operand")
  (ior (and (match_operand 0 "const_0_operand")
            (match_test "!TARGET_MIPS16"))
            (match_test "!TARGET_MIPS16"))
       (match_operand 0 "register_operand")))
       (match_operand 0 "register_operand")))
(define_predicate "const_1_operand"
(define_predicate "const_1_operand"
  (and (match_code "const_int,const_double,const_vector")
  (and (match_code "const_int,const_double,const_vector")
       (match_test "op == CONST1_RTX (GET_MODE (op))")))
       (match_test "op == CONST1_RTX (GET_MODE (op))")))
(define_predicate "reg_or_1_operand"
(define_predicate "reg_or_1_operand"
  (ior (match_operand 0 "const_1_operand")
  (ior (match_operand 0 "const_1_operand")
       (match_operand 0 "register_operand")))
       (match_operand 0 "register_operand")))
;; This is used for indexing into vectors, and hence only accepts const_int.
;; This is used for indexing into vectors, and hence only accepts const_int.
(define_predicate "const_0_or_1_operand"
(define_predicate "const_0_or_1_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (ior (match_test "op == CONST0_RTX (GET_MODE (op))")
       (ior (match_test "op == CONST0_RTX (GET_MODE (op))")
            (match_test "op == CONST1_RTX (GET_MODE (op))"))))
            (match_test "op == CONST1_RTX (GET_MODE (op))"))))
(define_predicate "qi_mask_operand"
(define_predicate "qi_mask_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "UINTVAL (op) == 0xff")))
       (match_test "UINTVAL (op) == 0xff")))
(define_predicate "hi_mask_operand"
(define_predicate "hi_mask_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "UINTVAL (op) == 0xffff")))
       (match_test "UINTVAL (op) == 0xffff")))
(define_predicate "si_mask_operand"
(define_predicate "si_mask_operand"
  (and (match_code "const_int")
  (and (match_code "const_int")
       (match_test "UINTVAL (op) == 0xffffffff")))
       (match_test "UINTVAL (op) == 0xffffffff")))
(define_predicate "and_load_operand"
(define_predicate "and_load_operand"
  (ior (match_operand 0 "qi_mask_operand")
  (ior (match_operand 0 "qi_mask_operand")
       (match_operand 0 "hi_mask_operand")
       (match_operand 0 "hi_mask_operand")
       (match_operand 0 "si_mask_operand")))
       (match_operand 0 "si_mask_operand")))
(define_predicate "low_bitmask_operand"
(define_predicate "low_bitmask_operand"
  (and (match_test "ISA_HAS_EXT_INS")
  (and (match_test "ISA_HAS_EXT_INS")
       (match_code "const_int")
       (match_code "const_int")
       (match_test "low_bitmask_len (mode, INTVAL (op)) > 16")))
       (match_test "low_bitmask_len (mode, INTVAL (op)) > 16")))
(define_predicate "and_reg_operand"
(define_predicate "and_reg_operand"
  (ior (match_operand 0 "register_operand")
  (ior (match_operand 0 "register_operand")
       (and (match_test "!TARGET_MIPS16")
       (and (match_test "!TARGET_MIPS16")
            (match_operand 0 "const_uns_arith_operand"))
            (match_operand 0 "const_uns_arith_operand"))
       (match_operand 0 "low_bitmask_operand")
       (match_operand 0 "low_bitmask_operand")
       (match_operand 0 "si_mask_operand")))
       (match_operand 0 "si_mask_operand")))
(define_predicate "and_operand"
(define_predicate "and_operand"
  (ior (match_operand 0 "and_load_operand")
  (ior (match_operand 0 "and_load_operand")
       (match_operand 0 "and_reg_operand")))
       (match_operand 0 "and_reg_operand")))
(define_predicate "d_operand"
(define_predicate "d_operand"
  (and (match_code "reg")
  (and (match_code "reg")
       (match_test "TARGET_MIPS16
       (match_test "TARGET_MIPS16
                    ? M16_REG_P (REGNO (op))
                    ? M16_REG_P (REGNO (op))
                    : GP_REG_P (REGNO (op))")))
                    : GP_REG_P (REGNO (op))")))
(define_predicate "lo_operand"
(define_predicate "lo_operand"
  (and (match_code "reg")
  (and (match_code "reg")
       (match_test "REGNO (op) == LO_REGNUM")))
       (match_test "REGNO (op) == LO_REGNUM")))
(define_predicate "hilo_operand"
(define_predicate "hilo_operand"
  (and (match_code "reg")
  (and (match_code "reg")
       (match_test "MD_REG_P (REGNO (op))")))
       (match_test "MD_REG_P (REGNO (op))")))
(define_predicate "fcc_reload_operand"
(define_predicate "fcc_reload_operand"
  (and (match_code "reg,subreg")
  (and (match_code "reg,subreg")
       (match_test "ST_REG_P (true_regnum (op))")))
       (match_test "ST_REG_P (true_regnum (op))")))
(define_special_predicate "pc_or_label_operand"
(define_special_predicate "pc_or_label_operand"
  (match_code "pc,label_ref"))
  (match_code "pc,label_ref"))
(define_predicate "const_call_insn_operand"
(define_predicate "const_call_insn_operand"
  (match_code "const,symbol_ref,label_ref")
  (match_code "const,symbol_ref,label_ref")
{
{
  enum mips_symbol_type symbol_type;
  enum mips_symbol_type symbol_type;
  if (!mips_symbolic_constant_p (op, SYMBOL_CONTEXT_CALL, &symbol_type))
  if (!mips_symbolic_constant_p (op, SYMBOL_CONTEXT_CALL, &symbol_type))
    return false;
    return false;
  switch (symbol_type)
  switch (symbol_type)
    {
    {
    case SYMBOL_ABSOLUTE:
    case SYMBOL_ABSOLUTE:
      /* We can only use direct calls if we're sure that the target
      /* We can only use direct calls if we're sure that the target
         function does not need $25 to be valid on entry.  */
         function does not need $25 to be valid on entry.  */
      if (mips_use_pic_fn_addr_reg_p (op))
      if (mips_use_pic_fn_addr_reg_p (op))
        return false;
        return false;
      /* If -mlong-calls or if this function has an explicit long_call
      /* If -mlong-calls or if this function has an explicit long_call
         attribute, we must use register addressing.  The
         attribute, we must use register addressing.  The
         SYMBOL_FLAG_LONG_CALL bit is set by mips_encode_section_info.  */
         SYMBOL_FLAG_LONG_CALL bit is set by mips_encode_section_info.  */
      return !(GET_CODE (op) == SYMBOL_REF && SYMBOL_REF_LONG_CALL_P (op));
      return !(GET_CODE (op) == SYMBOL_REF && SYMBOL_REF_LONG_CALL_P (op));
    case SYMBOL_GOT_DISP:
    case SYMBOL_GOT_DISP:
      /* Without explicit relocs, there is no special syntax for
      /* Without explicit relocs, there is no special syntax for
         loading the address of a call destination into a register.
         loading the address of a call destination into a register.
         Using "la $25,foo; jal $25" would prevent the lazy binding
         Using "la $25,foo; jal $25" would prevent the lazy binding
         of "foo", so keep the address of global symbols with the
         of "foo", so keep the address of global symbols with the
         jal macro.  */
         jal macro.  */
      return !TARGET_EXPLICIT_RELOCS;
      return !TARGET_EXPLICIT_RELOCS;
    default:
    default:
      return false;
      return false;
    }
    }
})
})
(define_predicate "call_insn_operand"
(define_predicate "call_insn_operand"
  (ior (match_operand 0 "const_call_insn_operand")
  (ior (match_operand 0 "const_call_insn_operand")
       (match_operand 0 "register_operand")))
       (match_operand 0 "register_operand")))
;; A legitimate CONST_INT operand that takes more than one instruction
;; A legitimate CONST_INT operand that takes more than one instruction
;; to load.
;; to load.
(define_predicate "splittable_const_int_operand"
(define_predicate "splittable_const_int_operand"
  (match_code "const_int")
  (match_code "const_int")
{
{
  /* When generating mips16 code, LEGITIMATE_CONSTANT_P rejects
  /* When generating mips16 code, LEGITIMATE_CONSTANT_P rejects
     CONST_INTs that can't be loaded using simple insns.  */
     CONST_INTs that can't be loaded using simple insns.  */
  if (TARGET_MIPS16)
  if (TARGET_MIPS16)
    return false;
    return false;
  /* Don't handle multi-word moves this way; we don't want to introduce
  /* Don't handle multi-word moves this way; we don't want to introduce
     the individual word-mode moves until after reload.  */
     the individual word-mode moves until after reload.  */
  if (GET_MODE_SIZE (mode) > UNITS_PER_WORD)
  if (GET_MODE_SIZE (mode) > UNITS_PER_WORD)
    return false;
    return false;
  /* Otherwise check whether the constant can be loaded in a single
  /* Otherwise check whether the constant can be loaded in a single
     instruction.  */
     instruction.  */
  return !LUI_INT (op) && !SMALL_INT (op) && !SMALL_INT_UNSIGNED (op);
  return !LUI_INT (op) && !SMALL_INT (op) && !SMALL_INT_UNSIGNED (op);
})
})
(define_predicate "move_operand"
(define_predicate "move_operand"
  (match_operand 0 "general_operand")
  (match_operand 0 "general_operand")
{
{
  enum mips_symbol_type symbol_type;
  enum mips_symbol_type symbol_type;
  /* The thinking here is as follows:
  /* The thinking here is as follows:
     (1) The move expanders should split complex load sequences into
     (1) The move expanders should split complex load sequences into
         individual instructions.  Those individual instructions can
         individual instructions.  Those individual instructions can
         then be optimized by all rtl passes.
         then be optimized by all rtl passes.
     (2) The target of pre-reload load sequences should not be used
     (2) The target of pre-reload load sequences should not be used
         to store temporary results.  If the target register is only
         to store temporary results.  If the target register is only
         assigned one value, reload can rematerialize that value
         assigned one value, reload can rematerialize that value
         on demand, rather than spill it to the stack.
         on demand, rather than spill it to the stack.
     (3) If we allowed pre-reload passes like combine and cse to recreate
     (3) If we allowed pre-reload passes like combine and cse to recreate
         complex load sequences, we would want to be able to split the
         complex load sequences, we would want to be able to split the
         sequences before reload as well, so that the pre-reload scheduler
         sequences before reload as well, so that the pre-reload scheduler
         can see the individual instructions.  This falls foul of (2);
         can see the individual instructions.  This falls foul of (2);
         the splitter would be forced to reuse the target register for
         the splitter would be forced to reuse the target register for
         intermediate results.
         intermediate results.
     (4) We want to define complex load splitters for combine.  These
     (4) We want to define complex load splitters for combine.  These
         splitters can request a temporary scratch register, which avoids
         splitters can request a temporary scratch register, which avoids
         the problem in (2).  They allow things like:
         the problem in (2).  They allow things like:
              (set (reg T1) (high SYM))
              (set (reg T1) (high SYM))
              (set (reg T2) (low (reg T1) SYM))
              (set (reg T2) (low (reg T1) SYM))
              (set (reg X) (plus (reg T2) (const_int OFFSET)))
              (set (reg X) (plus (reg T2) (const_int OFFSET)))
         to be combined into:
         to be combined into:
              (set (reg T3) (high SYM+OFFSET))
              (set (reg T3) (high SYM+OFFSET))
              (set (reg X) (lo_sum (reg T3) SYM+OFFSET))
              (set (reg X) (lo_sum (reg T3) SYM+OFFSET))
         if T2 is only used this once.  */
         if T2 is only used this once.  */
  switch (GET_CODE (op))
  switch (GET_CODE (op))
    {
    {
    case CONST_INT:
    case CONST_INT:
      return !splittable_const_int_operand (op, mode);
      return !splittable_const_int_operand (op, mode);
    case CONST:
    case CONST:
    case SYMBOL_REF:
    case SYMBOL_REF:
    case LABEL_REF:
    case LABEL_REF:
      if (CONST_GP_P (op))
      if (CONST_GP_P (op))
        return true;
        return true;
      return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &symbol_type)
      return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &symbol_type)
              && !mips_split_p[symbol_type]);
              && !mips_split_p[symbol_type]);
    case HIGH:
    case HIGH:
      op = XEXP (op, 0);
      op = XEXP (op, 0);
      return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &symbol_type)
      return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &symbol_type)
              && !mips_split_hi_p[symbol_type]);
              && !mips_split_hi_p[symbol_type]);
    default:
    default:
      return true;
      return true;
    }
    }
})
})
(define_predicate "cprestore_save_slot_operand"
(define_predicate "cprestore_save_slot_operand"
  (and (match_code "mem")
  (and (match_code "mem")
       (match_test "mips_cprestore_address_p (XEXP (op, 0), false)")))
       (match_test "mips_cprestore_address_p (XEXP (op, 0), false)")))
(define_predicate "cprestore_load_slot_operand"
(define_predicate "cprestore_load_slot_operand"
  (and (match_code "mem")
  (and (match_code "mem")
       (match_test "mips_cprestore_address_p (XEXP (op, 0), true)")))
       (match_test "mips_cprestore_address_p (XEXP (op, 0), true)")))
(define_predicate "consttable_operand"
(define_predicate "consttable_operand"
  (match_test "CONSTANT_P (op)"))
  (match_test "CONSTANT_P (op)"))
(define_predicate "symbolic_operand"
(define_predicate "symbolic_operand"
  (match_code "const,symbol_ref,label_ref")
  (match_code "const,symbol_ref,label_ref")
{
{
  enum mips_symbol_type type;
  enum mips_symbol_type type;
  return mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type);
  return mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type);
})
})
(define_predicate "absolute_symbolic_operand"
(define_predicate "absolute_symbolic_operand"
  (match_code "const,symbol_ref,label_ref")
  (match_code "const,symbol_ref,label_ref")
{
{
  enum mips_symbol_type type;
  enum mips_symbol_type type;
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type)
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type)
          && type == SYMBOL_ABSOLUTE);
          && type == SYMBOL_ABSOLUTE);
})
})
(define_predicate "force_to_mem_operand"
(define_predicate "force_to_mem_operand"
  (match_code "const,symbol_ref,label_ref")
  (match_code "const,symbol_ref,label_ref")
{
{
  enum mips_symbol_type symbol_type;
  enum mips_symbol_type symbol_type;
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &symbol_type)
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &symbol_type)
          && symbol_type == SYMBOL_FORCE_TO_MEM);
          && symbol_type == SYMBOL_FORCE_TO_MEM);
})
})
(define_predicate "got_disp_operand"
(define_predicate "got_disp_operand"
  (match_code "const,symbol_ref,label_ref")
  (match_code "const,symbol_ref,label_ref")
{
{
  enum mips_symbol_type type;
  enum mips_symbol_type type;
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type)
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type)
          && type == SYMBOL_GOT_DISP);
          && type == SYMBOL_GOT_DISP);
})
})
(define_predicate "got_page_ofst_operand"
(define_predicate "got_page_ofst_operand"
  (match_code "const,symbol_ref,label_ref")
  (match_code "const,symbol_ref,label_ref")
{
{
  enum mips_symbol_type type;
  enum mips_symbol_type type;
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type)
  return (mips_symbolic_constant_p (op, SYMBOL_CONTEXT_LEA, &type)
          && type == SYMBOL_GOT_PAGE_OFST);
          && type == SYMBOL_GOT_PAGE_OFST);
})
})
(define_predicate "symbol_ref_operand"
(define_predicate "symbol_ref_operand"
  (match_code "symbol_ref"))
  (match_code "symbol_ref"))
(define_predicate "stack_operand"
(define_predicate "stack_operand"
  (and (match_code "mem")
  (and (match_code "mem")
       (match_test "mips_stack_address_p (XEXP (op, 0), GET_MODE (op))")))
       (match_test "mips_stack_address_p (XEXP (op, 0), GET_MODE (op))")))
(define_predicate "macc_msac_operand"
(define_predicate "macc_msac_operand"
  (ior (and (match_code "plus") (match_test "ISA_HAS_MACC"))
  (ior (and (match_code "plus") (match_test "ISA_HAS_MACC"))
       (and (match_code "minus") (match_test "ISA_HAS_MSAC")))
       (and (match_code "minus") (match_test "ISA_HAS_MSAC")))
{
{
  rtx mult = XEXP (op, GET_CODE (op) == PLUS ? 0 : 1);
  rtx mult = XEXP (op, GET_CODE (op) == PLUS ? 0 : 1);
  rtx accum = XEXP (op, GET_CODE (op) == PLUS ? 1 : 0);
  rtx accum = XEXP (op, GET_CODE (op) == PLUS ? 1 : 0);
  return (GET_CODE (mult) == MULT
  return (GET_CODE (mult) == MULT
          && REG_P (XEXP (mult, 0))
          && REG_P (XEXP (mult, 0))
          && REG_P (XEXP (mult, 1))
          && REG_P (XEXP (mult, 1))
          && REG_P (accum));
          && REG_P (accum));
})
})
(define_predicate "equality_operator"
(define_predicate "equality_operator"
  (match_code "eq,ne"))
  (match_code "eq,ne"))
(define_predicate "extend_operator"
(define_predicate "extend_operator"
  (match_code "zero_extend,sign_extend"))
  (match_code "zero_extend,sign_extend"))
(define_predicate "trap_comparison_operator"
(define_predicate "trap_comparison_operator"
  (match_code "eq,ne,lt,ltu,ge,geu"))
  (match_code "eq,ne,lt,ltu,ge,geu"))
(define_predicate "order_operator"
(define_predicate "order_operator"
  (match_code "lt,ltu,le,leu,ge,geu,gt,gtu"))
  (match_code "lt,ltu,le,leu,ge,geu,gt,gtu"))
;; For NE, cstore uses sltu instructions in which the first operand is $0.
;; For NE, cstore uses sltu instructions in which the first operand is $0.
;; This isn't possible in mips16 code.
;; This isn't possible in mips16 code.
(define_predicate "mips_cstore_operator"
(define_predicate "mips_cstore_operator"
  (ior (match_code "eq,gt,gtu,ge,geu,lt,ltu,le,leu")
  (ior (match_code "eq,gt,gtu,ge,geu,lt,ltu,le,leu")
       (and (match_code "ne") (match_test "!TARGET_MIPS16"))))
       (and (match_code "ne") (match_test "!TARGET_MIPS16"))))
(define_predicate "small_data_pattern"
(define_predicate "small_data_pattern"
  (and (match_code "set,parallel,unspec,unspec_volatile,prefetch")
  (and (match_code "set,parallel,unspec,unspec_volatile,prefetch")
       (match_test "mips_small_data_pattern_p (op)")))
       (match_test "mips_small_data_pattern_p (op)")))
 
 

powered by: WebSVN 2.1.0

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