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

1 2 3

  /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...]
AtomicExpandPass.cpp 674 Builder.CreateLShr(Loaded, PMV.ShiftAmt), PMV.ValueType);
722 Builder.CreateLShr(OldResult, PMV.ShiftAmt), PMV.ValueType);
    [all...]
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/include/llvm/Support/
NoFolder.h 125 Instruction *CreateLShr(Constant *LHS, Constant *RHS,
128 return BinaryOperator::CreateLShr(LHS, RHS);
IRBuilder.h 628 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
632 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
634 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
637 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
639 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
641 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
643 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]
ConstantFolder.h 79 Constant *CreateLShr(Constant *LHS, Constant *RHS,
TargetFolder.h 93 Constant *CreateLShr(Constant *LHS, Constant *RHS, bool isExact = false)const{
  /external/llvm/include/llvm/IR/
NoFolder.h 125 Instruction *CreateLShr(Constant *LHS, Constant *RHS,
128 return BinaryOperator::CreateLShr(LHS, RHS);
IRBuilder.h     [all...]
ConstantFolder.h 79 Constant *CreateLShr(Constant *LHS, Constant *RHS,
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 451 BinaryOperator::CreateLShr(Op0,
472 return BinaryOperator::CreateLShr(Op0, N);
481 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
485 Value *FSI = Builder->CreateLShr(Op0, C2->logBase2(), Op1->getName()+".f",
InstCombineShifts.cpp 190 V = IC.Builder->CreateLShr(C, NumBits);
590 Value *Shift = Builder->CreateLShr(X, ConstantInt::get(Ty, ShiftDiff));
753 return BinaryOperator::CreateLShr(Op0, Op1);
InstCombineSimplifyDemanded.cpp 630 Instruction *NewVal = BinaryOperator::CreateLShr(
674 Instruction *NewVal = BinaryOperator::CreateLShr(
    [all...]
InstCombineCasts.cpp 483 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
520 In = Builder->CreateLShr(In, Sh, In->getName()+".lobit");
570 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
615 Result = Builder->CreateLShr(
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 283 Value *Tmp3 = Builder.CreateLShr(Dividend, SR_1);
311 Value *Tmp6 = Builder.CreateLShr(Q_2, MSB);
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 93 Constant *CreateLShr(Constant *LHS, Constant *RHS, bool isExact = false)const{
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 620 Instruction *NewVal = BinaryOperator::CreateLShr(
664 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
    [all...]
InstCombineShifts.cpp 195 V = IC.Builder->CreateLShr(C, NumBits);
623 Value *Shift = Builder->CreateLShr(X, ShiftDiffCst);
    [all...]
InstCombineCasts.cpp 540 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
600 In = Builder->CreateLShr(In, Sh, In->getName() + ".lobit");
647 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(), ShAmt),
691 Result = Builder->CreateLShr(
    [all...]
InstCombineSelect.cpp 345 V = Builder->CreateLShr(V, C1Log - C2Log);
825 V = Builder->CreateLShr(V, AndZeros - ValZeros);
    [all...]
InstCombineMulDivRem.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 751 FromVal = Builder.CreateLShr(FromVal,
    [all...]
GVN.cpp 749 StoredVal = BinaryOperator::CreateLShr(StoredVal, Val, "tmp", InsertPt);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 784 StoredVal = IRB.CreateLShr(StoredVal, ShiftAmt, "tmp");
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 310 Value *Y = Builder.CreateLShr(LoadXY, 16);

Completed in 740 milliseconds

1 2 3