Displaying 2 results from an estimated 2 matches for "invalidateall".
2006 Sep 18
3
[LLVMdev] Manipulate order of optimizations in llvm-ld
...m using llvm-ld
(loading works fine). However, I can't seem to figure out how to put
them first, i.e. before all other optimizations (inlining,
internalizing, ... should only kick in after my passes).
Omitting AnalysisUsage::setPreservesAll() doesn't help and there is no
AnalysisUsage::invalidateAll(). Does anybody know a workaround?
Kind regards,
Bram Adams
GH-SEL, INTEC, Ghent University (Belgium)
2006 Sep 18
0
[LLVMdev] Manipulate order of optimizations in llvm-ld
...Data pass. See tools/llvm-ld/Optimize.cpp for the
details. If you pass --disable-opt it will put yours first, but then
you're responsible for doing the things that llvm-ld normally does.
>
> Omitting AnalysisUsage::setPreservesAll() doesn't help and there is no
> AnalysisUsage::invalidateAll(). Does anybody know a workaround?
--disable-opt or change Optimize.cpp :)
Reid.