Presentation is loading. Please wait.

Presentation is loading. Please wait.

Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Program.

Similar presentations


Presentation on theme: "Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Program."— Presentation transcript:

1 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Program Slicing Tool for Effective Software Evolution Using Aspect-Oriented Technique Takashi Ishio Shinji Kusumoto Katsuro Inoue Osaka University {t-isio, kusumoto, inoue}@ist.osaka-u.ac.jp

2 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Background In software evolution process, software is modified to adapt for the changes of its specification. When a programmer changes structure and functions of a software, several bugs are usually injected. Debugging is an important task in software evolution.

3 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Debugging Large Scale Software Large scale software is difficult to debug. Especially, fault localization needs much cost since the location where a program crushed is not always close to the fault. Executed codes for one test case are usually small pieces of the program. Excluding automatically unrelated codes is effective for fault localization.

4 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Program Slicing Program Slicing extracts a slice of codes, which affects value of a specific variable. Program Slicing excludes unrelated codes to aid fault localization. a slice based on slice criteria ( 6, b ) 1: a = 5; 2: b = a + a; 3: if (b > 0) { 4: c = a; 5: } 6: d = b; 1: a = 5; 2: b = a + a; 3: if (b > 0) { 4: c = a; 5: } 6: d = b;

5 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Slice Calculation Process Phase 1: Extraction of dependence relations Data Dependence Relation: assignment  reference Control Dependence Relation: conditional statement  controlled block Phase 2: Construction of Program Dependence Graph node: a statement. edge: a dependence relation Phase 3: Traversal of PDG traversal backward from a node corresponding a slice criteria 1: a = 1; 2: c = 4; 3: b = a; 1: a = 1; 2: c = 4; 3: b = a; a Data Dependence 4: if (a < 1) { 5: b = a; 6: } 4: if (a < 1) { 5: b = a; 6: } Control Dependence Program Dependence Graph slice criteria

6 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Dependence-Cache (DC) slicing using dynamic information In slice calculation process, information about the statements actually executed is effective to decrease the slice size. Dynamic information excludes unexecuted codes from a slice. Dependence-Cache (DC) slicing method uses: Dynamic Data Dependence Analysis Static Control Dependence Analysis DC slicing calculates an accurate slice with lightweight costs.

7 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Implementation of dynamic analysis Dynamic analysis, collecting dynamic information during program execution, is a kind of logging (or tracing). Java Virtual Machine (JVM) Customization † +JVM can access all information of the runtime environment. -Customization depends on a specific JVM implementation. -Byte code optimization may affect analysis results. Java Debugger Interface (JDI) +JDI can access local variables, stack traces,... -High runtime cost Threads of control are blocked for each logging point. Although various ways exist in implementing the dynamic analysis, each one requires a high cost in implementation or in runtime. † F. Umemori et al.: “Design and Implementation of Bytecode-based Java Slicing System”, SCAM 2003 (to appear)

8 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Aspect-Oriented Programming A key feature of Aspect-Oriented Programming is separation of crosscutting concerns. AOP introduces a new module unit named aspect. In OOP, programmers cannot encapsulate crosscutting concerns: logging, error handling, some design patterns Programmers distribute many call statements into related classes for object interaction. It is hard to manage the distributed codes. In AOP, programmers write a crosscutting concern in an aspect. An aspect has information when the aspect is executed. Call statements are needless. When a concern is changed, programmers modify one aspect instead of related classes. AOP improves modularity, maintainability and reusability.

9 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Example of Aspect Logging: “Logs a method name for each method execution.” In OOP, logging codes are distributed in all classes. If logging specification is changed, programmers may modify all classes. In AOP, logging codes are encapsulated in the Logging Aspect. It is easy to maintain and reuse. Class C Class B Class A Logging Class Logging Aspect Class C Class B Class A logger.logs(value); when a method is executed, logger.logs(value) is called.

10 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 AspectJ, an AOP extension for Java AspectJ: an AOP extension for Java An aspect is defined as a set of advices. An advice consists of a procedure and pointcut designators (PCDs). PCDs describe when the procedure is executed. AspectJ compiler: aspects + Java class source  Java bytecode

