Displaying 2 results from an estimated 2 matches for "aliassettracket".
Did you mean:
aliassettracker
2009 May 29
0
[LLVMdev] difference between alias set tracker and alias analysis evaluator
...ave a problem with alias aliasing results returned by the alias set
tracker and the alias analysis evaluator.
so i call opt tool to run my module with the following options
"-anders-aa -aa-eval -print-alias-sets -print-all-alias-modref-info"
i use 2 classes to print alias analysis, the AliasSetTracket and
AliasAnalysisEvaluator.
but they give different results.
here is a sample program:
int main(){
int a[5];
struct {
char id[10];
int line;
} sym;
sym.line =a[1] + 10;
a[3] = 3;
sym.id[5] = a[3];
return 0;
}
and here is the ll file
defi...
2009 May 29
1
[LLVMdev] difference between alias set tracker and alias analysis evaluator
...ave a problem with alias aliasing results returned by the alias set
tracker and the alias analysis evaluator.
so i call opt tool to run my module with the following options
"-anders-aa -aa-eval -print-alias-sets -print-all-alias-modref-info"
i use 2 classes to print alias analysis, the AliasSetTracket and
AliasAnalysisEvaluator.
but they give different results.
here is a sample program:
int main(){
int a[5];
struct {
char id[10];
int line;
} sym;
sym.line =a[1] + 10;
a[3] = 3;
sym.id[5] = a[3];
return 0;
}
and here is the ll file
defi...