forked from li3939108/DEF-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxdefiPartition.cpp
183 lines (144 loc) · 6.06 KB
/
xdefiPartition.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// *****************************************************************************
// *****************************************************************************
// ATTENTION: THIS IS AN AUTO-GENERATED FILE. DO NOT CHANGE IT!
// *****************************************************************************
// *****************************************************************************
// Copyright 2012, Cadence Design Systems
//
// This file is part of the Cadence LEF/DEF Open Source
// Distribution, Product Version 5.8.
//
// Licensed under the Apache License, Version 2.0 (the \"License\");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an \"AS IS\" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
//
//
// For updates, support, or to become part of the LEF/DEF Community,
// check www.openeda.org for details.
//
// $Author: xxx $
// $Revision: xxx $
// $Date: xxx $
// $State: xxx $
// *****************************************************************************
// *****************************************************************************
#define EXTERN extern "C"
#include "defiPartition.h"
#include "defiPartition.hpp"
// Wrappers definitions.
const char* defiPartition_name (const ::defiPartition* obj) {
return ((const LefDefParser::defiPartition*)obj)->name();
}
char defiPartition_direction (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->direction();
}
const char* defiPartition_itemType (const ::defiPartition* obj) {
return ((const LefDefParser::defiPartition*)obj)->itemType();
}
const char* defiPartition_pinName (const ::defiPartition* obj) {
return ((const LefDefParser::defiPartition*)obj)->pinName();
}
const char* defiPartition_instName (const ::defiPartition* obj) {
return ((const LefDefParser::defiPartition*)obj)->instName();
}
int defiPartition_numPins (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->numPins();
}
const char* defiPartition_pin (const ::defiPartition* obj, int index) {
return ((const LefDefParser::defiPartition*)obj)->pin(index);
}
int defiPartition_isSetupRise (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->isSetupRise();
}
int defiPartition_isSetupFall (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->isSetupFall();
}
int defiPartition_isHoldRise (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->isHoldRise();
}
int defiPartition_isHoldFall (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->isHoldFall();
}
int defiPartition_hasMin (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasMin();
}
int defiPartition_hasMax (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasMax();
}
int defiPartition_hasRiseMin (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasRiseMin();
}
int defiPartition_hasFallMin (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasFallMin();
}
int defiPartition_hasRiseMax (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasRiseMax();
}
int defiPartition_hasFallMax (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasFallMax();
}
int defiPartition_hasRiseMinRange (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasRiseMinRange();
}
int defiPartition_hasFallMinRange (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasFallMinRange();
}
int defiPartition_hasRiseMaxRange (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasRiseMaxRange();
}
int defiPartition_hasFallMaxRange (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->hasFallMaxRange();
}
double defiPartition_partitionMin (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->partitionMin();
}
double defiPartition_partitionMax (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->partitionMax();
}
double defiPartition_riseMin (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->riseMin();
}
double defiPartition_fallMin (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->fallMin();
}
double defiPartition_riseMax (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->riseMax();
}
double defiPartition_fallMax (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->fallMax();
}
double defiPartition_riseMinLeft (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->riseMinLeft();
}
double defiPartition_fallMinLeft (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->fallMinLeft();
}
double defiPartition_riseMaxLeft (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->riseMaxLeft();
}
double defiPartition_fallMaxLeft (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->fallMaxLeft();
}
double defiPartition_riseMinRight (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->riseMinRight();
}
double defiPartition_fallMinRight (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->fallMinRight();
}
double defiPartition_riseMaxRight (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->riseMaxRight();
}
double defiPartition_fallMaxRight (const ::defiPartition* obj) {
return ((LefDefParser::defiPartition*)obj)->fallMaxRight();
}
void defiPartition_print (const ::defiPartition* obj, FILE* f) {
((LefDefParser::defiPartition*)obj)->print(f);
}