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