HomeSort by relevance Sort by last modified time
    Searched refs:CreateLShr (Results 1 - 25 of 27) 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/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 240 Value *Tmp3 = Builder.CreateLShr(Dividend, SR_1);
268 Value *Tmp6 = Builder.CreateLShr(Q_2, ThirtyOne);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 694 BinaryOperator::CreateLShr(Op0,
732 return BinaryOperator::CreateLShr(Op0, N);
741 Value *TSI = Builder->CreateLShr(Op0, C1->logBase2(), Op1->getName()+".t",
745 Value *FSI = Builder->CreateLShr(Op0, C2->logBase2(), Op1->getName()+".f",
    [all...]
InstCombineSimplifyDemanded.cpp 662 Instruction *NewVal = BinaryOperator::CreateLShr(
706 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
    [all...]
InstCombineShifts.cpp 190 V = IC.Builder->CreateLShr(C, NumBits);
604 Value *Shift = Builder->CreateLShr(X, ShiftDiffCst);
801 return BinaryOperator::CreateLShr(Op0, Op1);
InstCombineCasts.cpp 490 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
527 In = Builder->CreateLShr(In, Sh, In->getName()+".lobit");
574 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
618 Result = Builder->CreateLShr(
    [all...]
InstCombinePHI.cpp 754 Res = Builder->CreateLShr(Res, ConstantInt::get(InVal->getType(),
    [all...]
InstCombineSelect.cpp 646 V = Builder->CreateLShr(V, AndZeros - ValZeros);
    [all...]
InstCombineAddSub.cpp     [all...]
InstCombineCalls.cpp 294 Value *V = Builder->CreateLShr(X, CV);
    [all...]
InstCombineAndOrXor.cpp 260 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
    [all...]
InstCombineCompares.cpp 457 V = Builder->CreateLShr(ConstantInt::get(Ty, MagicBitvector), V);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 708 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
712 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
714 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
717 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
719 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
721 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
723 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...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
AddressSanitizer.cpp 548 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 495 llvm::Value *A1 = Builder.CreateXor(Builder.CreateLShr(A0, K47), A0);
497 llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0);
    [all...]
CGExprScalar.cpp     [all...]
CGBuiltin.cpp     [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]

Completed in 603 milliseconds

1 2