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