Example #1
0
 def frame_pos(self, i, box_type):
     return locations.StackLocation(i, get_fp_offset(self.base_ofs, i),
                                    box_type)
Example #2
0
 def frame_pos(self, i, box_type):
     return locations.StackLocation(i, get_fp_offset(self.base_ofs, i), box_type)
Example #3
0
def stack_float(i, **kwargs):
    return StackLocation(i, get_fp_offset(0, i + 1), type=FLOAT)
Example #4
0
def stack(i, **kwargs):
    return StackLocation(i, get_fp_offset(0, i), **kwargs)
Example #5
0
def stack_float(i, **kwargs):
    return StackLocation(i, get_fp_offset(0, i + 1), type=FLOAT)
Example #6
0
def stack(i, **kwargs):
    return StackLocation(i, get_fp_offset(0, i), **kwargs)