Displaying 5 results from an estimated 5 matches for "cv0".
Did you mean:
cr0
2011 Dec 02
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...value to be used as the specified operand of the vector
> + // instruction that fuses I with J.
> + Value *BBVectorize::getReplacementInput(LLVMContext& Context, Instruction *I,
> + Instruction *J, unsigned o, bool FlipMemInputs) {
Indentation.
> + Value *CV0 = ConstantInt::get(Type::getInt32Ty(Context), 0);
> + Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1);
> +
> + // Compute the fused vector type for this operand
> + Type *ArgType = I->getOperand(o)->getType();
> + VectorType *VArgType = getVecType(ArgT...
2011 Dec 14
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...perand of the vector
> > + // instruction that fuses I with J.
> > + Value *BBVectorize::getReplacementInput(LLVMContext& Context, Instruction *I,
> > + Instruction *J, unsigned o, bool FlipMemInputs) {
>
> Indentation.
>
> > + Value *CV0 = ConstantInt::get(Type::getInt32Ty(Context), 0);
> > + Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1);
> > +
> > + // Compute the fused vector type for this operand
> > + Type *ArgType = I->getOperand(o)->getType();
> > + VectorType *V...
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
...perand of the vector
> > + // instruction that fuses I with J.
> > + Value *BBVectorize::getReplacementInput(LLVMContext& Context, Instruction *I,
> > + Instruction *J, unsigned o, bool FlipMemInputs) {
>
> Indentation.
>
> > + Value *CV0 = ConstantInt::get(Type::getInt32Ty(Context), 0);
> > + Value *CV1 = ConstantInt::get(Type::getInt32Ty(Context), 1);
> > +
> > + // Compute the fused vector type for this operand
> > + Type *ArgType = I->getOperand(o)->getType();
> > + VectorType *V...
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
>