scalable detection of
play

Scalable Detection of Semantic Clones Mark Gabel Lingxiao Jiang - PowerPoint PPT Presentation

Scalable Detection of Semantic Clones Mark Gabel Lingxiao Jiang Zhendong Su Motivation Maintenance problem Refactoring Automated procedure extraction Aspect mining Program understanding Copy/paste bugs 2 Clone


  1. Scalable Detection of Semantic Clones Mark Gabel Lingxiao Jiang Zhendong Su

  2. Motivation  Maintenance problem  Refactoring  Automated procedure extraction  Aspect mining  Program understanding  Copy/paste bugs 2

  3. Clone Detection  Definition  The enumeration of similar fragments of a program or set of programs  Input:  A program or set of programs  Output:  “Clone Groups,” sets of equivalent fragments  In terms of a similarity function 3

  4. Similarity of Program Fragments Strings Semantic Awareness of Clone Detection  1992: Baker, parameterized string algorithm  Current open source tools: Checkstyle, PMD 4

  5. Similarity of Program Fragments Strings Tokens Semantic Awareness of Clone Detection  2002: Kamiya et al., CCFinder  2004: Li et al., CP-Miner  2007: Basit et al., R epeated T okens F inder 5

  6. Similarity of Program Fragments Syntax Strings Tokens Trees Semantic Awareness of Clone Detection  1998: Baxter et al., CloneDR  2004: Wahler et al., XML-based  2007: Jiang et al., Deckard 6

  7. Interleaved Clones int func( int i, int j) { int func_timed( int i, int j) { int k = 10; int k = 10; while (i < k) { long start = get_time_millis(); i++; long finish; } while (i < k) { j = 2 * k; i++; printf("i=%d, j=%d\n", i, j); } return k; finish = get_time_millis(); } printf("loop took %dms\n", finish − start); j = 2 * k; printf("i=%d, j=%d\n", i, j); Clones: return k; Separate Computations } 7

  8. Program Dependence Graphs i=0 void void bar() { bar() { j=1 int int j = j = 1; int int i = i = 0; while (j < while (j < 10 10) j++; j++; j<10 j++ printf( printf( “%d” , i); , i); printf( “%d” , j); printf( , j); } Str j Str i Call Call 8

  9. Similarity of Program Fragments Syntax Program Dependence Strings Tokens Trees Graphs Semantic Awareness of Clone Detection  2000, 2001: Komondoor and Horwitz  2006: Liu et al., GPLAG  This work – first scalable technique 9

  10. Approach 1. Separate distinct computations as PDG subgraphs. PDG AST 2. Map subgraphs to structured syntax forests. Program 3. Find clones within the forests. Separate Map to Distinct Structured Syntax Computations Semantic Clone Detection Algorithm Clones PDG AST Subgraphs Forests 10

  11. Separating Computations  Connected vertices have a semantic relationship  Break implicit control dependences and partition the PDG into weakly connected components . i=0 j=1 vo void id ba bar() r() { { int int j = = 1; j<10 j++ int i = int = 0; while (j < while (j < 10 10) j++; j++ Str j Str i print pri ntf( f( “%d” , i) i); print pri ntf( f( “%d” , j) j); } Call Call 11

  12. Semantic Threads struct file_stat *compute_statistics() { struct file_stat *result = malloc( sizeof ( struct file_stat)); int avg_temp_file_size = 0; int avg_data_file_size = 0; /* iterate the temp files */ ... /* iterate the data files */ ... /* avg results and store in avg_temp_file_size */ ... /* avg results and store in avg_data_file_size */ ... result−>temp_size = avg_temp_file_size; result−>data_size = avg_data_file_size; return result; } 12

  13. Semantic Threads int count_list_nodes( struct list_node *head) { int i = 0; struct list_node *tail = head−>prev; while (head != tail && i < MAX) { i++; head = head−>next; } return i; } 13

  14. Enumerating Semantic Threads  Semantic thread :  Forward slice or union of forward slices  Interesting semantic threads :  Overlap by at most g nodes  Set of maximal size  No fully subsumed threads 14

  15. Semantic Threads in Practice Procs w/ Procs w/ Procedures interleaved interleaved g =0 STs g =3 STs GIMP 13,337 903 3,008 GTK 13,284 697 2,380 MySQL 14,408 1,618 2,441 Postgres 9,276 1,221 2,267 Linux 136,480 10,609 22,514 15

  16. Mapping and Solving  Syntactic Image: m : G  { AST }  Interesting Semantic Threads  Interesting AST Forests  Clone Detection: DECKARD  Numerical vector approximation of trees  Clustering as a near-neighbor problem  Scalable solution 16

  17. Implementation  PDGs, ASTs  Grammatech CodeSurfer: C/C++  Semantic Threads, Clone Detection  Parallel Java  Clustering  MIT Locality Sensitive Hashing (native) 17

  18. Analysis Times 18

  19. Quantitative Results 19

  20. Example 20

  21. Example 21

  22. Another Example 22

  23. Fragment 1 23

  24. Fragment 2 24

  25. Fragment 3 25

  26. Summary  First scalable clone detection algorithm based on PDGs  Reduction to a simpler tree-based problem  Scalable, effective  New classes of clones  Demonstrated to exist  Enabling technology: new applications 26

  27. Complete PDG body entry formal-in formal-in decl func() func() int i int j int k Key: statement node control point node expr data dependency k = 10 control dependency expr ctrl-pt expr call-site j = 2 * k i < k i++ printf() expr return k actual-in actual-in actual-in “i =%d, return i j j=% d” exit return k formal-out func() 27

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend