WALA/com.ibm.wala.core/src/com/ibm/wala/ssa
Erik Derr ee13713c4d Impl of IMethod.is(Wala)Synthetic and IClass.isSynthetic (#359)
* Impl of IMethod isSynthetic and isWalaSynthetic

So far IMethod.isSynthetic referred to WALA-generated helper functions
and there was no equivalent to check whether an IMethod is synthetic in
terms of compiler-generated.

To make naming consistent this patch first renames the isSynthetic to
isWalaSynthetic to clearly indicate that a given IMethod was generated
by WALA. Then, we re-introduce isSynthetic that from now on checks
whether an IMethod is synthetic/compiler-generated (referring to the
synthetic flag in bytecode)

* Implementation of IClass.isSynthetic

Complementary to IMethod.isSynthetic, this method checks whether
an IClass is compiler-generated.

* updated JavaDoc
2018-10-02 22:28:21 -07:00
..
analysis Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
AllIntegerDueToBranchePiPolicy.java Fix numerous unescaped "<" and ">" in Javadoc @author tags 2016-11-27 21:24:03 -06:00
AuxiliaryCache.java Escape "<" and ">" in Javadoc when not used as HTML tag syntax 2017-12-19 16:53:52 -06:00
CompoundPiPolicy.java Fixed a bug, which was introduced in the previous commit. (Resulted in 2015-10-23 09:48:20 +02:00
ConstantValue.java Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
DefUse.java Escape "<" and ">" in Javadoc when not used as HTML tag syntax 2017-12-19 16:53:52 -06:00
DefaultIRFactory.java Impl of IMethod.is(Wala)Synthetic and IClass.isSynthetic (#359) 2018-10-02 22:28:21 -07:00
IAuxiliaryCache.java Escape "<" and ">" in Javadoc when not used as HTML tag syntax 2017-12-19 16:53:52 -06:00
IR.java add default methods to instruction visitors 2018-07-10 21:53:48 -04:00
IRFactory.java Convert all Java source files to use Unix line endings; no semantic change 2012-09-04 15:56:05 -07:00
IRView.java add some abstraction to IR, using IRView 2017-03-11 13:22:45 -05:00
ISSABasicBlock.java merge 2013-06-25 11:57:37 -04:00
IVisitorWithAddresses.java Convert all Java source files to use Unix line endings; no semantic change 2012-09-04 15:56:05 -07:00
InstanceOfPiPolicy.java "<verbatim>" is not a valid HTML tag; perhaps "<pre>" was intended? 2017-12-19 16:53:55 -06:00
NullTestPiPolicy.java "<verbatim>" is not a valid HTML tag; perhaps "<pre>" was intended? 2017-12-19 16:53:55 -06:00
PhiValue.java Merge branch 'wala' into master 2013-07-02 14:23:24 +02:00
ReflectiveMemberAccess.java cross-cutting changes to make more of WALA runnable with TeaVM. The biggest change is refactoring to AnalysisCache and friends; since TeaVM does not support SoftReference, I needed to add a layer of interfaces so that I can use a more simpleminded caching implementation for TeaVM. There are other changes to Module and friends to break connections with File and URL, which also cause TeaVM grief. I also organized imports in many places to remove unused types that caused trouble. 2017-02-02 20:33:27 -05:00
SSAAbstractBinaryInstruction.java cross-cutting changes to make more of WALA runnable with TeaVM. The biggest change is refactoring to AnalysisCache and friends; since TeaVM does not support SoftReference, I needed to add a layer of interfaces so that I can use a more simpleminded caching implementation for TeaVM. There are other changes to Module and friends to break connections with File and URL, which also cause TeaVM grief. I also organized imports in many places to remove unused types that caused trouble. 2017-02-02 20:33:27 -05:00
SSAAbstractInvokeInstruction.java rename getNumberOfParameters to getNumberOfPositionalParameters since the Python front end now supports keyword parameters 2018-04-12 19:09:25 -04:00
SSAAbstractThrowInstruction.java re-enable assertion 2014-10-10 17:44:06 -04:00
SSAAbstractUnaryInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAAddressOfInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAArrayLengthInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAArrayLoadInstruction.java Merge branch 'wala' into master 2012-11-06 04:23:10 +01:00
SSAArrayReferenceInstruction.java minor changes: remove debug code and sync with main branch 2014-08-01 12:27:21 +02:00
SSAArrayStoreInstruction.java Merge branch 'wala' into master 2012-11-06 04:23:10 +01:00
SSABinaryOpInstruction.java fixes for for ... in ... form in JavaScript 2015-07-24 22:44:10 -04:00
SSABuilder.java Escape "<" and ">" in Javadoc when not used as HTML tag syntax 2017-12-19 16:53:52 -06:00
SSACFG.java refactoring of CAst front end machinery to allow more reuse 2018-01-25 14:42:27 -05:00
SSACache.java Escape "<" and ">" in Javadoc when not used as HTML tag syntax 2017-12-19 16:53:52 -06:00
SSACheckCastInstruction.java "@param" parameter name must match the name of some formal parameter 2017-12-19 16:53:55 -06:00
SSAComparisonInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAConditionalBranchInstruction.java remove 'Custom Change' markers 2015-06-25 09:12:37 +02:00
SSAConversionInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAFieldAccessInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAGetCaughtExceptionInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAGetInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAGotoInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAIndirectionData.java "<\tt>" is not how you close an HTML "<tt>" tag 2017-12-19 16:53:56 -06:00
SSAInstanceofInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAInstruction.java add default methods to instruction visitors 2018-07-10 21:53:48 -04:00
SSAInstructionFactory.java more generalization for reuse 2018-02-17 22:08:09 +01:00
SSAInvokeDynamicInstruction.java Java 8 suport enhancements, mostly to model lambdas compiled to 2015-08-12 15:20:21 -04:00
SSAInvokeInstruction.java rename getNumberOfParameters to getNumberOfPositionalParameters since the Python front end now supports keyword parameters 2018-04-12 19:09:25 -04:00
SSALoadIndirectInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSALoadMetadataInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAMonitorInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSANewInstruction.java Use modern for-each loops where possible 2017-11-28 14:44:53 -06:00
SSAOptions.java Convert all Java source files to use Unix line endings; no semantic change 2012-09-04 15:56:05 -07:00
SSAPhiInstruction.java Fix several broken cross-references in Javadoc comments 2018-01-17 10:35:49 -08:00
SSAPiInstruction.java "<verbatim>" is not a valid HTML tag; perhaps "<pre>" was intended? 2017-12-19 16:53:55 -06:00
SSAPiNodePolicy.java Added Support for creating pi nodes for more than on variable. 2015-08-19 17:46:58 +02:00
SSAPutInstruction.java Merge branch 'master' of https://github.com/wala/WALA 2014-10-06 15:43:42 -04:00
SSAReturnInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAStoreIndirectInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSASwitchInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAThrowInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
SSAUnaryOpInstruction.java cleanup ssa instructions in wala.core 2014-07-29 19:43:58 +02:00
ShrikeIndirectionData.java Remove type arguments that Java 1.7+ can infer for us 2017-12-04 14:04:39 -08:00
SymbolTable.java Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
Value.java Convert all Java source files to use Unix line endings; no semantic change 2012-09-04 15:56:05 -07:00
package.html more conversion to Unix line endings 2012-09-04 15:59:50 -07:00