59 lines · plain
1%feature("docstring",2"Represents a collection of SBValues. Both :py:class:`SBFrame.GetVariables()` and3:py:class:`SBFrame.GetRegisters()` return a SBValueList.4 5SBValueList supports :py:class:`SBValue` iteration. For example (from test/lldbutil.py),::6 7 def get_registers(frame, kind):8 '''Returns the registers given the frame and the kind of registers desired.9 10 Returns None if there's no such kind.11 '''12 registerSet = frame.GetRegisters() # Return type of SBValueList.13 for value in registerSet:14 if kind.lower() in value.GetName().lower():15 return value16 17 return None18 19 def get_GPRs(frame):20 '''Returns the general purpose registers of the frame as an SBValue.21 22 The returned SBValue object is iterable. An example:23 ...24 from lldbutil import get_GPRs25 regs = get_GPRs(frame)26 for reg in regs:27 print('%s => %s' % (reg.GetName(), reg.GetValue()))28 ...29 '''30 return get_registers(frame, 'general purpose')31 32 def get_FPRs(frame):33 '''Returns the floating point registers of the frame as an SBValue.34 35 The returned SBValue object is iterable. An example:36 ...37 from lldbutil import get_FPRs38 regs = get_FPRs(frame)39 for reg in regs:40 print('%s => %s' % (reg.GetName(), reg.GetValue()))41 ...42 '''43 return get_registers(frame, 'floating point')44 45 def get_ESRs(frame):46 '''Returns the exception state registers of the frame as an SBValue.47 48 The returned SBValue object is iterable. An example:49 ...50 from lldbutil import get_ESRs51 regs = get_ESRs(frame)52 for reg in regs:53 print('%s => %s' % (reg.GetName(), reg.GetValue()))54 ...55 '''56 return get_registers(frame, 'exception state')57"58) lldb::SBValueList;59