search for: manousaridi

Displaying 4 results from an estimated 4 matches for "manousaridi".

Did you mean: manousaridis
2010 Mar 09
1
[LLVMdev] Machine Function pass
On Tue, Mar 09, 2010 at 12:11:04PM -0800, Dan Gohman wrote: > > On Mar 8, 2010, at 11:45 AM, Manousaridis Aggelos wrote: > > > > Is it even possible to have a MachineFunctionPass externally, or not? > > Probably not. MachineFunctionPasses aren't regular Passes which > opt can meaningfully run, in its current form. > > > The documentation implies that is should be p...
2009 Jun 23
3
[LLVMdev] Garbage collection implementation
...my understanding, there is neither a register map or any sort of runtime-contract regarding the registers. Also, I need to work my way among the LLVM optimizations which move values around registers (for instance the fastcc convention which is essential for tail recursive optimization). -- Angelos Manousaridis
2010 Mar 08
2
[LLVMdev] Machine Function pass
I am trying to write a MachineFunction pass and build it as a loadable module. I want the pass to run after prolog/epilog emmiter. So far, I have been using MachineFunctionPass, but by inserting it to lib/Codegen and hacking the LLVMTargetMachine file, and Pass.h files. I have created a directory "lib/Transforms/MyPass", and inside I have the code of the pass (which is just a
2010 Mar 09
0
[LLVMdev] Machine Function pass
On Mar 8, 2010, at 11:45 AM, Manousaridis Aggelos wrote: > > Is it even possible to have a MachineFunctionPass externally, or not? Probably not. MachineFunctionPasses aren't regular Passes which opt can meaningfully run, in its current form. > The documentation implies that is should be possible. Which documentation? Dan