Code Clone Analysis and Application

Similar documents
An Experience Report on Analyzing Industrial Software Systems Using Code Clone Detection Techniques

Refactoring Support Based on Code Clone Analysis

On Refactoring for Open Source Java Program

1/30/18. Overview. Code Clones. Code Clone Categorization. Code Clones. Code Clone Categorization. Key Points of Code Clones

On Refactoring Support Based on Code Clone Dependency Relation

Lecture 25 Clone Detection CCFinder. EE 382V Spring 2009 Software Evolution - Instructor Miryung Kim

Rearranging the Order of Program Statements for Code Clone Detection

Classification of Java Programs in SPARS-J. Kazuo Kobori, Tetsuo Yamamoto, Makoto Matsusita and Katsuro Inoue Osaka University

A Novel Technique for Retrieving Source Code Duplication

Detection and Behavior Identification of Higher-Level Clones in Software

CCFinderSW: Clone Detection Tool with Flexible Multilingual Tokenization

Token based clone detection using program slicing

EVALUATION OF TOKEN BASED TOOLS ON THE BASIS OF CLONE METRICS

Automatic Mining of Functionally Equivalent Code Fragments via Random Testing. Lingxiao Jiang and Zhendong Su

Folding Repeated Instructions for Improving Token-based Code Clone Detection

The Reverse Engineering in Oriented Aspect Detection of semantics clones

Clone Detection using Textual and Metric Analysis to figure out all Types of Clones

Software Clone Detection. Kevin Tang Mar. 29, 2012

Software Quality Analysis by Code Clones in Industrial Legacy Software

Problematic Code Clones Identification using Multiple Detection Results

Code Clone Detection Technique Using Program Execution Traces

Keywords Code cloning, Clone detection, Software metrics, Potential clones, Clone pairs, Clone classes. Fig. 1 Code with clones

Extracting Code Clones for Refactoring Using Combinations of Clone Metrics

Keywords Clone detection, metrics computation, hybrid approach, complexity, byte code

Detection of Non Continguous Clones in Software using Program Slicing

Small Scale Detection

Zjednodušení zdrojového kódu pomocí grafové struktury

KClone: A Proposed Approach to Fast Precise Code Clone Detection

Visualization of Clone Detection Results

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler Front-End

Master Thesis. Type-3 Code Clone Detection Using The Smith-Waterman Algorithm

DETECTING SIMPLE AND FILE CLONES IN SOFTWARE

Deckard: Scalable and Accurate Tree-based Detection of Code Clones. Lingxiao Jiang, Ghassan Misherghi, Zhendong Su, Stephane Glondu

Thomas LaToza 5/5/2005 A Literature Review of Clone Detection Analysis

To Enhance Type 4 Clone Detection in Clone Testing Swati Sharma #1, Priyanka Mehta #2 1 M.Tech Scholar,

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler so far

Clone Detection via Structural Abstraction

CS1622. Semantic Analysis. The Compiler So Far. Lecture 15 Semantic Analysis. How to build symbol tables How to use them to find

Gapped Code Clone Detection with Lightweight Source Code Analysis

The role of semantic analysis in a compiler

A Technique to Detect Multi-grained Code Clones

A Tree Kernel Based Approach for Clone Detection

COMPARISON AND EVALUATION ON METRICS

Pace University. Fundamental Concepts of CS121 1

Project Compiler. CS031 TA Help Session November 28, 2011

DCCD: An Efficient and Scalable Distributed Code Clone Detection Technique for Big Code

Inheritance Metrics: What do they Measure?

Sub-clones: Considering the Part Rather than the Whole

Incremental Code Clone Detection: A PDG-based Approach

Identification of Structural Clones Using Association Rule and Clustering

Code Duplication. Harald Gall seal.ifi.uzh.ch/evolution

Code Similarity Detection by Program Dependence Graph

Anatomy of a Compiler. Overview of Semantic Analysis. The Compiler So Far. Why a Separate Semantic Analysis?

CSC 467 Lecture 13-14: Semantic Analysis

DDMD AND AUTOMATED CONVERSION FROM C++ TO D

Incremental Clone Detection and Elimination for Erlang Programs

CA Compiler Construction

Accuracy Enhancement in Code Clone Detection Using Advance Normalization

The Structure of a Syntax-Directed Compiler

