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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [libstdc++-v3/] [include/] [ext/] [pb_ds/] [detail/] [pat_trie_/] [leaf.hpp] - Diff between revs 424 and 519

Only display areas with differences | Details | Blame | View Log

Rev 424 Rev 519
// -*- C++ -*-
// -*- C++ -*-
 
 
// Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
// Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
//
//
// This file is part of the GNU ISO C++ Library.  This library is free
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the terms
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License as published by the Free Software
// of the GNU General Public License as published by the Free Software
// Foundation; either version 3, or (at your option) any later
// Foundation; either version 3, or (at your option) any later
// version.
// version.
 
 
// This library is distributed in the hope that it will be useful, but
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
// General Public License for more details.
 
 
// Under Section 7 of GPL version 3, you are granted additional
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// 3.1, as published by the Free Software Foundation.
 
 
// You should have received a copy of the GNU General Public License and
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
// <http://www.gnu.org/licenses/>.
// <http://www.gnu.org/licenses/>.
 
 
// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
 
 
// Permission to use, copy, modify, sell, and distribute this software
// Permission to use, copy, modify, sell, and distribute this software
// is hereby granted without fee, provided that the above copyright
// is hereby granted without fee, provided that the above copyright
// notice appears in all copies, and that both that copyright notice
// notice appears in all copies, and that both that copyright notice
// and this permission notice appear in supporting documentation. None
// and this permission notice appear in supporting documentation. None
// of the above authors, nor IBM Haifa Research Laboratories, make any
// of the above authors, nor IBM Haifa Research Laboratories, make any
// representation about the suitability of this software for any
// representation about the suitability of this software for any
// purpose. It is provided "as is" without express or implied
// purpose. It is provided "as is" without express or implied
// warranty.
// warranty.
 
 
/**
/**
 * @file leaf.hpp
 * @file leaf.hpp
 * Contains a pat_trie_leaf for a patricia tree.
 * Contains a pat_trie_leaf for a patricia tree.
 */
 */
 
 
