soot.toolkits.scalar

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.toolkits.scalar 
soot.toolkits.scalar
Soot scalar toolkit A number of scalar optimizations, and the flow analysis framework.
Java Source File NameTypeComment
AbstractBoundedFlowSet.javaClass provides functional code for most of the methods.
AbstractFlowAnalysis.javaClass An abstract class providing a metaframework for carrying out dataflow analysis.
AbstractFlowSet.javaClass provides functional code for most of the methods.
ArrayFlowUniverse.javaClass Provides an implementation of a flow universe, wrapping arrays.
ArrayPackedSet.javaClass Reference implementation for a BoundedFlowSet.
ArraySparseSet.javaClass Reference implementation for a FlowSet.
BackwardFlowAnalysis.javaClass Abstract class that provides the fixed point iteration functionality required by all BackwardFlowAnalyses.
BinaryIdentitySet.javaClass An optimized kind of IdentityHashSet that only holds two objects.
BoundedFlowSet.javaInterface Represents bounded information for flow analysis.
BranchedFlowAnalysis.javaClass Abstract class providing functionality for branched flow analysis. A branched flow analysis is one which can propagate different information to the successors of a node.
CollectionFlowUniverse.javaClass Provides an implementation of a flow universe, wrapping collections.
CombinedAnalysis.javaInterface Analysis that computes live locals, local defs, and local uses all at once.
CombinedDUAnalysis.javaClass Analysis that computes live locals, local defs, and local uses all at once.
FastColorer.javaClass Provides methods for register coloring.
FlowAnalysis.javaClass An abstract class providing a framework for carrying out dataflow analysis. Subclassing either BackwardFlowAnalysis or ForwardFlowAnalysis and providing implementations for the abstract methods will allow Soot to compute the corresponding flow analysis.
FlowSet.javaInterface Represents information for flow analysis.
FlowUniverse.javaInterface Provides an interface of a flow universe, used by an implementation of BoundedFlowSet to do complementation.
ForwardBranchedFlowAnalysis.javaClass Abstract class providing an engine for branched forward flow analysis.
ForwardFlowAnalysis.javaClass Abstract class that provides the fixed point iteration functionality required by all ForwardFlowAnalyses.
GuaranteedDefs.javaClass Find all locals guaranteed to be defined at (just before) a given program point.
IdentityPair.javaClass Just a pair of arbitrary objects.
InitAnalysis.javaClass An analysis to check whether or not local variables have been initialised.
LiveLocals.javaInterface Provides an interface for querying for the list of Locals that are live before an after a given unit in a method.
LocalDefs.javaInterface Provides an interface for querying for the definitions of a Local at a given Unit in a method.
LocalPacker.javaClass A BodyTransformer that attemps to minimize the number of local variables used in Body by 'reusing' them when possible.
LocalSplitter.javaClass A BodyTransformer that attemps to indentify and separate uses of a local varible that are independent of each other.
LocalUnitPair.javaClass Utility class used to package a Local and a Unit together.
LocalUses.javaInterface Provides an interface to find the Units that use a Local defined at a given Unit.
ObjectIntMapper.javaClass gives an injection of Objects to ints.
Pair.javaClass Just a pair of arbitrary objects.
SimpleLiveLocals.javaClass Analysis that provides an implementation of the LiveLocals interface.
SimpleLocalDefs.javaClass Analysis that provides an implementation of the LocalDefs interface.
SimpleLocalUses.javaClass Analysis that implements the LocalUses interface.
SmartLocalDefs.javaClass Analysis that provides an implementation of the LocalDefs interface.
UnitValueBoxPair.javaClass Utility class used to package a Unit and a ValueBox together.
UnusedLocalEliminator.javaClass A BodyTransformer that removes all unused local variables from a given Body.
ValueUnitPair.javaClass Utility class used to package a Value and a Unit together.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.