Source Code Cross Referenced for PartialConstructorFolder.java in  » Code-Analyzer » soot » soot » jimple » toolkits » base » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Code Analyzer » soot » soot.jimple.toolkits.base 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Soot - a J*va Optimization Framework
002:         * Copyright (C) 2004 Jennifer Lhotak
003:         *
004:         * This library is free software; you can redistribute it and/or
005:         * modify it under the terms of the GNU Lesser General Public
006:         * License as published by the Free Software Foundation; either
007:         * version 2.1 of the License, or (at your option) any later version.
008:         *
009:         * This library is distributed in the hope that it will be useful,
010:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
011:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
012:         * Lesser General Public License for more details.
013:         *
014:         * You should have received a copy of the GNU Lesser General Public
015:         * License along with this library; if not, write to the
016:         * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
017:         * Boston, MA 02111-1307, USA.
018:         */
019:
020:        /*
021:         * Modified by the Sable Research Group and others 1997-1999.  
022:         * See the 'credits' file distributed with Soot for the complete list of
023:         * contributors.  (Soot is distributed at http://www.sable.mcgill.ca/soot)
024:         */
025:
026:        package soot.jimple.toolkits.base;
027:
028:        import soot.options.*;
029:
030:        import soot.*;
031:        import soot.toolkits.scalar.*;
032:        import soot.jimple.*;
033:        import soot.toolkits.graph.*;
034:        import soot.util.*;
035:        import java.util.*;
036:
037:        public class PartialConstructorFolder extends BodyTransformer {
038:            //public JimpleConstructorFolder( Singletons.Global g ) {}
039:            //public static JimpleConstructorFolder v() { return G.v().JimpleConstructorFolder(); }
040:
041:            private List types;
042:
043:            public void setTypes(List t) {
044:                types = t;
045:            }
046:
047:            public List getTypes() {
048:                return types;
049:            }
050:
051:            /** This method pushes all newExpr down to be the stmt directly before every
052:             * invoke of the init only if they are in the types list*/
053:
054:            public void internalTransform(Body b, String phaseName, Map options) {
055:                JimpleBody body = (JimpleBody) b;
056:
057:                if (Options.v().verbose())
058:                    G.v().out.println("[" + body.getMethod().getName()
059:                            + "] Folding Jimple constructors...");
060:
061:                Chain units = body.getUnits();
062:                List<Unit> stmtList = new ArrayList<Unit>();
063:                stmtList.addAll(units);
064:
065:                Iterator<Unit> it = stmtList.iterator();
066:                Iterator<Unit> nextStmtIt = stmtList.iterator();
067:                // start ahead one
068:                nextStmtIt.next();
069:
070:                ExceptionalUnitGraph graph = new ExceptionalUnitGraph(body);
071:
072:                LocalDefs localDefs = new SmartLocalDefs(graph,
073:                        new SimpleLiveLocals(graph));
074:                LocalUses localUses = new SimpleLocalUses(graph, localDefs);
075:
076:                /* fold in NewExpr's with specialinvoke's */
077:                while (it.hasNext()) {
078:                    Stmt s = (Stmt) it.next();
079:
080:                    if (!(s instanceof  AssignStmt))
081:                        continue;
082:
083:                    /* this should be generalized to ArrayRefs */
084:                    // only deal with stmts that are an local = newExpr
085:                    Value lhs = ((AssignStmt) s).getLeftOp();
086:                    if (!(lhs instanceof  Local))
087:                        continue;
088:
089:                    Value rhs = ((AssignStmt) s).getRightOp();
090:                    if (!(rhs instanceof  NewExpr))
091:                        continue;
092:
093:                    //check if very next statement is invoke -->
094:                    //this indicates there is no control flow between
095:                    //new and invoke and should do nothing
096:                    if (nextStmtIt.hasNext()) {
097:                        Stmt next = (Stmt) nextStmtIt.next();
098:                        if (next instanceof  InvokeStmt) {
099:                            InvokeStmt invoke = (InvokeStmt) next;
100:
101:                            if (invoke.getInvokeExpr() instanceof  SpecialInvokeExpr) {
102:                                SpecialInvokeExpr invokeExpr = (SpecialInvokeExpr) invoke
103:                                        .getInvokeExpr();
104:                                if (invokeExpr.getBase() == lhs) {
105:                                    break;
106:                                }
107:                            }
108:                        }
109:                    }
110:
111:                    // check if new is in the types list - only process these
112:                    if (!types.contains(((NewExpr) rhs).getType()))
113:                        continue;
114:
115:                    List lu = localUses.getUsesOf(s);
116:                    Iterator luIter = lu.iterator();
117:                    boolean MadeNewInvokeExpr = false;
118:
119:                    while (luIter.hasNext()) {
120:                        Unit use = ((UnitValueBoxPair) (luIter.next())).unit;
121:                        if (!(use instanceof  InvokeStmt))
122:                            continue;
123:                        InvokeStmt is = (InvokeStmt) use;
124:                        if (!(is.getInvokeExpr() instanceof  SpecialInvokeExpr)
125:                                || lhs != ((SpecialInvokeExpr) is
126:                                        .getInvokeExpr()).getBase())
127:                            continue;
128:
129:                        //make a new one here 
130:                        AssignStmt constructStmt = Jimple.v().newAssignStmt(
131:                                ((DefinitionStmt) s).getLeftOp(),
132:                                ((DefinitionStmt) s).getRightOp());
133:                        constructStmt.setRightOp(Jimple.v().newNewExpr(
134:                                ((NewExpr) rhs).getBaseType()));
135:                        MadeNewInvokeExpr = true;
136:
137:                        // redirect jumps
138:                        use.redirectJumpsToThisTo(constructStmt);
139:                        // insert new one here
140:                        units.insertBefore(constructStmt, use);
141:
142:                        constructStmt.addTag(s.getTag("SourceLnPosTag"));
143:                    }
144:                    if (MadeNewInvokeExpr) {
145:                        units.remove(s);
146:                    }
147:                }
148:            }
149:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.