From: Haruaki Tamada Date: Thu, 1 Mar 2012 10:12:41 +0000 (+0900) Subject: cflib は plugins プロジェクトから,Stigmata直下のプロジェクトに移行したため,このリポジトリからは削除した. X-Git-Url: http://git.sourceforge.jp/view?p=stigmata%2Fstigmata-plugins.git;a=commitdiff_plain;h=0f81aaf05ae75d6fd2840cedfe1a4dcee010ae1a;ds=sidebyside cflib は plugins プロジェクトから,Stigmata直下のプロジェクトに移行したため,このリポジトリからは削除した. k-gram based birthmark と operand stack behavior birthmark を追加した. wsp も asm 4.0 向けに修正した. --- diff --git a/.gitignore b/.gitignore index b60de5b..9174f4d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,8 @@ -**/target +*~ +.DS_Store +._* +target +.classpath +.settings +.project +.djunitplugin diff --git a/cflib/pom.xml b/cflib/pom.xml deleted file mode 100644 index fc1aa28..0000000 --- a/cflib/pom.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - 4.0.0 - - plugins - jp.sourceforge.stigmata - 1.0 - - jp.sourceforge.stigmata.plugins - cflib - 1.0.0 - cflib - http://stigmata.sourceforge.jp/stigmata/plugins/cflib/ - - - - jp.sourceforge - stigmata - 2.0.0 - provided - - - asm - asm-all - 3.1 - compile - - - junit - junit - 4.8.1 - test - - - - - - - maven-release-plugin - - svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/plugins/trunk/cflib/ - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - copy-dependencies - compile - - copy-dependencies - - - ${project.build.directory} - runtime - - - - - - - diff --git a/cflib/src/main/java/jp/sourceforge/stigmata/birthmarks/BasicBlock.java b/cflib/src/main/java/jp/sourceforge/stigmata/birthmarks/BasicBlock.java deleted file mode 100644 index 228336b..0000000 --- a/cflib/src/main/java/jp/sourceforge/stigmata/birthmarks/BasicBlock.java +++ /dev/null @@ -1,124 +0,0 @@ -package jp.sourceforge.stigmata.birthmarks; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashSet; -import java.util.Iterator; -import java.util.List; -import java.util.Set; - -import org.objectweb.asm.Label; -import org.objectweb.asm.Opcodes; -import org.objectweb.asm.tree.AbstractInsnNode; -import org.objectweb.asm.tree.InsnNode; - -/** - * 基本ブロックを表すクラス. - * - * @author tamada - */ -public class BasicBlock { - private Set nexts = new HashSet(); - private List opcodes = new ArrayList(); - private Set prevs = new HashSet(); - Set