A Language Independent Approach for Detecting Duplicated Code

Lecture 8 CS 412/413 Spring '00 -- Andrew Myers 2. Lecture 8 CS 412/413 Spring '00 -- Andrew Myers 4

An Ethnographic Study of Copy and Paste Programming Practices in OOPL

Enhancing Source-Based Clone Detection Using Intermediate Representation

Semantic Analysis. Lecture 9. February 7, 2018

CA Compiler Construction

Code Clone Detector: A Hybrid Approach on Java Byte Code

LECTURE 3. Compiler Phases

Faculty of Electrical Engineering, Mathematics, and Computer Science Delft University of Technology

COMP 3002: Compiler Construction. Pat Morin School of Computer Science

Compiling clones: What happens?

Performance Evaluation and Comparative Analysis of Code- Clone-Detection Techniques and Tools

Abstract. We define an origin relationship as follows, based on [12].

Data-Flow Analysis Foundations

The Compiler So Far. CSC 4181 Compiler Construction. Semantic Analysis. Beyond Syntax. Goals of a Semantic Analyzer.

G Programming Languages - Fall 2012

On the Robustness of Clone Detection to Code Obfuscation

Clone code detector using Boyer Moore string search algorithm integrated with ontology editor

Toward a Taxonomy of Clones in Source Code: A Case Study

1 Lexical Considerations

JavaScript: Sort of a Big Deal,

CSE P 501 Compilers. Implementing ASTs (in Java) Hal Perkins Autumn /20/ Hal Perkins & UW CSE H-1

Towards the Code Clone Analysis in Heterogeneous Software Products

CCFinder: A Multi-Linguistic Token-based Code Clone Detection System for Large Scale Source Code

Chapter 11, Testing, Part 2: Integration and System Testing

A Proposal of Refactoring Method for Existing Program Using Code Clone Detection and Impact Analysis Method

A Metric-based Approach for Reconstructing Methods in Object-Oriented Systems

Impact of Dependency Graph in Software Testing

Software Clone Detection Using Cosine Distance Similarity

Lecture 8: Recursion and Iteration. Exceptions. Declarative Programming.

A Simple Syntax-Directed Translator

CPS 506 Comparative Programming Languages. Syntax Specification

Chapter 4 Defining Classes I

SourcererCC -- Scaling Code Clone Detection to Big-Code

Clone Detection Using Abstract Syntax Suffix Trees

When do We Run a Compiler?

6.821 Programming Languages Handout Fall MASSACHVSETTS INSTITVTE OF TECHNOLOGY Department of Electrical Engineering and Compvter Science

Assistant Professor, CSE Dept

Inheritance and Interfaces

CSE P 501 Compilers. Implementing ASTs (in Java) Hal Perkins Winter /22/ Hal Perkins & UW CSE H-1

SOURCE CODE RETRIEVAL USING SEQUENCE BASED SIMILARITY

Transcription:

Code Clone Analysis and Application Katsuro Inoue Osaka University

Talk Structure Clone Detection CCFinder and Associate Tools Applications Summary of Code Clone Analysis and Application

Clone Detection

