HomeSort by relevance Sort by last modified time
    Searched refs:CreateLShr (Results 1 - 25 of 35) 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...]
CodeGenPrepare.cpp 691 BinaryOperator::CreateLShr(ShiftI->getOperand(0), CI, "", InsertPt);
786 BinaryOperator::CreateLShr(ShiftI->getOperand(0), CI, "", InsertPt);
    [all...]
  /external/llvm/include/llvm/IR/
NoFolder.h 125 Instruction *CreateLShr(Constant *LHS, Constant *RHS,
128 return BinaryOperator::CreateLShr(LHS, RHS);
IRBuilder.h 770 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
774 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
776 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
779 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
781 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
783 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
785 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]
ConstantFolder.h 79 Constant *CreateLShr(Constant *LHS, Constant *RHS,
  /art/compiler/llvm/
runtime_support_builder.cc 190 Value* card_no = irb_.CreateLShr(target_addr_int,
  /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 663 Instruction *NewVal = BinaryOperator::CreateLShr(
707 BinaryOperator *NewVal = BinaryOperator::CreateLShr(I->getOperand(0),
    [all...]
InstCombineShifts.cpp 192 V = IC.Builder->CreateLShr(C, NumBits);
615 Value *Shift = Builder->CreateLShr(X, ShiftDiffCst);
    [all...]
InstCombineCasts.cpp 493 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue());
530 In = Builder->CreateLShr(In, Sh, In->getName()+".lobit");
577 In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt),
621 Result = Builder->CreateLShr(
    [all...]
InstCombineSelect.cpp 453 V = Builder->CreateLShr(V, C1Log - C2Log);
808 V = Builder->CreateLShr(V, AndZeros - ValZeros);
    [all...]
InstCombineCalls.cpp 296 Value *V = Builder->CreateLShr(X, CV);
644 return BinaryOperator::CreateLShr(Vec,
    [all...]
InstCombineMulDivRem.cpp 829 BinaryOperator *LShr = BinaryOperator::CreateLShr(
858 BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, N);
    [all...]
InstCombinePHI.cpp 750 Res = Builder->CreateLShr(Res, ConstantInt::get(InVal->getType(),
    [all...]
InstCombineAddSub.cpp     [all...]
InstCombineAndOrXor.cpp 249 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp 916 StoredVal = BinaryOperator::CreateLShr(StoredVal, Val, "tmp", InsertPt);
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 438 llvm::Value *A1 = Builder.CreateXor(Builder.CreateLShr(A0, K47), A0);
440 llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0);
    [all...]
CGExprScalar.cpp     [all...]
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
AddressSanitizer.cpp 626 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
    [all...]
DataFlowSanitizer.cpp     [all...]

Completed in 497 milliseconds

1 2