Files
clang-p2996/lldb/test/API/commands/expression/formatters/foosynth.py
Jonas Devlieghere 2238dcc393 [NFC][Py Reformat] Reformat python files in lldb
This is an ongoing series of commits that are reformatting our Python
code. Reformatting is done with `black` (23.1.0).

If you end up having problems merging this commit because you have made
changes to a python file, the best way to handle that is to run `git
checkout --ours <yourfile>` and then reformat it with black.

RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style

Differential revision: https://reviews.llvm.org/D151460
2023-05-25 12:54:09 -07:00

33 lines
932 B
Python

import lldb
class FooSyntheticProvider:
def __init__(self, valobj, dict):
self.valobj = valobj
self.update()
def update(self):
self.adjust_for_architecture()
def num_children(self):
return 1
def get_child_at_index(self, index):
if index != 0:
return None
return self.i_ptr.Dereference()
def get_child_index(self, name):
if name == "*i_ptr":
return 0
return None
def adjust_for_architecture(self):
self.lp64 = self.valobj.GetTarget().GetProcess().GetAddressByteSize() == 8
self.is_little = (
self.valobj.GetTarget().GetProcess().GetByteOrder() == lldb.eByteOrderLittle
)
self.pointer_size = self.valobj.GetTarget().GetProcess().GetAddressByteSize()
self.bar = self.valobj.GetChildMemberWithName("b")
self.i_ptr = self.bar.GetChildMemberWithName("i_ptr")