search for: vec_set

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

Did you mean: vec_sel
2013 Jun 24
1
[LLVMdev] DebugInfo: Missing non-trivially-copyable parameters in SelectionDAG
...src/test/CodeGen/X86/vec_insert-2.ll:24:8: error: expected string not found in input ; X32: movhpd ^ <stdin>:32:5: note: scanning from here t3: # @t3 ^ <stdin>:34:2: note: possible intended match here movsd 4(%esp), %xmm1 ^ -- ******************** FAIL: LLVM :: CodeGen/X86/vec_set-6.ll (40 of 51) ******************** TEST 'LLVM :: CodeGen/X86/vec_set-6.ll' FAILED ******************** Script: -- /usr/local/google/home/blaikie/dev/llvm/build/clang/debug/bin/./llc < /usr/local/google/home/blaikie/dev/llvm/src/test/CodeGen/X86/vec_set-6.ll -march=x86 -mattr=+sse2 -o /...
2008 May 09
0
[LLVMdev] [PATCH] Split LoopUnroll pass into mechanism and policy
Hi All, the attached patch performs the splitting in the proposed manner. before applying the patch, please execute svn cp lib/Transforms/Scalar/LoopUnroll.cpp lib/Transforms/Utils/UnrollLoop.cpp to make the patch apply and preserve proper history. Transforms/Utils/UnrollLoop.cpp contains the unrollLoop function, which is now used by the LoopUnroll pass. I've also moved the
2008 May 07
8
[LLVMdev] [PATCH] Split LoopUnroll pass into mechanism and policy
Hello Matthijs, Separating mechanism from policy is a good thing for the LoopUnroll pass. Instead of moving the policy to a subclass though, I think it'd be better to move the mechanism, the unrollLoop function, out to be a standalone utility function, with the LoopInfo object passed in explicitly. FoldBlockIntoPredecessor would also be good to make into a standalone utility function, since