Class AliasAnalysisResult
A data structure that captures the result of applying alias analysis to a control-flow graph.
Inherited Members
Namespace: Flame.Compiler.Analysis
Assembly: Flame.Compiler.dll
Syntax
public abstract class AliasAnalysisResult
Methods
| Edit this page View SourceGetAliasing(ValueTag, ValueTag)
Gets the aliasing relation between two pointers.
Declaration
public abstract Aliasing GetAliasing(ValueTag first, ValueTag second)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueTag | first | The first pointer value to examine. |
| ValueTag | second | The second pointer value to examine. |
Returns
| Type | Description |
|---|---|
| Aliasing | A conservative approximation of the aliasing relation between
|