#ifndef PB_DS_PAT_TRIE_LEAF_HPP
#ifndef PB_DS_PAT_TRIE_LEAF_HPP
#define PB_DS_PAT_TRIE_LEAF_HPP
#define PB_DS_PAT_TRIE_LEAF_HPP
 
 
#include <debug/debug.h>
#include <debug/debug.h>
 
 
namespace __gnu_pbds
namespace __gnu_pbds
{
{
  namespace detail
  namespace detail
  {
  {
 
 
#define PB_DS_CLASS_T_DEC                                               \
#define PB_DS_CLASS_T_DEC                                               \
    template<                                                           \
    template<                                                           \
                                                class Type_Traits,      \
                                                class Type_Traits,      \
                                                class E_Access_Traits,  \
                                                class E_Access_Traits,  \
                                                class Metadata,         \
                                                class Metadata,         \
                                                class Allocator>
                                                class Allocator>
 
 
#define PB_DS_CLASS_C_DEC                                               \
#define PB_DS_CLASS_C_DEC                                               \
    pat_trie_leaf<                                                      \
    pat_trie_leaf<                                                      \
                                                Type_Traits,            \
                                                Type_Traits,            \
                                                E_Access_Traits,        \
                                                E_Access_Traits,        \
                                                Metadata,               \
                                                Metadata,               \
                                                Allocator>
                                                Allocator>
 
 
#define PB_DS_BASE_C_DEC                                        \
#define PB_DS_BASE_C_DEC                                        \
    pat_trie_node_base<                                         \
    pat_trie_node_base<                                         \
                                        Type_Traits,            \
                                        Type_Traits,            \
                                        E_Access_Traits,        \
                                        E_Access_Traits,        \
                                        Metadata,               \
                                        Metadata,               \
                                        Allocator>
                                        Allocator>
 
 
#define PB_DS_PAT_TRIE_SUBTREE_DEBUG_INFO_C_DEC                         \
#define PB_DS_PAT_TRIE_SUBTREE_DEBUG_INFO_C_DEC                         \
    pat_trie_subtree_debug_info<                                        \
    pat_trie_subtree_debug_info<                                        \
                                                        Type_Traits,    \
                                                        Type_Traits,    \
                                                        E_Access_Traits, \
                                                        E_Access_Traits, \
                                                        Allocator>
                                                        Allocator>
 
 
    template<typename Type_Traits,
    template<typename Type_Traits,
             class E_Access_Traits,
             class E_Access_Traits,
             class Metadata,
             class Metadata,
             class Allocator>
             class Allocator>
    struct pat_trie_leaf : public PB_DS_BASE_C_DEC
    struct pat_trie_leaf : public PB_DS_BASE_C_DEC
    {
    {
    private:
    private:
      typedef typename Type_Traits::value_type value_type;
      typedef typename Type_Traits::value_type value_type;
 
 
      typedef typename Type_Traits::const_reference const_reference;
      typedef typename Type_Traits::const_reference const_reference;
 
 
      typedef typename Type_Traits::reference reference;
      typedef typename Type_Traits::reference reference;
 
 
      typedef
      typedef
      typename Allocator::template rebind<
      typename Allocator::template rebind<
        E_Access_Traits>::other::const_pointer
        E_Access_Traits>::other::const_pointer
      const_e_access_traits_pointer;
      const_e_access_traits_pointer;
 
 
#ifdef _GLIBCXX_DEBUG
#ifdef _GLIBCXX_DEBUG
      typedef
      typedef
      typename PB_DS_BASE_C_DEC::subtree_debug_info
      typename PB_DS_BASE_C_DEC::subtree_debug_info
      subtree_debug_info;
      subtree_debug_info;
#endif 
#endif 
 
 
      typedef PB_DS_BASE_C_DEC base_type;
      typedef PB_DS_BASE_C_DEC base_type;
 
 
    public:
    public:
      pat_trie_leaf(const_reference r_val);
      pat_trie_leaf(const_reference r_val);
 
 
      inline reference
      inline reference
      value();
      value();
 
 
      inline const_reference
      inline const_reference
      value() const;
      value() const;
 
 
#ifdef _GLIBCXX_DEBUG
#ifdef _GLIBCXX_DEBUG
      virtual subtree_debug_info
      virtual subtree_debug_info
      assert_valid_imp(const_e_access_traits_pointer p_traits) const;
      assert_valid_imp(const_e_access_traits_pointer p_traits) const;
 
 
      virtual
      virtual
      ~pat_trie_leaf();
      ~pat_trie_leaf();
#endif 
#endif 
 
 
    private:
    private:
      pat_trie_leaf(const PB_DS_CLASS_C_DEC& other);
      pat_trie_leaf(const PB_DS_CLASS_C_DEC& other);
 
 
      value_type m_value;
      value_type m_value;
    };
    };
 
 
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_C_DEC::
    PB_DS_CLASS_C_DEC::
    pat_trie_leaf(const_reference r_val) :
    pat_trie_leaf(const_reference r_val) :
    PB_DS_BASE_C_DEC(pat_trie_leaf_node_type), m_value(r_val)
    PB_DS_BASE_C_DEC(pat_trie_leaf_node_type), m_value(r_val)
    { }
    { }
 
 
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_T_DEC
    inline typename PB_DS_CLASS_C_DEC::reference
    inline typename PB_DS_CLASS_C_DEC::reference
    PB_DS_CLASS_C_DEC::
    PB_DS_CLASS_C_DEC::
    value()
    value()
    { return m_value; }
    { return m_value; }
 
 
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_T_DEC
    inline typename PB_DS_CLASS_C_DEC::const_reference
    inline typename PB_DS_CLASS_C_DEC::const_reference
    PB_DS_CLASS_C_DEC::
    PB_DS_CLASS_C_DEC::
    value() const
    value() const
    { return m_value; }
    { return m_value; }
 
 
#ifdef _GLIBCXX_DEBUG
#ifdef _GLIBCXX_DEBUG
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_T_DEC
    typename PB_DS_CLASS_C_DEC::subtree_debug_info
    typename PB_DS_CLASS_C_DEC::subtree_debug_info
    PB_DS_CLASS_C_DEC::
    PB_DS_CLASS_C_DEC::
    assert_valid_imp(const_e_access_traits_pointer p_traits) const
    assert_valid_imp(const_e_access_traits_pointer p_traits) const
    {
    {
      _GLIBCXX_DEBUG_ASSERT(base_type::m_type == pat_trie_leaf_node_type);
      _GLIBCXX_DEBUG_ASSERT(base_type::m_type == pat_trie_leaf_node_type);
      subtree_debug_info ret;
      subtree_debug_info ret;
      const_reference r_val = value();
      const_reference r_val = value();
      return std::make_pair(p_traits->begin(p_traits->extract_key(r_val)),
      return std::make_pair(p_traits->begin(p_traits->extract_key(r_val)),
                             p_traits->end(p_traits->extract_key(r_val)));
                             p_traits->end(p_traits->extract_key(r_val)));
    }
    }
 
 
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_T_DEC
    PB_DS_CLASS_C_DEC::
    PB_DS_CLASS_C_DEC::
    ~pat_trie_leaf() { }
    ~pat_trie_leaf() { }
#endif 
#endif 
 
 
#undef PB_DS_CLASS_T_DEC
#undef PB_DS_CLASS_T_DEC
#undef PB_DS_CLASS_C_DEC
#undef PB_DS_CLASS_C_DEC
#undef PB_DS_BASE_C_DEC
#undef PB_DS_BASE_C_DEC
#undef PB_DS_PAT_TRIE_SUBTREE_DEBUG_INFO_C_DEC
#undef PB_DS_PAT_TRIE_SUBTREE_DEBUG_INFO_C_DEC
 
 
  } // namespace detail
  } // namespace detail
} // namespace __gnu_pbds
} // namespace __gnu_pbds
 
 
#endif 
#endif 
 
 

powered by: WebSVN 2.1.0

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