search for: dependecny

Displaying 3 results from an estimated 3 matches for "dependecny".

Did you mean: dependancy
2011 Nov 08
2
[LLVMdev] loadable passes with dependencies?
I'm writing a Pass that I would like to remain loadable by opt. The pass also requires DominatorTree(for PromoteMemToReg). Looking for examples the only way I found to require a dependecny is by doing something like this: char Hello::ID = 0; namespace llvm { void initializeHelloPass(llvm::PassRegistry&); } INITIALIZE_PASS_BEGIN(Hello, "hello", "Hello World Pass", false, true) INITIALIZE_PASS_DEPENDENCY(DominatorTree) INI...
2011 Nov 08
0
[LLVMdev] loadable passes with dependencies?
On 11/08/2011 03:20 AM, ret val wrote: > I'm writing a Pass that I would like to remain loadable by opt. The > pass also requires DominatorTree(for PromoteMemToReg). > > Looking for examples the only way I found to require a dependecny is > by doing something like this: > char Hello::ID = 0; > namespace llvm { void initializeHelloPass(llvm::PassRegistry&); } > INITIALIZE_PASS_BEGIN(Hello, "hello", "Hello World Pass", false, true) > INITIALIZE_PASS_DEPENDEN...
2011 Nov 08
2
[LLVMdev] loadable passes with dependencies?
...ias at grosser.es> wrote: > On 11/08/2011 03:20 AM, ret val wrote: >> >> I'm writing a Pass that I would like to remain loadable by opt. The >> pass also requires DominatorTree(for PromoteMemToReg). >> >> Looking for examples the only way I found to require a dependecny is >> by doing something like this: >>         char Hello::ID = 0; >>         namespace llvm { void initializeHelloPass(llvm::PassRegistry&); } >>         INITIALIZE_PASS_BEGIN(Hello, "hello", "Hello World Pass", false, >> true) >>        ...