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