Lines Matching full:frame
7 def get_registers(frame, kind):
8 '''Returns the registers given the frame and the kind of registers desired.
12 registerSet = frame.GetRegisters() # Return type of SBValueList.
19 def get_GPRs(frame):
20 '''Returns the general purpose registers of the frame as an SBValue.
25 regs = get_GPRs(frame)
30 return get_registers(frame, 'general purpose')
32 def get_FPRs(frame):
33 '''Returns the floating point registers of the frame as an SBValue.
38 regs = get_FPRs(frame)
43 return get_registers(frame, 'floating point')
45 def get_ESRs(frame):
46 '''Returns the exception state registers of the frame as an SBValue.
51 regs = get_ESRs(frame)
56 return get_registers(frame, 'exception state')