47 #ifndef __SYSTEMC_EXT_UTIL_SC_VECTOR_HH__ 48 #define __SYSTEMC_EXT_UTIL_SC_VECTOR_HH__ 56 #include "../core/sc_module.hh" 57 #include "../core/sc_object.hh" 65 #if __cplusplus >= 201103L 68 using std::remove_const;
74 template<
bool Cond,
typename T=
void>
95 template <
typename T,
typename U>
98 static const bool value =
false;
100 template <
typename T>
103 static const bool value =
true;
106 template <
typename T>
109 static const bool value =
false;
111 template <
typename T>
114 static const bool value =
true;
119 template <
typename CT,
typename T>
122 static const bool value =
131 template <
typename T>
135 template <
typename T>
141 #define SC_RPTYPE_(Type) \ 142 ::sc_gem5::remove_special_fptr< \ 143 ::sc_gem5::special_result & (*) Type>::type::value 145 #define SC_ENABLE_IF_(Cond) \ 146 typename ::sc_gem5::enable_if<SC_RPTYPE_(Cond)>::type * = NULL 153 template <
typename T,
typename MT>
156 template <
typename T>
159 template <
typename T,
typename MT>
170 virtual const char *
kind()
const {
return "sc_vector"; }
171 size_type size()
const;
187 virtual sc_object *objectCast(
void *)
const = 0;
189 void checkIndex(size_type
index)
const;
190 void forceParent()
const;
191 void unforceParent()
const;
193 void reportEmpty(
const char *kind_,
bool empty_dest)
const;
202 template <
typename Element>
217 template <
typename U>
221 ElementType,
typename U::Policy::ElementType>
227 get(ElementType *this_)
const 233 template <
typename Element,
typename Access>
237 template <
typename,
typename>
254 AccessType *
get(ElementType *this_)
const {
return &(this_->*ptr_); }
260 template <
typename Element,
263 public std::iterator<std::random_access_iterator_tag,
264 typename AccessPolicy::Type>,
269 typedef typename AccessPolicy::Policy
Policy;
280 template <
typename,
typename>
282 template <
typename,
typename>
285 typedef std::iterator<std::random_access_iterator_tag, AccessType>
291 template <
typename U>
296 template <
typename U>
324 template <
typename It>
328 ElementType,
typename It::Policy::ElementType>
330 ) : Policy(it.get_policy()), it_(it.it_)
363 return ThisType(it_ + n, get_policy());
368 return ThisType(it_ - n, get_policy());
372 operator += (difference_type
n)
379 operator -= (difference_type
n)
388 return it_ == other.
it_;
393 return it_ != other.
it_;
398 return it_ <= other.
it_;
403 return it_ >= other.
it_;
408 return it_ < other.
it_;
413 return it_ > other.
it_;
419 return *Policy::get(static_cast<ElementType *>((
void *)*it_));
424 return Policy::get(static_cast<ElementType *>((
void *)*it_));
427 operator [] (difference_type
n)
const 429 return *Policy::get(static_cast<ElementType *>((
void *)it_[n]));
435 return it_ - other.
it_;
439 template <
typename T>
453 template <
typename Creator>
457 init(_size, creator);
472 template <
typename Creator>
496 return *
static_cast<const T *
>(objs[
index]);
502 this->checkIndex(index);
503 return *
static_cast<T *
>(objs[
index]);
508 this->checkIndex(index);
509 return *
static_cast<const T *
>(objs[
index]);
512 iterator
begin() {
return objs.begin(); }
513 iterator
end() {
return objs.end(); }
514 const_iterator
begin()
const {
return objs.begin(); }
515 const_iterator
end()
const {
return objs.end(); }
516 const_iterator
cbegin()
const {
return objs.begin(); }
517 const_iterator
cend()
const {
return objs.end(); }
519 template <
typename ContainerType,
typename ArgumentType>
526 template <
typename BindableContainer>
530 return bind(c.begin(), c.end());
533 template <
typename BindableIterator>
535 bind(BindableIterator first, BindableIterator last)
537 return bind(first, last, this->begin());
540 template <
typename BindableIterator>
542 bind(BindableIterator first, BindableIterator last, iterator from)
544 if (!size() || from == end() || first == last)
545 reportEmpty(kind(), from == end());
547 while (from != end() && first != last)
548 (*from++).bind(*first++);
552 template <
typename ContainerType,
typename ArgumentType>
559 template <
typename ArgumentContainer>
561 operator () (ArgumentContainer &
c)
563 return (*
this)(c.begin(), c.end());
566 template <
typename ArgumentIterator>
568 operator () (ArgumentIterator first, ArgumentIterator last)
570 return (*
this)(first, last, this->begin());
573 template <
typename ArgumentIterator>
575 operator () (ArgumentIterator first, ArgumentIterator last, iterator from)
577 if (!size() || from == end() || first == last)
578 reportEmpty(kind(), from == end());
580 while (from != end() && first != last)
594 delete static_cast<T *
>(obj);
597 template <
typename,
typename>
603 return implicitCast(static_cast<T *>(ptr));
607 template <
typename T,
typename MT>
621 vec_(other.vec_), ptr_(other.ptr_)
624 iterator
begin() {
return iterator(vec_->begin().it_, ptr_); }
625 iterator
end() {
return iterator(vec_->end().it_, ptr_); }
630 return const_iterator(vec_->begin().it_, ptr_);
635 return const_iterator(vec_->end().it_, ptr_);
641 return const_iterator(vec_->begin().it_, ptr_);
646 return const_iterator(vec_->end().it_, ptr_);
649 size_type
size()
const {
return vec_->size(); }
655 for (const_iterator it = begin(); it != end(); it++) {
656 sc_object *obj_ptr = vec_->objectCast(const_cast<MT *>(&*it));
659 ret.push_back(obj_ptr);
665 operator [] (size_type
i)
667 return (*vec_)[
i].*ptr_;
670 operator [] (size_type
i)
const 672 return (*vec_)[
i].*ptr_;
678 return vec_->at(i).*ptr_;
683 return vec_->at(i).*ptr_;
686 template <
typename ContainerType,
typename ArgumentType>
693 template <
typename BindableContainer>
697 return bind(c.begin(), c.end());
700 template <
typename BindableIterator>
702 bind(BindableIterator first, BindableIterator last)
704 return bind(first, last, this->begin());
707 template <
typename BindableIterator>
709 bind(BindableIterator first, BindableIterator last, iterator from)
711 if (!size() || from == end() || first == last)
712 vec_->reportEmpty(
"sc_vector_assembly", from == end());
714 while (from != end() && first != last)
715 (*from++).bind(*first++);
719 template <
typename BindableIterator>
721 bind(BindableIterator first, BindableIterator last,
724 return bind(first, last, iterator(from.
it_, ptr_));
727 template <
typename ContainerType,
typename ArgumentType>
734 template <
typename ArgumentContainer>
736 operator () (ArgumentContainer &
c)
738 return (*
this)(c.begin(), c.end());
741 template <
typename ArgumentIterator>
743 operator () (ArgumentIterator first, ArgumentIterator last)
745 return (*
this)(first, last, this->begin());
748 template <
typename ArgumentIterator>
750 operator () (ArgumentIterator first, ArgumentIterator last, iterator from)
752 if (!size() || from == end() || first == last)
753 vec_->reportEmpty(
"sc_vector_assembly", from == end());
755 while (from != end() && first != last)
760 template <
typename ArgumentIterator>
762 operator () (ArgumentIterator first, ArgumentIterator last,
765 return (*
this)(first, last, iterator(from.
it_, ptr_));
777 template <
typename T,
typename MT>
786 #endif //__SYSTEMC_EXT_UTIL_SC_VECTOR_HH__
sc_gem5::remove_const< ElementType >::type PlainType
sc_direct_access< PlainType > NonConstPolicy
sc_vector< PlainType > VectorType
sc_vector_iter(const It &it, SC_ENABLE_IF_((sc_gem5::is_more_const< ElementType, typename It::Policy::ElementType >)))
sc_member_access< const PlainElemType, const PlainType > ConstPolicy
const_iterator cbegin() const
iterator bind(BindableContainer &c)
Time operator+(const Time &l, const Time &r)
sc_member_access< ElementType, AccessType > Policy
sc_direct_access< const PlainType > ConstPolicy
#define SC_ENABLE_IF_(Cond)
const std::string & name()
Policy const & get_policy() const
sc_direct_access(const NonConstPolicy &)
sc_direct_access< ElementType > Policy
const_iterator cend() const
sc_vector_assembly(const sc_vector_assembly &other)
std::vector< sc_object * > get_elements() const
const char * sc_gen_unique_name(const char *seed)
sc_object * objectCast(void *ptr) const
sc_vector_iter(RawIterator it, Policy acc=Policy())
std::vector< sc_object * > elements
AccessTypeElementType::* MemberType
sc_direct_access< PlainType >::ConstPolicy ConstDirectPolicy
sc_object * implicitCast(...) const
AccessPolicy::ConstPolicy ConstPolicy
sc_vector_iter< const T > const_iterator
void init(size_type _size, Creator creator)
sc_vector_base(const char *_name)
sc_vector_assembly< T, MT > sc_assemble_vector(sc_vector< T > &v, MT(T::*ptr))
AccessPolicy::NonConstPolicy NonConstPolicy
const char SC_ID_VECTOR_NONOBJECT_ELEMENTS_[]
AccessPolicy::Policy Policy
std::vector< void * >::iterator type
sc_vector(const char *_name)
bool operator>=(const Time &l, const Time &r)
static bool operator==(const ExtMachInst &emi1, const ExtMachInst &emi2)
std::vector< void * > StorageType
iterator bind(BindableIterator first, BindableIterator last, iterator from)
sc_member_access(MemberType ptr)
sc_member_access(const NonConstPolicy &other)
sc_vector_assembly(sc_vector< T > &v, MemberType ptr)
const T & at(size_type index) const
sc_gem5::remove_const< ElementType >::type PlainElemType
BaseType::difference_type difference_type
const_iterator end() const
sc_gem5::remove_const< ElementType >::type PlainType
BaseType::pointer pointer
iterator bind(BindableIterator first, BindableIterator last, typename sc_vector< T >::iterator from)
static T * create_element(const char *_name, size_type index)
virtual const char * kind() const
sc_vector_iter< T > iterator
iterator bind(sc_vector_assembly< ContainerType, ArgumentType > c)
iterator bind(BindableIterator first, BindableIterator last)
sc_vector_iter< T, sc_member_access< T, MT > > iterator
sc_vector_iter< ConstPlainType, ConstDirectPolicy > ConstDirectIterator
iterator bind(BindableContainer &c)
SelectIter< ElementType >::type RawIterator
const PlainType ConstPlainType
const_iterator begin() const
iterator bind(BindableIterator first, BindableIterator last, iterator from)
const_iterator cbegin() const
sc_vector_iter< ConstPlainType, ConstPolicy > ConstIterator
sc_vector(const char *_name, size_type _size)
sc_member_access< PlainElemType, PlainType > NonConstPolicy
std::vector< void * >::const_iterator type
iterator bind(BindableIterator first, BindableIterator last)
BaseType::reference reference
sc_vector(const char *_name, size_type _size, Creator creator)
sc_direct_access(const U &, SC_ENABLE_IF_((sc_gem5::is_more_const< ElementType, typename U::Policy::ElementType >)))
const_iterator::reference at(size_type i) const
bool operator<=(const Time &l, const Time &r)
bool operator>(const Time &l, const Time &r)
const_iterator begin() const
#define SC_REPORT_ERROR(msg_type, msg)
bool operator!=(const RefCountingPtr< T > &l, const RefCountingPtr< T > &r)
Check for inequality of two reference counting pointers.
Temp operator*(Temp l, Temp r)
sc_object * implicitCast(sc_object *p) const
iterator::reference at(size_type i)
const_iterator cend() const
std::iterator< std::random_access_iterator_tag, AccessType > BaseType
sc_gem5::remove_const< AccessType >::type PlainType
const_iterator end() const
iterator bind(sc_vector_assembly< ContainerType, ArgumentType > c)
bool operator<(const Time &l, const Time &r)
std::vector< void * > objs
sc_vector_iter< const T, sc_member_access< const T, const MT > > const_iterator
void init(size_type _size)
const FlagsType init
This Stat is Initialized.
Time operator-(const Time &l, const Time &r)