search for: deadstoreeliminationpass

Displaying 5 results from an estimated 5 matches for "deadstoreeliminationpass".

2005 Jan 19
1
[LLVMdev] Constant Propagation Problem
...Pass CFGSimplificationPass ScalarReplAggregatesPass InstructionCombiningPass ReassociatePass InstructionCombiningPass TailCallEliminationPass CFGSimplificationPass LICMPass InstructionCombiningPass IndVarSimplifyPass LoopUnrollPass InstructionCombiningPass GCSEPass SCCPPass InstructionCombiningPass DeadStoreEliminationPass AggressiveDCEPass CFGSimplificationPass -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: optimizeme.txt URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050119/1336c23d/attachment.txt>
2008 Dec 10
2
[LLVMdev] AliasAnalysis tutorial 2
...fication of my "own" PassManager). I already tried your solution but it is not enough. The problem is the same with existing AA (andersen for example) : when calling with opt, this works well, but when adding in local PassManager ( with add() ), it is not working (I test this with the DeadStoreEliminationPass which performs an AA). In particular, the pass is run (runOnFunction) but the derived method from AliasAnalysis (like 'alias' or 'getModRefInfo') are not chained with those from basicAA when needed. Now, i'm trying to understand how opt, RegisterPass, RegisterAnalysisGroup et...
2008 Dec 10
0
[LLVMdev] AliasAnalysis tutorial 2
...anager). > > I already tried your solution but it is not enough. The problem is the > same with > existing AA (andersen for example) : when calling with opt, this works > well, but > when adding in local PassManager ( with add() ), it is not working (I > test this with > the DeadStoreEliminationPass which performs an AA). > In particular, the pass is run (runOnFunction) but the derived method from > AliasAnalysis (like 'alias' or 'getModRefInfo') are not chained with > those from > basicAA when needed. > > Now, i'm trying to understand how opt, RegisterPa...
2008 Dec 09
0
[LLVMdev] AliasAnalysis tutorial 2
Julien Schmitt wrote: > Hi ! > In my quest of implementing my own AA, i understood that it doesn't work > because i don't use the 'opt' tool but i create my own PassManager (this > for other reasons). > The problem is the same with other existing AA (AndersensPass or > globalModRefPass) : > these AApasses are not chained with the basicAA when they are
2008 Dec 09
1
[LLVMdev] AliasAnalysis tutorial 2
Hi ! In my quest of implementing my own AA, i understood that it doesn't work because i don't use the 'opt' tool but i create my own PassManager (this for other reasons). The problem is the same with other existing AA (AndersensPass or globalModRefPass) : these AApasses are not chained with the basicAA when they are created in PassManager ... So my question is now : how to