⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sc_list.cpp

📁 system C源码 一种替代verilog的语言
💻 CPP
字号:
/*****************************************************************************  The following code is derived, directly or indirectly, from the SystemC  source code Copyright (c) 1996-2006 by all Contributors.  All Rights reserved.  The contents of this file are subject to the restrictions and limitations  set forth in the SystemC Open Source License Version 2.4 (the "License");  You may not use this file except in compliance with such restrictions and  limitations. You may obtain instructions on how to receive a copy of the  License at http://www.systemc.org/. Software distributed by Contributors  under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF  ANY KIND, either express or implied. See the License for the specific  language governing rights and limitations under the License. *****************************************************************************//*****************************************************************************  sc_list.cpp -- Simple implementation of a doubly linked list.  Original Author: Stan Y. Liao, Synopsys, Inc. *****************************************************************************//*****************************************************************************  MODIFICATION LOG - modifiers, enter your name, affiliation, date and  changes you are making here.      Name, Affiliation, Date:  Description of Modification: *****************************************************************************/// $Log: sc_list.cpp,v $// Revision 1.1.1.1  2006/12/15 20:31:39  acg// SystemC 2.2//// Revision 1.3  2006/01/13 18:53:10  acg// Andy Goodrich: Added $Log command so that CVS comments are reproduced in// the source.//#include <assert.h>#include "sysc/kernel/sc_cmnhdr.h"#include "sysc/utils/sc_iostream.h"#include "sysc/utils/sc_list.h"#include "sysc/utils/sc_mempool.h"#include "sysc/utils/sc_report.h"#include "sysc/utils/sc_utils_ids.h"namespace sc_core {class sc_plist_elem {    friend class sc_plist_base_iter;    friend class sc_plist_base;private:    sc_plist_elem() { prev = 0; next = 0; }    sc_plist_elem( void* d, sc_plist_elem* p, sc_plist_elem* n )    {        data = d; prev = p; next = n;    }    ~sc_plist_elem()    {    }    static void* operator new(std::size_t sz)            { return sc_mempool::allocate(sz); }    static void operator delete(void* p, std::size_t sz) { sc_mempool::release(p, sz);      }        void* data;    sc_plist_elem* prev;    sc_plist_elem* next;};sc_plist_base::sc_plist_base(){    head = 0;    tail = 0;}sc_plist_base::~sc_plist_base(){    handle_t p;    for( handle_t h = head; h != 0; h = p ) {        p = h->next;        delete h;    }}voidsc_plist_base::erase_all(){    handle_t p;    for( handle_t h = head; h != 0; h = p ) {        p = h->next;        delete h;    }    head = 0;    tail = 0;}intsc_plist_base::size() const{    int n = 0;    for( handle_t h = head; h != 0; h = h->next ) {        n++;    }    return n;}sc_plist_base::handle_tsc_plist_base::push_back( void* d ){    handle_t q = new sc_plist_elem( d, tail, 0 );    if (tail) {        tail->next = q;        tail = q;    }    else {        head = tail = q;    }    return q;}sc_plist_base::handle_tsc_plist_base::push_front( void* d ){    handle_t q = new sc_plist_elem( d, (sc_plist_elem*) 0, head );    if (head) {        head->prev = q;        head = q;    }    else {        head = tail = q;    }    return q;}void*sc_plist_base::pop_back(){    handle_t q = tail;    void* d = q->data;    tail = tail->prev;    delete q;    if (tail != 0) {        tail->next = 0;    }    else {        head = 0;    }    return d;}void*sc_plist_base::pop_front(){    handle_t q = head;    void* d = q->data;    head = head->next;    delete q;    if (head != 0) {        head->prev = 0;    }    else {        tail = 0;    }    return d;}sc_plist_base::handle_tsc_plist_base::insert_before( handle_t h, void* d ){    if (h == 0) {        return push_back(d);    }    else {        handle_t q = new sc_plist_elem( d, h->prev, h );        h->prev->next = q;        h->prev = q;        return q;    }}sc_plist_base::handle_tsc_plist_base::insert_after( handle_t h, void* d ){    if (h == 0) {        return push_front(d);    }    else {        handle_t q = new sc_plist_elem( d, h, h->next );        h->next->prev = q;        h->next = q;        return q;    }}void*sc_plist_base::remove( handle_t h ){    if (h == head)        return pop_front();    else if (h == tail)        return pop_back();    else {        void* d = h->data;        h->prev->next = h->next;        h->next->prev = h->prev;        delete h;        return d;    }}void*sc_plist_base::get( handle_t h ) const{    return h->data;}voidsc_plist_base::set( handle_t h, void* d ){    h->data = d;}voidsc_plist_base::mapcar( sc_plist_map_fn f, void* arg ){    for (handle_t h = head; h != 0; h = h->next) {        f( h->data, arg );    }}void*sc_plist_base::front() const{   if (head) {			        return head->data;    }				    else {      SC_REPORT_ERROR( SC_ID_FRONT_ON_EMPTY_LIST_ , 0 );      // never reached      return 0;    }}void*sc_plist_base::back() const{   if (tail) {        return tail->data;    }    else {      SC_REPORT_ERROR( SC_ID_BACK_ON_EMPTY_LIST_, 0 );      // never reached      return 0;    }}sc_plist_base_iter::sc_plist_base_iter( sc_plist_base* l, bool from_tail ){    reset( l, from_tail );}voidsc_plist_base_iter::reset( sc_plist_base* l, bool from_tail ){    lst = l;    if (from_tail) {        ptr = l->tail;    }    else {        ptr = l->head;    }}sc_plist_base_iter::~sc_plist_base_iter(){}boolsc_plist_base_iter::empty() const{    return ptr == 0;}voidsc_plist_base_iter::operator++(int){    ptr = ptr->next;}voidsc_plist_base_iter::operator--(int){    ptr = ptr->prev;}void*sc_plist_base_iter::get() const{    return ptr->data;}voidsc_plist_base_iter::set( void* d ){    ptr->data = d;}voidsc_plist_base_iter::remove(){    sc_plist_base::handle_t nptr = ptr->next;    lst->remove(ptr);    ptr = nptr;}voidsc_plist_base_iter::remove(int direction){    sc_plist_base::handle_t nptr = (direction == 1) ? ptr->next : ptr->prev;    lst->remove(ptr);    ptr = nptr;}voidsc_plist_base_iter::set_handle( sc_plist_elem* h ){    ptr = h;}} // namespace sc_core

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -