Skip to content

Commit 71e50a9

Browse files
committed
odb: dpProperty fixed hash
Signed-off-by: osamahammad21 <[email protected]>
1 parent f224909 commit 71e50a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/odb/src/codeGenerator/schema/chip/dbProperty.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "dbProperty",
33
"type": "dbObject",
4+
"hash": "0x66",
45
"do_not_generate_compare" : "true",
56
"fields": [
67
{

src/odb/src/db/dbObject.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ static const std::unordered_map<uint32_t, dbObjectType> hash_to_object_type
200200
{0x110F3173, dbPolygonObj},
201201
{0x7352FE40, dbPowerDomainObj},
202202
{0x7D280800, dbPowerSwitchObj},
203+
{0x00000066, dbPropertyObj},
203204
{0xBF9698BF, dbScanChainObj},
204205
{0x05CD9D4A, dbScanInstObj},
205206
{0xD398101E, dbScanListObj},
@@ -252,7 +253,6 @@ static const std::unordered_map<uint32_t, dbObjectType> hash_to_object_type
252253
{0x64, dbTechViaGenerateRuleObj},
253254
{0x65, dbTechViaLayerRuleObj},
254255

255-
{0x66, dbPropertyObj},
256256
{0x67, dbNameObj}};
257257

258258
static const std::unordered_map<dbObjectType, uint32_t> object_type_to_hash
@@ -315,6 +315,7 @@ static const std::unordered_map<dbObjectType, uint32_t> object_type_to_hash
315315
{dbPolygonObj, 0x110F3173},
316316
{dbPowerDomainObj, 0x7352FE40},
317317
{dbPowerSwitchObj, 0x7D280800},
318+
{dbPropertyObj, 0x00000066},
318319
{dbScanChainObj, 0xBF9698BF},
319320
{dbScanInstObj, 0x05CD9D4A},
320321
{dbScanListObj, 0xD398101E},
@@ -367,7 +368,6 @@ static const std::unordered_map<dbObjectType, uint32_t> object_type_to_hash
367368
{dbTechViaGenerateRuleObj, 0x64},
368369
{dbTechViaLayerRuleObj, 0x65},
369370

370-
{dbPropertyObj, 0x66},
371371
{dbNameObj, 0x67}};
372372

373373
const char* dbObject::getTypeName() const

0 commit comments

Comments
 (0)