11 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Features of AspectJ AspectJ provides the following PCDs: Method Call and Execution Field Assignment and Reference Exception Handling An advice body is written in plain Java code. An advice can access context information through thisJoinPoint object. Context information is: Which method is actually executed ? What type of object is accessed ?

12 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 How to implement logging in AspectJ: aspect LoggingAspect { pointcut allMethods(): execution(* *(..)) && !within(java.io.*); before(): allMethods(){ Logger.println(thisJoinPoint.getSignature()); } Example of AspectJ keyword for Aspect definition When the advice is executed. Pointcut is defined by PCDs. Pointcut represents events during program execution. In the advice body, programmers can access context information via thisJoinPoint object. It is needless to change logging target classes.

13 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Dynamic Analysis Aspect We implement dynamic analysis using AspectJ. Dynamic analysis aspect records a position of the assignment statement when a new value is assigned to a field, extracts a dynamic data dependence relation when the field is referred, collects method-call information for each thread (multi- threading), collects information when an exception is thrown and which handling clause caught the exception (exception- handling).

14 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Advantages of Aspect Approach Advantages Modularization of dynamic analysis Independent of a specific JVM implementation Independent of a byte-code optimizer ( JIT compiler ) Lightweight Analysis for large scale software. No local variables are dynamically analyzed. Local variables affects dependencies in one method. Little difference comes from dynamic information of local variables. No library classes are analyzed. We assume that library classes are reliable. less overhead: The aspect is linked to target program at compile time.

15 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Aspect-based Dynamic Analysis and Slice Calculation System: ADAS Debugging Support Tool using Program Slicing for Java Dynamic Analysis Aspect (written in AspectJ) Simple logging-like Implementation size: about 1000 LOC Program Slicing System (written in Java) Program Slicing is an application using dynamic information. The prototype is implemented as Eclipse plug-in.

16 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Architecture and Use Case of ADAS Java Source Dynamic Analysis Aspect Java Bytecode Java VM AspectJ Dynamic Info. Slice Calculation Tool program slice Static Info. slice criteria 3.execute a test case 1.edit 4.slice calculation Static Analyzer 2.compile

17 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Demonstration Slice calculation button Slice criterion selection Slice results indicated

18 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Evaluation: size of a slice Compare with customized JVM implementation † JVM approach: Precise DC Slice Our apparoch: omitting analysis for local variables. Target programs P1: A simple database (4 classes, 262 LOC) P2: A sorting program (5 classes, 228 LOC) P3: A slice calculation program (125 classes, about 16000 LOC) Our approach calculates a slice including some redundant code JVM can extract a precise slice using fine-grained information. AspectJVMAspect/JVM P136291.24 P250281.70 P38397081.19 size of a slice (LOC) † F. Umemori et al.: “Design and Implementation of Bytecode-based Java Slicing System”, SCAM 2003 (to appear)

19 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Evaluation: analysis cost Our approach shows good performance. Our approach is a coarse-grained, lightweight analysis. JVM approach is hard to apply a large scale software. Normal Execution Aspect Approach JVM Approach Aspect/NormalJVM/Normal P10.180.261.81.410.0 P20.190.392.82.114.7 P31.210.381.08.667.5 Running Time [seconds] ratio

20 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Evaluation: Cost of Implementation Aspect approach: Our module consists of the dynamic analysis aspect and data management classes. The total size is 1000 LOC. JVM approach: System consists of customized JVM and Java compiler. Customized compiler insert source code information into bytecode files. Size of additional code for the customization is about 50,000 LOC. Source code of the original JVM and compiler is 300,000 LOC. Programmers must re-customize the JVM whenever new version of JVM is released. Aspect approach is inexpensive.

21 Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Remark and Future Work Debugging is an important task for software evolution. Program slicing shows related code to a user. Dynamic information exclude unexecuted code. Dynamic Analysis Aspect is simple implementation, easy to maintain, customize. Future Work Extension of ADAS to calculate AspectJ slice, Improvement of Usability.


Download ppt "Software Engineering Laboratory, Department of Computer Science, Graduate School of Information Science and Technology, Osaka University IWPSE 2003 Program."

Similar presentations


Ads by Google