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