HomeSort by relevance Sort by last modified time
    Searched refs:CreateShl (Results 1 - 23 of 23) sorted by null

  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 176 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
184 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24),
186 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
204 Value *Tmp8 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 56),
206 Value *Tmp7 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 40),
208 Value *Tmp6 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24),
210 Value *Tmp5 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 51 b = builder.CreateShl(b, builder.getInt32(3));
55 g = builder.CreateShl(g, builder.getInt32(5));
60 r = builder.CreateShl(r, builder.getInt32(8));
73 texel = builder.CreateShl(texel, builder.getInt32(24));
81 texel = builder.CreateOr(texel, builder.CreateShl(texel, 8));
82 texel = builder.CreateOr(texel, builder.CreateShl(texel, 8));
93 texel = builder.CreateOr(texel, builder.CreateShl(texel, 8));
94 texel = builder.CreateOr(texel, builder.CreateShl(texel, 8));
95 texel = builder.CreateOr(texel, builder.CreateShl(alpha, 16));
122 // channels = builder.CreateShl(channels, constIntVec(builder, 8, 0, 0, 0))
    [all...]
llvm_scanline.cpp 212 src = builder.CreateShl(src, constIntVec(builder, 0, 8, 16, 24));
225 comps[1] = builder.CreateShl(comps[1], 3);
226 comps[0] = builder.CreateShl(comps[0], 8);
251 dst = builder.CreateShl(dst, constIntVec(builder, 0, 0, 3, 0));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 188 V = IC.Builder->CreateShl(C, NumBits);
420 Builder->CreateShl(Op0BO->getOperand(0), Op1, Op0BO->getName());
437 Builder->CreateShl(Op0BO->getOperand(0), Op1,
453 Builder->CreateShl(Op0BO->getOperand(1), Op1, Op0BO->getName());
470 Builder->CreateShl(Op0BO->getOperand(1), Op1, Op0BO->getName());
588 Value *Shift = Builder->CreateShl(X, ShiftDiffCst);
659 Value *Shift = Builder->CreateShl(X, ShiftDiffCst);
717 return BinaryOperator::CreateShl(ConstantExpr::getShl(C1, C2), A);
    [all...]
InstCombineMulDivRem.cpp 42 return IC.Builder->CreateShl(PowerOf2, A);
124 BinaryOperator *Shl = BinaryOperator::CreateShl(Op0, NewCst);
227 return BinaryOperator::CreateShl(Op1, Y);
229 return BinaryOperator::CreateShl(Op0, Y);
InstCombineAddSub.cpp 136 Value *NewShl = Builder->CreateShl(XorLHS, ShAmt, "sext");
164 BinaryOperator::CreateShl(LHS, ConstantInt::get(I.getType(), 1));
643 return BinaryOperator::CreateShl(XNeg, Y);
InstCombineCasts.cpp     [all...]
InstCombineSelect.cpp 634 V = Builder->CreateShl(V, ValZeros - AndZeros);
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/include/llvm/Support/
NoFolder.h 118 Instruction *CreateShl(Constant *LHS, Constant *RHS, bool HasNUW = false,
120 BinaryOperator *BO = BinaryOperator::CreateShl(LHS, RHS);
ConstantFolder.h 75 Constant *CreateShl(Constant *LHS, Constant *RHS,
TargetFolder.h 89 Constant *CreateShl(Constant *LHS, Constant *RHS,
IRBuilder.h 642 Value *CreateShl(Value *LHS, Value *RHS, const Twine &Name = "",
646 return Insert(Folder.CreateShl(LC, RC, HasNUW, HasNSW), Name);
650 Value *CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = "",
652 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
655 Value *CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = "",
657 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 400 static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 757 FromVal = Builder.CreateShl(FromVal,
    [all...]
GVN.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 181 milliseconds