Displaying 13 results from an estimated 13 matches for "createtypebasedaliasanalysispass".
2012 Oct 19
2
[LLVMdev] Choosing an alias analyzer
...n lib/Transforms/IPO/PassManagerBuilder.cpp: addInitialAliasAnalysisPasses,
I see this code
------
// Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
// BasicAliasAnalysis wins if they disagree. This is intended to help
// support "obvious" type-punning idioms.
PM.add(createTypeBasedAliasAnalysisPass());
PM.add(createBasicAliasAnalysisPass());
}
------
My goal is to use ScalarEvolutionAliasAnalysis in MemoryDependenceAnalysis.
When I do, getPassName in MemoryDependenceAnalysis (by stepping into
getAnalysisUsage), I get
$39 = 0x399f778 "Basic Alias Analysis (stateless AA impl)"
T...
2015 Jan 14
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...>> >
>> > In Transforms/IPO/PassManagerBuilder.cpp and CodeGen/Passes.cpp we see
>> > this sequence:
>> >
>> >
>> >
>> > if (UseCFLAA)
>> >
>> > PM.add(createCFLAliasAnalysisPass());
>> >
>> > PM.add(createTypeBasedAliasAnalysisPass());
>> >
>> > PM.add(createScopedNoAliasAAPass());
>> >
>> > PM.add(createBasicAliasAnalysisPass());
>> >
>> >
>> >
>> > So are you recommending changing to the sequence below instead?
>> >
>> >
>> >...
2015 Jan 13
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...esses the flags -mllvm use-cfl-aa-in-codegen
> and –mllvm use-cfl-aa, right?
>
>
>
> In Transforms/IPO/PassManagerBuilder.cpp and CodeGen/Passes.cpp we see
> this sequence:
>
>
>
> if (UseCFLAA)
>
> PM.add(createCFLAliasAnalysisPass());
>
> PM.add(createTypeBasedAliasAnalysisPass());
>
> PM.add(createScopedNoAliasAAPass());
>
> PM.add(createBasicAliasAnalysisPass());
>
>
>
> So are you recommending changing to the sequence below instead?
>
>
> Not quite:
>
>
> addPass(createTypeBasedAliasAnalysisPass());
>
> addPass(...
2015 Jan 14
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...mllvm use-cfl-aa, right?
> >
> >
> >
> > In Transforms/IPO/PassManagerBuilder.cpp and CodeGen/Passes.cpp we see
> > this sequence:
> >
> >
> >
> > if (UseCFLAA)
> >
> > PM.add(createCFLAliasAnalysisPass());
> >
> > PM.add(createTypeBasedAliasAnalysisPass());
> >
> > PM.add(createScopedNoAliasAAPass());
> >
> > PM.add(createBasicAliasAnalysisPass());
> >
> >
> >
> > So are you recommending changing to the sequence below instead?
> >
> >
> > Not quite:
> >
> >
> > add...
2015 Jan 15
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
On Thu, Jan 15, 2015 at 1:26 PM, Nick Lewycky <nlewycky at google.com> wrote:
> On 15 January 2015 at 13:10, Daniel Berlin <dberlin at dberlin.org> wrote:
>
>> Yes.
>> I've attached an updated patch that does the following:
>>
>> 1. Fixes the partialalias of globals/arguments
>> 2. Enables partialalias for cases where nothing has been unified to
2015 Jan 15
2
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...mllvm use-cfl-aa, right?
> >
> >
> >
> > In Transforms/IPO/PassManagerBuilder.cpp and CodeGen/Passes.cpp we see
> > this sequence:
> >
> >
> >
> > if (UseCFLAA)
> >
> > PM.add(createCFLAliasAnalysisPass());
> >
> > PM.add(createTypeBasedAliasAnalysisPass());
> >
> > PM.add(createScopedNoAliasAAPass());
> >
> > PM.add(createBasicAliasAnalysisPass());
> >
> >
> >
> > So are you recommending changing to the sequence below instead?
> >
> >
> > Not quite:
> >
> >
> > add...
2015 Jan 14
4
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...>>>>>> >
>>>>>> >
>>>>>> >
>>>>>> > if (UseCFLAA)
>>>>>> >
>>>>>> > PM.add(createCFLAliasAnalysisPass());
>>>>>> >
>>>>>> > PM.add(createTypeBasedAliasAnalysisPass());
>>>>>> >
>>>>>> > PM.add(createScopedNoAliasAAPass());
>>>>>> >
>>>>>> > PM.add(createBasicAliasAnalysisPass());
>>>>>> >
>>>>>> >
>>>>>> >
>>...
2013 Jan 04
0
[LLVMdev] Running an Alias Analysis without opt
...I can't simply do something like opt -globalsmodref-aa -my_pass .
I've seen somewhere that I had to add the following code (for instance)
before running my pass :
PassRegistry &Registry = *PassRegistry::getPassRegistry();
initializeTypeBasedAliasAnalysisPass(Registry);
...
Passes.add(createTypeBasedAliasAnalysisPass());
Passes.add(MyPass);
...
Passes.run(*M);
but this doesn't solve the problem, I still get everything as "may"
aliases :
AliasSet[0xb971940, 6] may alias, Mod/Ref Pointers: (double* %x, 8),
(i32* %k, 4), (double* %arrayidx, 8), (double* %arrayidx1, 8), (i32*
@global, 4), (i32*...
2015 Jan 14
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
...cpp we
>>>> see
>>>> > this sequence:
>>>> >
>>>> >
>>>> >
>>>> > if (UseCFLAA)
>>>> >
>>>> > PM.add(createCFLAliasAnalysisPass());
>>>> >
>>>> > PM.add(createTypeBasedAliasAnalysisPass());
>>>> >
>>>> > PM.add(createScopedNoAliasAAPass());
>>>> >
>>>> > PM.add(createBasicAliasAnalysisPass());
>>>> >
>>>> >
>>>> >
>>>> > So are you recommending changing to the se...
2012 Oct 20
0
[LLVMdev] Choosing an alias analyzer
...ilder.cpp: addInitialAliasAnalysisPasses,
> I see this code
> ------
> // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
> // BasicAliasAnalysis wins if they disagree. This is intended to help
> // support "obvious" type-punning idioms.
> PM.add(createTypeBasedAliasAnalysisPass());
> PM.add(createBasicAliasAnalysisPass());
> }
> ------
>
> My goal is to use ScalarEvolutionAliasAnalysis in MemoryDependenceAnalysis.
> When I do, getPassName in MemoryDependenceAnalysis (by stepping into
> getAnalysisUsage), I get
> $39 = 0x399f778 "Basic Alia...
2015 Jan 17
3
[LLVMdev] question about enabling cfl-aa and collecting a57 numbers
Hi Danny,
// Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
// BasicAliasAnalysis wins if they disagree. This is intended to help
// support "obvious" type-punning idioms.
- if (UseCFLAA)
- addPass(createCFLAliasAnalysisPass());
addPass(createTypeBasedAliasAnalysisPass());
addPass(createScopedNoAliasAAPass());
+ if (UseCFLAA)
+ addPass(createCFLAliasAnalysisPass());
addPass(createBasicAliasAnalysisPass());
Do we really want to change the order here? I had originally placed it after the metadata-based passes thinking that the compile-time would be bette...
2015 Apr 21
2
[LLVMdev] Using an alias analysis pass
Hello LLVMdev,
I’m using LLVM to do static analysis exclusively (without any code generation). To implement this analysis, I’m using multiple address spaces to disambiguate the purpose of the pointed memory. Since address spaces never alias in my model, I set on to implement an alias analysis pass that would exactly provide this information, as I’m seeing a couple of otherwise dead store that
2011 Apr 05
3
[LLVMdev] Building LLVM on Solaris/Sparc
...sert/llvm-objects/tools/opt/Debug+Asserts/opt.o
llvm::Pass::dumpPassStructure(unsigned
int)/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt/Debug+Asserts/AnalysisWrappers.o
llvm::createLoopIdiomPass()
/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt/Debug+Asserts/opt.o
llvm::createTypeBasedAliasAnalysisPass()
/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt/Debug+Asserts/opt.o
llvm::BasicBlockPass::getPotentialPassManagerType()
const/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt/Debug+Asserts/opt.o
llvm::createProfileEstimatorPass()
/n/fs/scratch/tpondich/ParallelAssert/llvm-...