MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ILRegisterStack

Class ILRegisterStack

python/lowlevelil.py:134–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132
133@dataclass(frozen=True)
134class ILRegisterStack:
135 arch: 'architecture.Architecture'
136 index: 'architecture.RegisterStackIndex'
137
138 def __repr__(self):
139 return f"<ILRegisterStack: {self.name}>"
140
141 def __str__(self):
142 return self.name
143
144 def __int__(self):
145 return self.index
146
147 @property
148 def info(self) -> 'architecture.RegisterStackInfo':
149 return self.arch.reg_stacks[self.name]
150
151 @property
152 def name(self) -> 'architecture.RegisterStackName':
153 return self.arch.get_reg_stack_name(self.index)
154
155
156@dataclass(frozen=True)

Callers 6

_get_reg_stackMethod · 0.85
_get_reg_stack_ssaMethod · 0.85
reg_stacksMethod · 0.85
ssa_reg_stacksMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected