MCPcopy Index your code
hub / github.com/python/cpython / PseudoInstruction

Class PseudoInstruction

Tools/cases_generator/analyzer.py:303–316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

301
302@dataclass
303class PseudoInstruction:
304 name: str
305 stack: StackEffect
306 targets: list[Instruction]
307 as_sequence: bool
308 flags: list[str]
309 opcode: int = -1
310
311 def dump(self, indent: str) -> None:
312 print(indent, self.name, "->", " or ".join([t.name for t in self.targets]))
313
314 @property
315 def properties(self) -> Properties:
316 return Properties.from_list([i.properties for i in self.targets])
317
318
319@dataclass

Callers 1

add_pseudoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…