PhoenixBased Clone Detection using Suffix Trees - PowerPoint PPT Presentation

1 / 22
About This Presentation
Title:

PhoenixBased Clone Detection using Suffix Trees

Description:

Code Clones. A sequence of statements that are duplicated in ... To update code that is cloned will require all clones to be updated. Restructure/refactor ... – PowerPoint PPT presentation

Number of Views:97
Avg rating:3.0/5.0
Slides: 23
Provided by: robert794
Category:

less

Transcript and Presenter's Notes

Title: PhoenixBased Clone Detection using Suffix Trees


1
Phoenix-Based Clone Detection using Suffix Trees
Robert Tairas
http//www.cis.uab.edu/tairasr/clones
Advisor Dr. Jeff Gray
ACM Southeast Conference Melbourne, FL March 11,
2006
2
Code Clones
  • A sequence of statements that are duplicated in
    multiple locations in a program

Source Code
ClonedCode
_____ _______ _________ ___ ______ ___ ______ ____
__ _____ ________ ___ _______________ ____ _____
__ ______ _________ _____ _______ ________ ___ __
_____________
_______ _____ _________ _______ ___ ______ _______
_ __________ _______ ____ _______ ________ ___ __
_____________ ____ ______ _________ _____ ____
________ ____
__________ _______ ___ ________ ___ ____________
___ _____ ________ ___ _______________ ______ ___
____ ______ _______ _________ _______ ___ _______
_ ___ _____________
________ ___ _______________
3
Clones in Source Code
  • Copy-and-paste parts of code from one location to
    another
  • The copied code alreadyworks correctly
  • No time to be efficient
  • Research shows that5-10 of large scalecomputer
    programsare clones (Baxter, 98)

Source Code
_____ _______ _________ ___ ______ ___ ______ ____
__ _____ ________ ___ _______________ ____ _____
__ ______ _________ _____ _______ ________ ___ __
_____________
_______ _____ _________ _______ ___ ______ _______
_ __________ _______ ____ _______ ________ ___ __
_____________ ____ ______ _________ _____ ____
________ ____
__________ _______ ___ ________ ___ ____________
___ _____ ________ ___ _______________ ______ ___
____ ______ _______ _________ _______ ___ _______
_ ___ _____________
4
Clones in Source Code
  • Dominant decomposition A block of statements
    that performs a function/concern dominates
    another block
  • The two concerns crosscut each other
  • One concern will have to yield to the other
  • Related to Aspect Oriented Programming (AOP)

5
Clones in Source Code
  • logging in org.apache.tomcat
  • red shows lines of code that handle logging
  • not in just one place
  • not even in a small number of places

6
Clone Dilemma
  • Maintenance
  • To update code that is cloned will require all
    clones to be updated
  • Restructure/refactor
  • Separate into aspects

7
Contribution Automated Clone Detection
  • Searches for exact matching function level clones
    utilizing suffix tree structures in the Microsoft
    Phoenix framework

Microsoft Phoenix
Clone Detector
Source Code
Report of Clones
Suffix Trees
8
Types of Clones
Original code
int main() int x 1 int y x 5
return y
int func1() int x 1 int y x 5
return y
int func2() int p 1 int q p 5
return q
int func3() int s 1 int t s 5
s return t
Exact match
Exact match, with only the variable names
differing
Near exact match
As defined in an experiment comparing existing
clone detection techniques at the 1st
International Workshop on Detection of Software
Clones (02)
9
What is Phoenix?
  • Next-Generation Framework for
  • building Compilers
  • building Software Analysis Tools
  • Basis for Microsoft compilers for 10 years

More information http//research.microsoft.com/ph
oenix
Note Contents of this slide courtesy of John
Lefor at Microsoft Research
10
Compilers
Tools
Browser
Visualizer
Lint
HL Opts
LL Opts
Code Gen
HL Opts
LL Opts
LL Opts
HL Opts
Code Gen
Formatter
Obfuscator
Refactor
Xlator
Profiler
SecurityChecker
Phx APIs
Phoenix Core AST IR Syms Types
CFG SSA
Native Image
C IR
assembly
CAST
Profile
Phx AST
C
PREfast
Lex/Yacc
C
VB
C
Delphi
Cobol
Eiffel
Tiger
Note This slide courtesy of John Lefor at
Microsoft Research
11
Suffix Trees
  • A suffix tree of a string is a tree where each
    suffix of the string is represented by a path
    from the root to a leaf
  • In bioinformatics it is used to search for
    patterns in DNA or protein sequences

Example suffix tree for abgf
12
Another Suffix Tree Example
Suffix tree for abcebcf
12345678

abcebcf
8
f
bc
c
1
ebcf
7
ebcf
ebcf
4
f
f
6
2
3
5
Leaf numbers The number indicates the starting
position of the suffix from the left of the
string.
13
Another Suffix Tree Example
Suffix tree for abcebcf
12345678

abcebcf
8
f
c
1
ebcf
bcebcf
7
ebcf
4
f
2
6
3
Leaf numbers The number indicates the starting
position of the suffix from the left of the
string.
14
Another Suffix Tree Example
Two identical strings (abgf) separated by unique
terminating characters
Suffix tree for abgfabgf
Leaf numbers The first number indicates the
string. The second number indicates the starting
position of the suffix in that string.
15
Abstract Syntax Tree Nodes
int func2() return y
int func1() return x
FUNCDEFN
FUNCDEFN
COMPOUND
COMPOUND
RETURN
RETURN
SYMBOL
SYMBOL
Note Node names are Phoenix-defined.
16
Remember This?
Suffix tree for abgfabgf
a b g f a b g f
For exact function matching, were looking
for suffix tree nodes of edges, where the
edges include all the AST nodes of a function.
Leaf numbers The first number indicates the
function. The second number indicates the
starting position of the suffix in that function.
17
False Positives
Original code
int main() int x 1 int y x 5
return y
FUNCDEFN
COMPOUND
DECLARATION
CONSTANT
PLUS
DECLARATION
SYMBOL
CONSTANT
RETURN
SYMBOL
18
Phoenix Phases
  • Processes are divided into phases
  • Custom phases can be inserted to perform tasks
    such as software analysis
  • Phases are inserted through plug-ins in the
    form of a library (DLL) module

MicrosoftPhoenix
Plug-in
Custom Phase
Clone Detection Phase
19
Clone Detector in Phoenix
20
Case Study
21
Limitations and Future Work
  • Looks only for exact matches
  • Currently working on a process called hybrid
    dynamic programming, which includes the use of
    suffix trees (k-difference inexact matching)
  • Looks only at the function level
  • Enable multiple levels clone detection
  • Higher statement level Lower program level
  • Recognizes only C nodes
  • Coverage for other languages, such as C and C
  • Another approach language independent

22
Thank youQuestions?
Phoenix-Based Clone Detection using Suffix Trees
http//www.cis.uab.edu/tairasr/clones
Write a Comment
User Comments (0)
About PowerShow.com