search for: lowindx

Displaying 5 results from an estimated 5 matches for "lowindx".

2011 Dec 02
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...= dyn_cast<ExtractElementInst>(L->getOperand(o)); > + ExtractElementInst *HEE > + = dyn_cast<ExtractElementInst>(H->getOperand(o)); > + > + if (LEE&& HEE&& > + LEE->getOperand(0)->getType() == VArgType) { > + unsigned LowIndx = cast<ConstantInt>(LEE->getOperand(1))->getZExtValue(); > + unsigned HighIndx = cast<ConstantInt>(HEE->getOperand(1))->getZExtValue(); > + if (LEE->getOperand(0) == HEE->getOperand(0)) { > + if (LowIndx == 0&& HighIndx == 1) > +...
2011 Dec 14
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...st>(L->getOperand(o)); > > + ExtractElementInst *HEE > > + = dyn_cast<ExtractElementInst>(H->getOperand(o)); > > + > > + if (LEE&& HEE&& > > + LEE->getOperand(0)->getType() == VArgType) { > > + unsigned LowIndx = cast<ConstantInt>(LEE->getOperand(1))->getZExtValue(); > > + unsigned HighIndx = cast<ConstantInt>(HEE->getOperand(1))->getZExtValue(); > > + if (LEE->getOperand(0) == HEE->getOperand(0)) { > > + if (LowIndx == 0&& HighIndx...
2011 Nov 23
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 21:22 -0600, Hal Finkel wrote: > On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote: > > Tobias, > > > > I've attached an updated patch. It contains a few bug fixes and many > > (refactoring and coding-convention) changes inspired by your comments. > > > > I'm currently trying to fix the bug responsible for causing a compile
2011 Dec 02
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...st>(L->getOperand(o)); > > + ExtractElementInst *HEE > > + = dyn_cast<ExtractElementInst>(H->getOperand(o)); > > + > > + if (LEE&& HEE&& > > + LEE->getOperand(0)->getType() == VArgType) { > > + unsigned LowIndx = cast<ConstantInt>(LEE->getOperand(1))->getZExtValue(); > > + unsigned HighIndx = cast<ConstantInt>(HEE->getOperand(1))->getZExtValue(); > > + if (LEE->getOperand(0) == HEE->getOperand(0)) { > > + if (LowIndx == 0&& HighIndx...
2011 Nov 22
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote: > Tobias, > > I've attached an updated patch. It contains a few bug fixes and many > (refactoring and coding-convention) changes inspired by your comments. > > I'm currently trying to fix the bug responsible for causing a compile > failure when compiling >