| 243 | |
| 244 | |
| 245 | class Label: |
| 246 | |
| 247 | def __init__(self, name: str, spilled: bool, body: BlockStmt, properties: Properties): |
| 248 | self.name = name |
| 249 | self.spilled = spilled |
| 250 | self.body = body |
| 251 | self.properties = properties |
| 252 | |
| 253 | size:int = 0 |
| 254 | local_stores: list[lexer.Token] = [] |
| 255 | instruction_size = None |
| 256 | |
| 257 | def __str__(self) -> str: |
| 258 | return f"label({self.name})" |
| 259 | |
| 260 | |
| 261 | Part = Uop | Skip | Flush |
no outgoing calls
no test coverage detected
searching dependent graphs…