What is Code Clone? A code fragment which has identical or similar code fragments in source code Introduced in source code because of various reasons code reuse by `copy-and-paste stereotyped function ex. file open, DB connect, intentional iteration performance enhancement It makes software maintenance more difficult If we modify a code clone with many similar code fragments, it is necessary to consider whether or not we have to modify each of them It is likely to overlook code clone copy-and-paste

Simple Example AFG::AFG(JaObject* obj) { objname = afg"; object = obj; } AFG::~AFG() { for(unsigned int i = 0; i < children.size(); i++) if(children[i]!= NULL) delete children[i];... for(unsigned int i = 0; i < nodes.size(); i++) if(nodes[i]!= NULL) delete nodes[i]; }

Definition of Code Clone No single or generic definition of code clone So far, several methods of code clone detection have been proposed, and each of them has its own definition about code clone Various detection methods 1. Line-based comparison 2. AST (Abstract Syntax Tree) based comparison 3. PDG (Program Dependency Graph) based comparison 4. Metrics comparison 5. Token-based comparison

Detection Method 1. Line-Based Comparison Detect code clone by comparing source code on line unit[1] Before comparison,tabs and white-spaces are eliminated This is a method of an early days Detection accuracy is low Cannot detect code clones written in different coding styles ex. `{ position of if-statement or while-statement Cannot detect code clones using different variable names we want to identify the same logic code as code clones even if variable names are different [1]B. S. Baker, A Program for Identifying Duplicated Code, Proc. Computing Science and Statistics 24 th Symposium on the Interface, pp.49-57, Mar. 1992.

Detection Method 2. AST Based Comparison Parse source code, and construct AST (Abstract Syntax Tree) Similar sutrees are identified as code clones[2] The differences of code style and variable name are eliminated Fairly practical method Commercial tool CloneDR: http://www.semanticdesigns.com/products/clone/ [2] I.D. Baxter, A. Yahin, L. Moura, M.S. Anna, and L. Bier, Clone Detection Using Abstract Syntax Trees, Proc. International Conference on Software Maintenance 98, pp368-377, 16-19, Nov. 1998.

Detection Method 3. PDG Based Comparison Build PDG (Program Dependence Graph) using the result of semantic analysis Similar sub-graphs are identified as code clones [3] The detection accuracy is very high Can detect code clones which are not detected in other methods semantic clone, reordered clone Require complex computation It is very difficult to apply to large software [3] R. Komondoor and S. Horwitz, Using slicing to identify duplication in source code, Proc. the 8th International Symposium on Static Analysis, pp.40-56, July, 16-18, 2001.

Detection Method 4. Metrics Comparison Calculate metrics for each function unit Units with the similar metrics values are identified as code clones [4] Partly similar units are not detected Suitable to large scale analysis [4] J. Mayland, C. Leblanc, and E.M. Merlo, Experiment on the automatic detection of function clones in a software system using metrics, Proc. International Conference on Software Maintenance 96, pp.244-253, Nov. 1996.

Detection Method 5. Token Based Comparison Compare token sequences of source code, and identify the similar subsequence as code clones[5] Before comparison, tokens of identifier (type name, variable name, method name, ) are replaced by the same special token (parameterization) The Scalability is very high M Loc / 5-20 min. [5] T. Kamiya, S. Kusumoto, and K. Inoue, CCFinder: A multi-linguistic token-based code clone detection system for large scale source code, IEEE Transactions on Software Engineering, vol. 28, no. 7, pp. 654-670, Jul. 2002.

CCFinder and Associate Tools

Clone Pair and Clone Set Clone Pair a pair of identical or similar code fragments Clone Set a set of identical or similar fragments C1 C2 C4 Clone Pair (C1, C2) (C1, C4) Clone Set {C1, C2, C4} {C3, C5} C3 C5 (C2, C4) (C3, C5)

Our Code Clone Research Develop tools Detection tool: CCFinder Visualization tool: Gemini Refactoring support tool: Aries Change support tool: Libra Deliver our tools to domestic or overseas organizations/individuals More than 100 companies uses our tools! Promote academic-industrial collaboration Organize code clone seminars Manage mailing-lists

Detection tool: Development of CCFinder Developed by industry requirement Maintenance of a huge system More than 10M LOC, more than 20 years old Maintenance of code clones by hand had been performed, but... Token-base clone detection tool CCFinder Normalization of name space Parameterization of user-defined names Removal of table initialization Identification of module delimiter Suffix-tree algorithm CCFinder can analyze the system of millions line scale in 5-30 min.

Detection tool: CCFinder Detection Process Source files 1. 1. static void $ void $ foo ( foo() ( ) ) throws throws $ { RESyntaxException $ $ { String a { 2. 2. [ String ] = new $ a[] $ String = [ new [] String {] { $ $ [] [] { "123,400", "abc", "orange 100" }; }; 3. 3. org.apache.regexp.re } ; pat = new org.apache.regexp.re("[0-9,]+"); RE 4. $ pat $ = new 4. int sum = 0; 0; RE $ ( "[0-9,]+" $ ) ; int $ sum $ = $ 0 5. 5. for (inti i = 0; 0; i i < a.length; ++i) ; for ( int $ $ i = 0 $ ; $ i < 6. 6. if if (pat.match(a[i])) a $. length $ ; ++ ; ++ $ i ) ) if if( ( $ pat 7. 7. matchsum ( a += [ Sample.parseNumber(pat.getParen(0));. $ ( $ [ $ i ] ] ) ) ) ) $ sum 8. 8. += System.out.println("sum Sample $. $. parsenumber ( $. $ ( ( pat $. = getparen " + sum); ( 0 9. 9. } ) ) ; System $. $. out. $. println ( $ ( "sum = " 10. + static sum $ ) void ; } goo(string static void $ $ goo [] [] ( a) a) ( $ String throws RESyntaxException { 11. a $ RE [ ] exp ) = throws new RESyntaxException $ RE("[0-9,]+"); { $ $ = { RE exp = new RE $ ( "[0-9,]+" $ ) 0; ; ) $ ; $ int = sum $ = 0 12. int sum = 0; ; ( $ $ i = 0 $ ; $ i < 13. for (inti i = 0; i i < a.length; ++i) a $. length $ ; ++ ; ++ $ i ) ) if if( ( $ exp 14. if if (exp.match(a[i])). match $ ( ( $ a [ [ $ i ] ] ) ) ) ) $ sum 15. sum += parsenumber(exp.getparen(0)); += $. parsenumber $ ( $. ( $ exp (. $ getparen ) ) ( 0 ) ) 16. ; System.out.println("sum $. $.. $. ( $ ( + $ = " " + + sum sum); 17. }) ; } ) ; } Lexical analysis Token sequence Transformation Transformed token sequence Match detection Clones on on transformed sequence Formatting Clone pairs

Suffix-tree Suffix tree is a tree that satisfies the following conditions. 1. A leaf node represents the starting position of sub-string. 2. A path from root node to a leaf node represents a sub-string. 3. First characters of labels of all the edges from one node are different from each other. A common path means a clone x y z% % 6 7 xyxyz% y xyz% z% 1 3 5 xyz% z% 2 4 1234567 xxyxyz%

Visualization Tool: Gemini Outline Visualize code clones detected by CCFinder CCFinder outputs the detection result to a text file Provide interactive analyses of code clones Scatter Plot Clone metrics File metrics Filter out unimportant code clones

Visualization tool: Gemini Scatter Plot Visually show where code clones are Both the vertical and horizontal axes represent the token sequence of source code The original point is the upper left corner Dot means corresponding two tokens on the two axes are the same Symmetric to main diagonal (show only lower left) D1 D2 F1 F2 F3 F4 a b c a b c c c a b d e f a b c c d e f D1 D2 F1 F2 F3 F4 a b c a b c c c a b d e f a b c c d e f F1, F2, F3, F4 : files D1, D2 : directories : matched position detected as a practical code clone : matched position detected as a non -interesting code clone

Visualization tool: Gemini Clone and File Metrics Metrics are used to quantitatively characterize entities Clone metrics LEN(S): the average length of code fragments (the number of tokens) in clone set S POP(S): the number of code fragments in S NIF(S): the number of source files including any fragments of S RNR(S): the ratio of non-repeated code sequence in S File metrics ROC(F): the ratio of duplication of file F if completely duplicated, the value is 1.0 if not duplicated at all, the value is 0,0 NOC(F): the number of code fragments of any clone set in file F NOF(F): the number of files sharing any code clones with file F

Visualization tool: Gemini Metric RNR By a lot of experience, we fount that CCFinder detects a lot of code clones from monotonous or repetitive fragment consecutive entries of switch-statements consecutive variable declarations or method invocations Filtering metric: RNR(S) Represents the ratio of non-repeated code sequence in S Definition RNR(S) = 1 - Tokensrepeated(C) C S Tokensall(C) C S Tokensall(C) : Number of tokens in code fragment C Tokensrepeated(C) : Number of repeated tokens in C

Visualization tool: Gemini Selection of Clone Set We introduced selection mechanism, Metric Graph Each metric has parallel coordinate axes A polygonal line is drawn per clone set The user can specify the upper and lower limits of each metric The hatching part is the range bounded by the upper and lower limit A clone set is selected state if its all metric values are within the range The user can easily browse source code of selected code clones 3 1.0 3 4 LEN RNR NIF POP S 3 S 1 S 2 2 0.0 1 2 3 1.0 3 4 S 3 S 1 S 2 Before Selection After Selection 2 0.0 1 2 LEN RNR NIF POP

Refactoring Support System: Aries (1) Structural code clones are regarded as the target of refactoring 1. Detect clone pairs by CCFinder 2. Transform the detected clone pairs into clone sets 3. Extract structural parts as structural code clones from the detected clone sets What is structural code clone? example: Java language Declaration: class declaration, interface declaration Method: method body, constructor, static initializer statement: do, for, if, switch, synchronized, try, while

Code clones which CCFinder detects Code clones which Aries extracts fragment 1 fragment 2 609: reset(); 623: } 610: grammar = g; 624: 611: // Lookup make-switch threshold in the grammar 625: // generic Lookup options bitset-test threshold in the gram 612: if (grammar.hasoption("codegenmakeswitchthreshold")) 626: if (grammar.hasoption("codegenbitsett { 613: try { 627: try { 614: makeswitchthreshold = grammar.getintegeroption("codegenmakeswitchthre 628: bitsettestthreshold = 615: //System.out.println("setting codegenmakeswitchthreshold 629: //System.out.println("setting to " + makeswitcht co 616: } catch (NumberFormatException e) 630: { } catch (NumberFormatException e 617: tool.error( 631: tool.error( 618: "option 'codegenmakeswitchthreshold' 632: must be "option an integer", 'codegenbitsette 619: grammar.getclassname(), 633: grammar.getclassname( 620: grammar.getoption("codegenmakeswitchthreshold").getline() 634: grammar.getoption("code 621: ); 635: ); 622: } 636: } 623: } 637: } 624: 638: 625: // Lookup bitset-test threshold in the grammar 639: generic // Lookup options debug code-gen in the gramma 626: if (grammar.hasoption("codegenbitsettestthreshold")) 640: if (grammar.hasoption("codegendebug" { 627: try { 641: Token t = grammar.getoption("code 628: bitsettestthreshold = grammar.getintegeroption("codegenbitsettestthreshold 642: if (t.gettext().equals("true")) {

Refactoring Support System: Aries (2) Following refactoring patterns[1][2] can be used to remove code sets including structural code clones Extract Class, Extract Method, Extract Super Class, Form Template Method, Move Method, Parameterize Method, Pull Up Constructor, Pull Up Method, For each clone set, Aries suggests which refactoring pattern is applicable by using metrics. [1]: M. Fowler: Refactoring: Improving the Design of Existing Code, Addison-Wesley, 1999. [2]: http://www.refactoring.com/, 2004.

example Clone set S includes fragments f Refactoring Support System: 1 and f Aries 2. In fragment f 1, externally defined variable b and (3) c are referred and a is assigned to. Fragment f 2 is same as f 1. NRV(S): represents the average number of externally defined variables referred in the fragment of a clone set S then NRV(S) = ( 2 + 2 ) / 2 = 2 NSV(S): represents the average NSV(S) number = ( 1 + 1 of ) externally / 2 = 1 defined variables assigned to in the fragment of a clone set S Definition int a, b, c; if( ){ ; Clone set S includes fragment f 1, f 2,, f n s i is the number of externally defined variable assignment which fragment f i refers = b + c; = b + c; t i is the number of externally defined variable which fragment f i assigns assignment } a = ; ; Fragment f 1 reference int a, b, c; if( ){ ; } a = ; ; Fragment f 2 reference

example 3 example Clone set 2 S includes fragments f 1 and f 2. If Clone all classes set S includes which include fragments f f 1 and f 2. 1 and f 2 don t have example common If all 1: fragments parent class, of clone set S are included in a Clone class set and S its includes direct fragments child classes, f 1 and f 2. If all fragments then DCH(S) of clone set = S are included in a same class, then DCH(S) = 1 then DCH(S) = 0 Refactoring Support System: Aries (4) DCH(S): represents the position and distance between each fragment of a clone set S Definition class A Clone set S includes fragment f 1, f 2,,f n class Fragment A f i exists class in class B C i Class class C p is Aa class which locates lowest position in C 1, C 2,,C n on class fragment hierarchy f 1 fragment f 2 fragment f 1 fragment f 2 If no common parent class of C 1,C 2,,C n exists, the value of DCH(S) is This metric is measured class Cfor only the class hierarchy where target software exists. class B fragment f 1 fragment f 2

Change Support System: Libra Input a code fragment

Change Support System: Libra (2) Find clones between the input and target

Applications

Academic-industrial collaboration: Code Clone Seminar We have periodically organized code clone seminars from Dec 2002 Seminar is the place to exchange views with industrial people Seminar overview Tool demonstration Lecture of how to use code clone information Case study of companies using our tools

Case Studies Open source software FreeBSD, NetBSD, Linux(C, 7MLOC) JDK Libraries(Java 1.8MLOC) Qt(C++, 240KLOC) Commercial software(more than 100 companies), Students excise of Osaka University Court evidence for software copyright suit

Case study 1: Similarity between FreeBSD, NetBSD, Linux Result There are many code clones between FreeBSD and NetBSD There are a little code clones between Linux and FreeBSD/NetBSD Their histories can explain the result The ancestors of FreeBSD and NetBSD are the same Linux was made from scratch FreeBSD 4.0 Linux 2.4.0 NetBSD 1.5 FreeBSD 4.0 Linux 2.4.0 NetBSD 1.5

Case study 2: Students Excise Target Programs developed on a programming exercise in Osaka Univ. Simple compiler for Pascal written in C language This exercise consists of 3 steps Purpose STEP1: develop a syntax checker STEP2: develop a semantics checker by extending his/her syntax checker STEP3: develop a total compiler by extending his/her semantic checker Check the stepwise development Check plagiarisms

Result There were a lot of code clones between S2 and S5 We did not use the detection result for evaluating their excises S1 S2 S3 S4 S5 S1 S2 S2 S3 S4 S5 S5

Case study 3: IPA/SEC Advanced Project Target A car-traffic information system using heterogeneous sensors, developed by 5 Japanese companies The project manager had little knowledge of the source code since each company indelepndently developed the components Purpose Grasp features of black-boxed source code Approach Analyzed twice, after the unit test (280,000LOC), and after the combined test (300,000LOC) The minimum size of detected code clone is 30 tokens

IPA/SEC Advanced Project: Duplicated Ratio The below graph illustrates the distribution of duplicated ratio of the sub-system developed by a company We interviewed developers of the sub-system They added library code to the system to add new functions right before combined test

IPA/SEC Advanced Project: Scatter Plot Analysis Scatter Plot of company X In part A, there are many noninteresting code clones output code for debug (consecutive printf-statements) check data validity consecutive if-statements In part B, there are many code clones across directories This part treats vehicle position information Each directory include a single kind of vehicles, e.g., taxi, bus, or track Logical structures are mostly the same A B

IPA/SEC Advanced Project: Clone Metrics Analysis LEN: A clone set detected from a company included 154-lines code fragments A code fragment was in file AAAXXXBBB.cpp The other code fragment was in file AAAYYYBBB.cpp In code fragment of AAAYYYBBB.cpp, some function names and comments include XXX This implies that a `copy-and-paste was done from AAAXXXBBB.cpp to AAAYYYBBB.cpp

IPA/SEC Advanced Project: Clone Metrics Analysis NIF: The greatest value of NIF of a company was 8 (The clone set involved in 8 files) Each code fragment checks whether or not the end of string is NULL. If not, add NULL Whole of methods were duplicated It means that these code clones are easily merged by moving to utility package

IPA/SEC Advanced Project: File Metrics Analysis NOC: A file contained 358 code clones Code clones were scattered widely in the file No bug-related code clones were found, but the maintainability of the file is questionable The file size is very big (over 10KLines) Various processes are included

IPA/SEC Advanced Project: File Metrics Analysis ROC: Two files had very high duplicated ratio(96%) A file is for an off-line process The other file is for an on-line process with the same algorithm Developers knew the presence of these code clones In the design process, they decided to separate off-line and on-line processes

Summary of Code Clone Analysis and Application

Conclusion We have developed Code clone analysis tools Detection tool: CCFinder Visualization tool: Gemini Refactoring support tool: Aries Debug support tool: Libra We have promoted academic-industrial collaboration Organize code clone seminars Manage mailing lists We have applied our tools to various software

Future Direction CCFinderX Token analyzer is definable System analysis via code clones associated with other metrics Architecture evolution by the view of code clones

Resources Papers T. Kamiya, S. Kusumoto, and K. Inoue, CCFinder: A multi-linguistic token-based code clone detection system for large scale source code, IEEE Transactions on Software Engineering, vol. 28, no. 7, pp. 654-670, Jul. 2002. Many Others... See our home page Web CCFinder: http://sel.ist.osaka-u.ac.jp/cdtools/index-e.html CCFinderX: http://www.ccfinder.net/ccfinderx.html Tools See home pages

END