当前位置: 首页>>代码示例>>Python>>正文


Python L.get_defined_functions方法代码示例

本文整理汇总了Python中incoq.compiler.incast.L.get_defined_functions方法的典型用法代码示例。如果您正苦于以下问题:Python L.get_defined_functions方法的具体用法?Python L.get_defined_functions怎么用?Python L.get_defined_functions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在incoq.compiler.incast.L的用法示例。


在下文中一共展示了L.get_defined_functions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: visit_Module

# 需要导入模块: from incoq.compiler.incast import L [as 别名]
# 或者: from incoq.compiler.incast.L import get_defined_functions [as 别名]
    def visit_Module(self, node):
        node = self.generic_visit(node)

        fv = self.fresh_vars
        ops = [L.SetAdd(), L.SetRemove()]
        funcs = []
        for op in ops:
            func = make_aggr_oper_maint_func(fv, self.aggrinv, op)
            funcs.append(func)
        if self.aggrinv.uses_demand:
            for op in ops:
                func = make_aggr_restr_maint_func(fv, self.aggrinv, op)
                funcs.append(func)

        func_names = L.get_defined_functions(tuple(funcs))
        self.maint_funcs.update(func_names)

        node = node._replace(body=tuple(funcs) + node.body)
        return node
开发者ID:jieaozhu,项目名称:dist_lang_reviews,代码行数:21,代码来源:trans.py

示例2: analyze_costs

# 需要导入模块: from incoq.compiler.incast import L [as 别名]
# 或者: from incoq.compiler.incast.L import get_defined_functions [as 别名]
def analyze_costs(tree):
    """Analyze the costs of the functions in the program and return
    a map from function name to cost. If recursion is present, only
    non-recursive functions are analyzed.
    """
    all_funcs = L.get_defined_functions(tree)
    graph = L.analyze_functions(tree, all_funcs,
                                allow_recursion=True)
    
    # Analyze the functions in topological order, constructing
    # func_costs as we go.
    func_costs = {}
    func_params = graph.param_map
    for f in graph.order:
        body = graph.body_map[f]
        cost = CallCostAnalyzer.run(body, func_params, func_costs)
        
        # Eliminate image key terms that aren't formal parameters.
        key_filter = lambda p: p if p in func_params[f] else None
        cost = ImgkeySubstitutor.run(cost, key_filter)
        
        func_costs[f] = cost
    
    return func_costs
开发者ID:jieaozhu,项目名称:dist_lang_reviews,代码行数:26,代码来源:analyze.py


注:本文中的incoq.compiler.incast.L.get_defined_functions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。