data_type
ArrayType
Bases: ComplexType
Array type
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
proto
|
CompositeType
|
Protobuf data |
required |
program
|
Program
|
Back reference to the program |
required |
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Type name |
size |
Type size (if known) |
|
c_str |
C declaration of the type |
Source code in bindings/python/quokka/data_type.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | |
array_size
property
Return the number of items in the array
element_type
property
Return the type of the array elements
__init__(index, proto, program)
Constructor
Source code in bindings/python/quokka/data_type.py
268 269 270 | |
BaseType
Bases: CoreType, IntEnum
Data Type
Source code in bindings/python/quokka/data_type.py
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 | |
c_str
property
Return the C declaration of this type
size
property
Size of the data type in bytes
type_index
property
Return the protobuf type index of this type
__str__()
String representation of the data type
Source code in bindings/python/quokka/data_type.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
from_proto(data_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in bindings/python/quokka/data_type.py
77 78 79 80 | |
ComplexType
Bases: CoreType
Source code in bindings/python/quokka/data_type.py
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 | |
comments
property
Return the type comments
data_read_refs_to
property
Returns all data read reference to this instruction
data_refs_to
property
Returns all data reference to this type
data_write_refs_to
property
Returns all data write reference to this instruction
CoreType
Bases: ABC
Abstract base class for all types in quokka
Source code in bindings/python/quokka/data_type.py
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 | |
is_array
property
Return True if this type is an array
is_base_type
property
Return True if this type is a base type
is_composite
property
Return True if this type is a composite type (struct, union, array, pointer)
is_enum
property
Return True if this type is an enum
is_member
property
Return True if this type is a member (StructureTypeMember or EnumTypeMember)
is_pointer
property
Return True if this type is a pointer
is_struct
property
Return True if this type is a structure
is_union
property
Return True if this type is a union
EnumABCMeta
Bases: EnumMeta, ABCMeta
Combined metaclass for ABC + Enum compatibility
Source code in bindings/python/quokka/data_type.py
59 60 61 | |
EnumType
Bases: ComplexType
Base class for all enums in quokka
Source code in bindings/python/quokka/data_type.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | |
base_type
property
Return the base type of the enum
members
property
Return the enum members as a mapping from member names to members
__init__(index, proto, program)
Create an enum from a protobuf enum value
Source code in bindings/python/quokka/data_type.py
219 220 221 222 223 224 225 226 | |
__iter__()
Iterate over the enum members
Source code in bindings/python/quokka/data_type.py
240 241 242 | |
EnumTypeMember
Bases: CoreType
EnumTypeMember
This class represents enum members.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
member
|
EnumValue
|
Protobuf data |
required |
enum_type
|
EnumType
|
Reference to the parent enum type |
required |
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Member name |
size |
int
|
Member size (if known) |
value |
int
|
Member value |
comments |
list[str]
|
Member comments |
Source code in bindings/python/quokka/data_type.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | |
base_type
property
Return the base type of the enum member
comments
property
Return the enum member comments
data_refs_to
property
Returns all data reference to this type
parent
property
Back reference to the parent enum
__init__(member, enum_type)
Constructor
Source code in bindings/python/quokka/data_type.py
177 178 179 180 181 182 183 184 | |
PointerType
Bases: ComplexType
Pointer type
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
proto
|
CompositeType
|
Protobuf data |
required |
program
|
Program
|
Back reference to the program |
required |
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Type name |
size |
Type size (if known) |
|
c_str |
C declaration of the type |
Source code in bindings/python/quokka/data_type.py
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | |
pointed_type
property
Return the type of the pointed element
__init__(index, proto, program)
Constructor
Source code in bindings/python/quokka/data_type.py
297 298 299 | |
StructureType
Bases: dict, ComplexType
Structure
Members are stored in a dict keyed by bit offset and also in an ordered
list (_members_list) for positional access.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
structure
|
Structure protobuf data |
required | |
program
|
Program
|
Program back reference |
required |
Attributes:
| Name | Type | Description |
|---|---|---|
program |
Program backreference |
|
name |
str
|
Structure name |
size |
Structure size (if known) |
|
type |
Structure type |
|
comments |
list[str]
|
Structure comments |
Source code in bindings/python/quokka/data_type.py
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | |
members
cached
property
Return all members in declaration order
__init__(index, proto, program)
Constructor
Source code in bindings/python/quokka/data_type.py
387 388 389 390 391 392 393 394 | |
is_variable_size()
Is the structure of variable size?
Source code in bindings/python/quokka/data_type.py
401 402 403 | |
StructureTypeMember
Bases: CoreType
StructureMember
This class represents structure members (fields).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
member
|
Member
|
Protobuf data |
required |
structure
|
StructureType
|
Reference to the parent structure |
required |
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Member name |
offset |
int
|
Bit offset within the parent composite type |
size |
int
|
Member size in bits (0 for variable-length members) |
type |
TypeT
|
Member data type |
comments |
list[str]
|
Member comments |
Source code in bindings/python/quokka/data_type.py
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | |
comments
property
Return the structure member comments
data_refs_to
property
Returns all data reference to this type.
Addresses can originates from code or data.
parent
property
Back reference to the parent structure
type
property
Return the type of the member
__init__(member, structure)
Constructor
Source code in bindings/python/quokka/data_type.py
327 328 329 330 331 332 333 334 | |
UnionType
Bases: StructureType
Union
This class represents a union. It is a special case of structure where all members are at the same offset. To avoid dict-key collisions the dict is keyed by positional index instead of offset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
structure
|
Structure protobuf data |
required | |
program
|
Program
|
Program back reference |
required |
Source code in bindings/python/quokka/data_type.py
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | |