HomeSort by relevance Sort by last modified time
    Searched refs:CreateLShr (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 178 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8),
188 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8),
190 Value *Tmp1 = Builder.CreateLShr(V,ConstantInt::get(V->getType(), 24),
212 Value* Tmp4 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8),
214 Value* Tmp3 = Builder.CreateLShr(V,
217 Value* Tmp2 = Builder.CreateLShr(V,
220 Value* Tmp1 = Builder.CreateLShr(V,
283 Value *VShift = Builder.CreateLShr(PartValue,
291 V = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 64),
309 ShVal = Builder.CreateLShr(V, ShVal, "ctlz.sh")
    [all...]
  /external/llvm/include/llvm/Support/
NoFolder.h 125 Instruction *CreateLShr(Constant *LHS, Constant *RHS,
128 return BinaryOperator::CreateLShr(LHS, RHS);
ConstantFolder.h 79 Constant *CreateLShr(Constant *LHS, Constant *RHS,
TargetFolder.h 93 Constant *CreateLShr(Constant *LHS, Constant *RHS, bool isExact = false)const{
  /external/mesa3d/src/pixelflinger2/
llvm_scanline.cpp 224 comps[2] = builder.CreateLShr(comps[2], 3);
245 dst = builder.CreateLShr(dst, constIntVec(builder, 0, 8, 16, 24));
250 dst = builder.CreateLShr(dst, constIntVec(builder, 8, 3, 0, 0));
309 // channels = builder.CreateLShr(channels, constIntVec(builder,0, 8, 16, 24));
371 sf = builder.CreateAdd(sf, builder.CreateLShr(sf, constIntVec(builder,7,7,7,7)));
372 df = builder.CreateAdd(df, builder.CreateLShr(df, constIntVec(builder,7,7,7,7)));
llvm_texture.cpp 52 b = builder.CreateOr(b, builder.CreateLShr(b, builder.getInt32(5)));
56 g = builder.CreateOr(g, builder.CreateLShr(g, builder.getInt32(6)));
61 r = builder.CreateOr(r, builder.CreateLShr(r, builder.getInt32(5)));
118 // channels = builder.CreateLShr(channels, constIntVec(builder, 0, 8, 16, 24));
123 // channels = builder.CreateLShr(channels, constIntVec(builder, 0, 0, 8, 16));
127 channels = builder.CreateLShr(channels, constIntVec(builder, 0, 8, 16, 24));
248 tc = builder.CreateLShr(tc, builder.getInt32(SHIFT));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 448 BinaryOperator::CreateLShr(Op0,
485 return BinaryOperator::CreateLShr(Op0, N);
494 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
498 Value *FSI = Builder->CreateLShr(Op0, C2->logBase2(), Op1->getName()+".f",
InstCombineShifts.cpp 190 V = IC.Builder->CreateLShr(C, NumBits);
607 Value *Shift = Builder->CreateLShr(X, ShiftDiffCst);
    [all...]
InstCombineCasts.cpp 481 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
518 In = Builder->CreateLShr(In, Sh, In->getName()+".lobit");
565 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
609 Result = Builder->CreateLShr(
    [all...]
InstCombineSimplifyDemanded.cpp 637 Instruction *NewVal = BinaryOperator::CreateLShr(
681 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
    [all...]
InstCombineAddSub.cpp 539 return BinaryOperator::CreateLShr(X, CI);
InstCombinePHI.cpp 754 Res = Builder->CreateLShr(Res, ConstantInt::get(InVal->getType(),
    [all...]
InstCombineSelect.cpp 642 V = Builder->CreateLShr(V, AndZeros - ValZeros);
    [all...]
InstCombineCalls.cpp 263 Value *V = Builder->CreateLShr(Operand->getArgOperand(0), CV);
    [all...]
InstCombineCompares.cpp 457 V = Builder->CreateLShr(ConstantInt::get(Ty, MagicBitvector), V);
    [all...]
InstCombineAndOrXor.cpp 260 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
    [all...]
  /external/llvm/include/llvm/
IRBuilder.h 676 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
680 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
682 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
685 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
687 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
689 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
691 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp 816 StoredVal = BinaryOperator::CreateLShr(StoredVal, Val, "tmp", InsertPt);
    [all...]
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 289 Shadow = IRB.CreateLShr(Shadow, MappingScale);
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
CGBuiltin.cpp     [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]

Completed in 115 milliseconds

1 2