Class InitializationAnalysis
- java.lang.Object
-
- org.checkerframework.dataflow.analysis.AbstractAnalysis<V,S,T>
-
- org.checkerframework.dataflow.analysis.ForwardAnalysisImpl<V,S,T>
-
- org.checkerframework.framework.flow.CFAbstractAnalysis<CFValue,InitializationStore,InitializationTransfer>
-
- org.checkerframework.checker.initialization.InitializationAnalysis
-
- All Implemented Interfaces:
Analysis<CFValue,InitializationStore,InitializationTransfer>,ForwardAnalysis<CFValue,InitializationStore,InitializationTransfer>
public class InitializationAnalysis extends CFAbstractAnalysis<CFValue,InitializationStore,InitializationTransfer>
The analysis class for the initialization type system (serves as factory for the transfer function, stores, and abstract values.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.checkerframework.framework.flow.CFAbstractAnalysis
CFAbstractAnalysis.FieldInitialValue<V extends CFAbstractValue<V>>
-
Nested classes/interfaces inherited from class org.checkerframework.dataflow.analysis.AbstractAnalysis
AbstractAnalysis.Worklist
-
Nested classes/interfaces inherited from interface org.checkerframework.dataflow.analysis.Analysis
Analysis.BeforeOrAfter, Analysis.Direction
-
-
Field Summary
-
Fields inherited from class org.checkerframework.framework.flow.CFAbstractAnalysis
atypeFactory, checker, dependentTypesHelper, env, fieldValues, qualHierarchy, typeHierarchy, types
-
Fields inherited from class org.checkerframework.dataflow.analysis.ForwardAnalysisImpl
blockCount, elseStores, maxCountBeforeWidening, storesAtReturnStatements, thenStores
-
Fields inherited from class org.checkerframework.dataflow.analysis.AbstractAnalysis
cfg, currentInput, currentNode, currentTree, direction, finalLocalValues, inputs, isRunning, nodeValues, transferFunction, worklist
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedInitializationAnalysis(BaseTypeChecker checker, InitializationParentAnnotatedTypeFactory factory)Creates a newInitializationAnalysis.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable CFValuecreateAbstractValue(AnnotationMirrorSet annotations, javax.lang.model.type.TypeMirror underlyingType)Returns an abstract value containing the givenannotationsandunderlyingType.InitializationStorecreateCopiedStore(InitializationStore s)Returns an identical copy of the stores.InitializationStorecreateEmptyStore(boolean sequentialSemantics)Returns an empty store of the appropriate type.InitializationParentAnnotatedTypeFactorygetTypeFactory()-
Methods inherited from class org.checkerframework.framework.flow.CFAbstractAnalysis
createAbstractValue, createSingleAnnotationValue, createTransferFunction, defaultCreateAbstractValue, getEnv, getFieldInitialValues, getTypeHierarchy, getTypes, performAnalysis
-
Methods inherited from class org.checkerframework.dataflow.analysis.ForwardAnalysisImpl
addStoreBefore, callTransferFunction, getInput, getInputBefore, getReturnStatementStores, getStoreBefore, initFields, initInitialInputs, performAnalysis, performAnalysisBlock, propagateStoresTo, runAnalysisFor
-
Methods inherited from class org.checkerframework.dataflow.analysis.AbstractAnalysis
addToWorklist, getContainingClass, getContainingMethod, getCurrentTree, getDirection, getExceptionalExitStore, getNodesForTree, getNodeValues, getRegularExitStore, getResult, getTransferFunction, getValue, getValue, init, isIgnoredExceptionType, isRunning, readFromStore, setCurrentNode, setCurrentTree, updateNodeValues
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.checkerframework.dataflow.analysis.Analysis
getDirection, getExceptionalExitStore, getRegularExitStore, getResult, getTransferFunction, getValue, getValue, isRunning
-
-
-
-
Constructor Detail
-
InitializationAnalysis
protected InitializationAnalysis(BaseTypeChecker checker, InitializationParentAnnotatedTypeFactory factory)
Creates a newInitializationAnalysis.- Parameters:
checker- the checkerfactory- the factory
-
-
Method Detail
-
createEmptyStore
public InitializationStore createEmptyStore(boolean sequentialSemantics)
Description copied from class:CFAbstractAnalysisReturns an empty store of the appropriate type.- Specified by:
createEmptyStorein classCFAbstractAnalysis<CFValue,InitializationStore,InitializationTransfer>- Returns:
- an empty store of the appropriate type
-
createCopiedStore
public InitializationStore createCopiedStore(InitializationStore s)
Description copied from class:CFAbstractAnalysisReturns an identical copy of the stores.- Specified by:
createCopiedStorein classCFAbstractAnalysis<CFValue,InitializationStore,InitializationTransfer>- Returns:
- an identical copy of the store
s
-
createAbstractValue
public @Nullable CFValue createAbstractValue(AnnotationMirrorSet annotations, javax.lang.model.type.TypeMirror underlyingType)
Description copied from class:CFAbstractAnalysisReturns an abstract value containing the givenannotationsandunderlyingType. Returns null if the annotation set has missing annotations.- Specified by:
createAbstractValuein classCFAbstractAnalysis<CFValue,InitializationStore,InitializationTransfer>- Parameters:
annotations- the annotations for the result annotated typeunderlyingType- the unannotated type for the result annotated type- Returns:
- an abstract value containing the given
annotationsandunderlyingType
-
getTypeFactory
public InitializationParentAnnotatedTypeFactory getTypeFactory()
- Overrides:
getTypeFactoryin classCFAbstractAnalysis<CFValue,InitializationStore,InitializationTransfer>
-
-