types
Types used in Quokka
AddressSize
Bases: Enum
Address size
Source code in quokka/types.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
from_proto(address_size)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
76 77 78 79 80 81 82 83 84 85 86 |
|
BlockType
Bases: Enum
Block Type
Source code in quokka/types.py
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 |
|
from_proto(block_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|
DataType
Bases: Enum
Data Type
Source code in quokka/types.py
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 255 256 257 258 |
|
from_proto(data_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
|
EdgeType
Bases: Enum
Edge Type
Source code in quokka/types.py
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 |
|
from_proto(edge_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
|
Endianness
Bases: Enum
Endianness of the program
LE: Little endian (least significant bit first) BE: Big endian (most significant bit first)
TODO
See how we can support mixed endianness
Source code in quokka/types.py
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 |
|
from_proto(endianness)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
103 104 105 106 107 108 109 110 111 112 113 |
|
ExporterMode
Bases: IntEnum
Mode type
The exporter mode controls the type of exported data.
Source code in quokka/types.py
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
FunctionType
Bases: Enum
Function Type
Source code in quokka/types.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
from_proto(function_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
ReferenceType
Bases: Enum
Reference Type
Source code in quokka/types.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
from_proto(reference_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
RegAccessMode
Bases: Enum
Register access mode
Source code in quokka/types.py
51 52 53 54 55 56 |
|
SegmentType
Bases: Enum
Segment Type
Source code in quokka/types.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
from_proto(segment_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
StructureType
Bases: Enum
Structure Type
Source code in quokka/types.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
|
from_proto(structure_type)
staticmethod
Convert the protobuf value into this enumeration
Source code in quokka/types.py
299 300 301 302 303 304 305 306 307 308 309 310 |
|