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


Java GraphColoring.color方法代码示例

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


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

示例1: enterScope

import com.google.javascript.jscomp.graph.GraphColoring; //导入方法依赖的package包/类
@Override
public void enterScope(NodeTraversal t) {
  // TODO(user): We CAN do this in the global scope, just need to be
  // careful when something is exported. Liveness uses bit-vector for live
  // sets so I don't see compilation time will be a problem for running this
  // pass in the global scope.
  Scope scope = t.getScope();
  if (scope.isGlobal()) {
    return;
  }
  ControlFlowGraph<Node> cfg = t.getControlFlowGraph();

  LiveVariablesAnalysis liveness =
      new LiveVariablesAnalysis(cfg, scope, compiler);
  liveness.analyze();

  UndiGraph<Var, Void> interferenceGraph =
      computeVariableNamesInterferenceGraph(
          t, cfg, liveness.getEscapedLocals());

  GraphColoring<Var, Void> coloring =
      new GreedyGraphColoring<Var, Void>(interferenceGraph,
          coloringTieBreaker);

  coloring.color();
  colorings.push(coloring);
}
 
开发者ID:andyjko,项目名称:feedlack,代码行数:28,代码来源:CoalesceVariableNames.java

示例2: enterScope

import com.google.javascript.jscomp.graph.GraphColoring; //导入方法依赖的package包/类
@Override
public void enterScope(NodeTraversal t) {
  // TODO(user): We CAN do this in the global scope, just need to be
  // careful when something is exported. Liveness uses bit-vector for live
  // sets so I don't see compilation time will be a problem for running this
  // pass in the global scope.
  if (t.inGlobalScope()) {
    return;
  }
  Scope scope = t.getScope();
  ControlFlowGraph<Node> cfg = t.getControlFlowGraph();

  LiveVariablesAnalysis liveness =
      new LiveVariablesAnalysis(cfg, scope, compiler);
  // If the function has exactly 2 params, mark them as escaped. This is
  // a work-around for an IE bug where it throws an exception if you
  // write to the parameters of the callback in a sort(). See:
  // http://code.google.com/p/closure-compiler/issues/detail?id=58
  if (scope.getRootNode().getFirstChild().getNext().getChildCount() == 2) {
    liveness.markAllParametersEscaped();
  }
  liveness.analyze();

  UndiGraph<Var, Void> interferenceGraph =
      computeVariableNamesInterferenceGraph(
          t, cfg, liveness.getEscapedLocals());

  GraphColoring<Var, Void> coloring =
      new GreedyGraphColoring<Var, Void>(interferenceGraph,
          coloringTieBreaker);

  coloring.color();
  colorings.push(coloring);
}
 
开发者ID:ehsan,项目名称:js-symbolic-executor,代码行数:35,代码来源:CoalesceVariableNames.java

示例3: enterScope

import com.google.javascript.jscomp.graph.GraphColoring; //导入方法依赖的package包/类
@Override
public void enterScope(NodeTraversal t) {
  Scope scope = t.getScope();
  if (!shouldOptimizeScope(scope)) {
    return;
  }

  ControlFlowGraph<Node> cfg = t.getControlFlowGraph();
  LiveVariablesAnalysis liveness =
      new LiveVariablesAnalysis(cfg, scope, compiler);
  // If the function has exactly 2 params, mark them as escaped. This is
  // a work-around for an IE bug where it throws an exception if you
  // write to the parameters of the callback in a sort(). See:
  // http://code.google.com/p/closure-compiler/issues/detail?id=58
  if (scope.getRootNode().getFirstChild().getNext().getChildCount() == 2) {
    liveness.markAllParametersEscaped();
  }
  liveness.analyze();

  UndiGraph<Var, Void> interferenceGraph =
      computeVariableNamesInterferenceGraph(
          t, cfg, liveness.getEscapedLocals());

  GraphColoring<Var, Void> coloring =
      new GreedyGraphColoring<Var, Void>(interferenceGraph,
          coloringTieBreaker);

  coloring.color();
  colorings.push(coloring);
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:31,代码来源:CoalesceVariableNames.java

示例4: enterScope

import com.google.javascript.jscomp.graph.GraphColoring; //导入方法依赖的package包/类
@Override
public void enterScope(NodeTraversal t) {
  Scope scope = t.getScope();
  if (!shouldOptimizeScope(scope)) {
    return;
  }

  ControlFlowGraph<Node> cfg = t.getControlFlowGraph();
  LiveVariablesAnalysis liveness =
      new LiveVariablesAnalysis(cfg, scope, compiler);
  // If the function has exactly 2 params, mark them as escaped. This is
  // a work-around for an IE bug where it throws an exception if you
  // write to the parameters of the callback in a sort(). See:
  // http://code.google.com/p/closure-compiler/issues/detail?id=58
  if (scope.getRootNode().getFirstChild().getNext().getChildCount() == 2) {
    liveness.markAllParametersEscaped();
  }
  liveness.analyze();

  UndiGraph<Var, Void> interferenceGraph =
      computeVariableNamesInterferenceGraph(
          t, cfg, liveness.getEscapedLocals());

  GraphColoring<Var, Void> coloring =
      new GreedyGraphColoring<>(interferenceGraph,
          coloringTieBreaker);

  coloring.color();
  colorings.push(coloring);
}
 
开发者ID:nicks,项目名称:closure-compiler-old,代码行数:31,代码来源:CoalesceVariableNames.java

示例5: enterScope

import com.google.javascript.jscomp.graph.GraphColoring; //导入方法依赖的package包/类
@Override
public void enterScope(NodeTraversal t) {
  Scope scope = t.getScope();
  if (!shouldOptimizeScope(t)) {
    return;
  }

  checkState(scope.isFunctionScope(), scope);

  // live variables analysis is based off of the control flow graph
  ControlFlowGraph<Node> cfg = t.getControlFlowGraph();

  liveness =
      new LiveVariablesAnalysis(
          cfg, scope, null, compiler, new Es6SyntacticScopeCreator(compiler));

  if (compiler.getOptions().getLanguageOut() == CompilerOptions.LanguageMode.ECMASCRIPT3) {
    // If the function has exactly 2 params, mark them as escaped. This is a work-around for a
    // bug in IE 8 and below, where it throws an exception if you write to the parameters of the
    // callback in a sort(). See http://blickly.github.io/closure-compiler-issues/#58 and
    // https://www.zachleat.com/web/array-sort/
    Node enclosingFunction = scope.getRootNode();
    if (NodeUtil.getFunctionParameters(enclosingFunction).hasTwoChildren()) {
      liveness.markAllParametersEscaped();
    }
  }

  liveness.analyze();
  liveAnalyses.push(liveness);

  // The interference graph has the function's variables as its nodes and any interference
  // between the variables as the edges. Interference between two variables means that they are
  // alive at overlapping times, which means that their variable names cannot be coalesced.
  UndiGraph<Var, Void> interferenceGraph =
      computeVariableNamesInterferenceGraph(cfg, liveness.getEscapedLocals());

  // Color any interfering variables with different colors and any variables that can be safely
  // coalesced wih the same color.
  GraphColoring<Var, Void> coloring =
      new GreedyGraphColoring<>(interferenceGraph, coloringTieBreaker);
  coloring.color();
  colorings.push(coloring);
}
 
开发者ID:google,项目名称:closure-compiler,代码行数:44,代码来源:CoalesceVariableNames.java


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