rtlil: add AttrObject::has_attribute.
authorwhitequark <whitequark@whitequark.org>
Thu, 16 Apr 2020 21:49:49 +0000 (21:49 +0000)
committerwhitequark <whitequark@whitequark.org>
Thu, 16 Apr 2020 21:49:49 +0000 (21:49 +0000)
kernel/rtlil.cc
kernel/rtlil.h

index 9ecad056fd2396a7786701c66be79907cb15e592..8af941c85e19889b44c088cf074fb3409ebfc7d0 100644 (file)
@@ -273,6 +273,11 @@ bool RTLIL::Const::is_fully_undef() const
        return true;
 }
 
+bool RTLIL::AttrObject::has_attribute(RTLIL::IdString id) const
+{
+       return attributes.count(id);
+}
+
 void RTLIL::AttrObject::set_bool_attribute(RTLIL::IdString id, bool value)
 {
        if (value)
index fe9e21c31c773759153de770492845c45ad654fb..f3b1c9ae717bbfc2742c95a591133b32e8c484c6 100644 (file)
@@ -656,6 +656,8 @@ struct RTLIL::AttrObject
 {
        dict<RTLIL::IdString, RTLIL::Const> attributes;
 
+       bool has_attribute(RTLIL::IdString id) const;
+
        void set_bool_attribute(RTLIL::IdString id, bool value=true);
        bool get_bool_attribute(RTLIL::IdString id) const;