search for: createlowerpackedpass

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

2004 Nov 19
1
[LLVMdev] LowerPacked pass
...9;s probably all I need... > Let me know what you think. In the very short term, the hook exposed to > create the lower packed pass can be plunked into the X86TargetMachine and > get intra function packed types working for you. The patch you did was missing the actual implementation of createLowerPackedPass, so I'm including my own differences -- I guess you don't want to apply the changes to X86TargetMachine as I'm the only one actually generating packed types, but I include it for completeness.. m. -------------- next part -------------- An embedded and charset-unspecified text was s...
2004 Nov 17
0
[LLVMdev] LowerPacked pass
On Wed, 17 Nov 2004, Morten Ofstad wrote: > Our software uses 4 x float vectors a lot, and I pass these to LLVM as > packed types - but when I do the JIT compile it seems that the > LowerPacked pass is never run so the code generation fails. I noticed > that most other passes have a header file with a public createXXXPass() > function so they can be added to the PassManager, but
2004 Nov 17
2
[LLVMdev] LowerPacked pass
Hello, Our software uses 4 x float vectors a lot, and I pass these to LLVM as packed types - but when I do the JIT compile it seems that the LowerPacked pass is never run so the code generation fails. I noticed that most other passes have a header file with a public createXXXPass() function so they can be added to the PassManager, but LowerPacked doesn't have this... What should I do?