本文整理汇总了Python中ufora.native.FORA.splitControlFlowGraph方法的典型用法代码示例。如果您正苦于以下问题:Python FORA.splitControlFlowGraph方法的具体用法?Python FORA.splitControlFlowGraph怎么用?Python FORA.splitControlFlowGraph使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ufora.native.FORA
的用法示例。
在下文中一共展示了FORA.splitControlFlowGraph方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_cfgSplitting_7
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_7(self):
funString = "fun(f) { f(1) + f(2) }"
cfg = self.parseStringToFunction(funString).toCFG(1)
splits = ForaNative.splitControlFlowGraph(cfg, "block_0Let")
self.assertTrue(splits is not None)
示例2: test_cfgSplitting_5
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_5(self):
funString = "fun(f) { (f(1) + f(2)) + f(3) }"
cfg = self.parseStringToFunction(funString).toCFG(1)
steps = ForaNative.extractApplyStepsFromControlFlowGraph(cfg, None)
splits = ForaNative.splitControlFlowGraph(cfg, "block_0Let")
self.assertTrue(splits is not None)
示例3: test_cfgSplitting_1
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_1(self):
cfg1 = self.parseStringToFunction("fun(f) { f(1) + f(1+3) }").toCFG(1)
steps = ForaNative.extractApplyStepsFromControlFlowGraph(cfg1, "block_0Let")
self.assertEqual(len(steps), 4)
splits = ForaNative.splitControlFlowGraph(cfg1, "block_0Let")
self.assertTrue(splits is not None)
示例4: test_cfgSplitting_14
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_14(self):
funString = "fun((f,g,h,k)) { k(f(1), g(2), h(3)) }"
cfg = self.parseStringToFunction(funString).toCFG(1)
splits = ForaNative.splitControlFlowGraph(cfg, "block_7Let")
self.assertTrue(splits is not None)
示例5: test_cfgSplitting_12
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_12(self):
funString = "fun((f,g,h)) { f(g(h(1),2),3) }"
cfg = self.parseStringToFunction(funString).toCFG(1)
splits = ForaNative.splitControlFlowGraph(cfg, "block_7Let")
self.assertTrue(splits is None)
示例6: test_cfgSplitting_9
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_9(self):
funString = "fun((f,g)) { 1 + (f() + g()) }"
cfg = self.parseStringToFunction(funString).toCFG(1)
splits = ForaNative.splitControlFlowGraph(cfg, "block_7Let")
self.assertTrue(splits is not None)
示例7: test_cfgSplitting_3
# 需要导入模块: from ufora.native import FORA [as 别名]
# 或者: from ufora.native.FORA import splitControlFlowGraph [as 别名]
def test_cfgSplitting_3(self):
cfg1 = self.parseStringToFunction("fun(f) { 1 }").toCFG(1)
splits = ForaNative.splitControlFlowGraph(cfg1, None)
self.assertTrue(splits is None)