@@ -135,7 +135,7 @@ bool _dbDatabase::operator==(const _dbDatabase& rhs) const
135135 if (*unfolded_chip_region_inst_tbl_ != *rhs.unfolded_chip_region_inst_tbl_ ) {
136136 return false ;
137137 }
138- if (*unfolded_bump_inst_tbl_ != *rhs.unfolded_bump_inst_tbl_ ) {
138+ if (*unfolded_chip_bump_inst_tbl_ != *rhs.unfolded_chip_bump_inst_tbl_ ) {
139139 return false ;
140140 }
141141 if (*unfolded_conn_tbl_ != *rhs.unfolded_conn_tbl_ ) {
@@ -223,7 +223,7 @@ _dbDatabase::_dbDatabase(_dbDatabase* db)
223223 this ,
224224 (GetObjTbl_t) &_dbDatabase::getObjectTable,
225225 dbUnfoldedChipRegionInstObj);
226- unfolded_bump_inst_tbl_ = new dbTable<_dbUnfoldedChipBumpInst>(
226+ unfolded_chip_bump_inst_tbl_ = new dbTable<_dbUnfoldedChipBumpInst>(
227227 this ,
228228 this ,
229229 (GetObjTbl_t) &_dbDatabase::getObjectTable,
@@ -275,7 +275,8 @@ _dbDatabase::_dbDatabase(_dbDatabase* db)
275275 unfolded_region_itr_
276276 = new dbUnfoldedChipRegionInstItr (unfolded_chip_region_inst_tbl_);
277277
278- unfolded_bump_itr_ = new dbUnfoldedChipBumpInstItr (unfolded_bump_inst_tbl_);
278+ unfolded_bump_itr_
279+ = new dbUnfoldedChipBumpInstItr (unfolded_chip_bump_inst_tbl_);
279280 // User Code End Constructor
280281}
281282
@@ -511,7 +512,7 @@ dbObjectTable* _dbDatabase::getObjectTable(dbObjectType type)
511512 case dbUnfoldedChipRegionInstObj:
512513 return unfolded_chip_region_inst_tbl_;
513514 case dbUnfoldedChipBumpInstObj:
514- return unfolded_bump_inst_tbl_ ;
515+ return unfolded_chip_bump_inst_tbl_ ;
515516 case dbUnfoldedConnObj:
516517 return unfolded_conn_tbl_;
517518 case dbUnfoldedChipNetObj:
@@ -550,8 +551,8 @@ void _dbDatabase::collectMemInfo(MemInfo& info)
550551 info.children [" unfolded_chip_inst_tbl_" ]);
551552 unfolded_chip_region_inst_tbl_->collectMemInfo (
552553 info.children [" unfolded_chip_region_inst_tbl_" ]);
553- unfolded_bump_inst_tbl_ ->collectMemInfo (
554- info.children [" unfolded_bump_inst_tbl_ " ]);
554+ unfolded_chip_bump_inst_tbl_ ->collectMemInfo (
555+ info.children [" unfolded_chip_bump_inst_tbl_ " ]);
555556 unfolded_conn_tbl_->collectMemInfo (info.children [" unfolded_conn_tbl_" ]);
556557 unfolded_chip_net_tbl_->collectMemInfo (
557558 info.children [" unfolded_chip_net_tbl_" ]);
@@ -576,7 +577,7 @@ _dbDatabase::~_dbDatabase()
576577 delete chip_net_tbl_;
577578 delete unfolded_chip_inst_tbl_;
578579 delete unfolded_chip_region_inst_tbl_;
579- delete unfolded_bump_inst_tbl_ ;
580+ delete unfolded_chip_bump_inst_tbl_ ;
580581 delete unfolded_conn_tbl_;
581582 delete unfolded_chip_net_tbl_;
582583 // User Code Begin Destructor
@@ -645,7 +646,8 @@ _dbDatabase::_dbDatabase(_dbDatabase* /* unused: db */, int id)
645646 unfolded_region_itr_
646647 = new dbUnfoldedChipRegionInstItr (unfolded_chip_region_inst_tbl_);
647648
648- unfolded_bump_itr_ = new dbUnfoldedChipBumpInstItr (unfolded_bump_inst_tbl_);
649+ unfolded_bump_itr_
650+ = new dbUnfoldedChipBumpInstItr (unfolded_chip_bump_inst_tbl_);
649651}
650652
651653utl::Logger* _dbDatabase::getLogger () const
@@ -753,7 +755,7 @@ dbSet<dbUnfoldedChipRegionInst> dbDatabase::getUnfoldedChipRegionInsts() const
753755dbSet<dbUnfoldedChipBumpInst> dbDatabase::getUnfoldedChipBumpInsts () const
754756{
755757 _dbDatabase* obj = (_dbDatabase*) this ;
756- return dbSet<dbUnfoldedChipBumpInst>(obj, obj->unfolded_bump_inst_tbl_ );
758+ return dbSet<dbUnfoldedChipBumpInst>(obj, obj->unfolded_chip_bump_inst_tbl_ );
757759}
758760
759761dbSet<dbUnfoldedConn> dbDatabase::getUnfoldedConns () const
0 commit comments