HomeSort by relevance Sort by last modified time
    Searched refs:CreateLShr (Results 1 - 25 of 31) 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);
  /art/compiler/llvm/
runtime_support_builder.cc 266 Value* card_no = irb_.CreateLShr(target_addr_int,
  /external/llvm/lib/Transforms/InstCombine/
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...]
InstCombineSelect.cpp 402 V = Builder->CreateLShr(V, C1Log - C2Log);
717 V = Builder->CreateLShr(V, AndZeros - ValZeros);
    [all...]
InstCombineMulDivRem.cpp 769 BinaryOperator *LShr = BinaryOperator::CreateLShr(
798 BinaryOperator *LShr = BinaryOperator::CreateLShr(Op0, N);
    [all...]
InstCombinePHI.cpp 754 Res = Builder->CreateLShr(Res, ConstantInt::get(InVal->getType(),
    [all...]
InstCombineAddSub.cpp     [all...]
InstCombineCalls.cpp 294 Value *V = Builder->CreateLShr(X, CV);
    [all...]
InstCombineAndOrXor.cpp 257 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName());
    [all...]
InstCombineCompares.cpp 490 V = Builder->CreateLShr(ConstantInt::get(Ty, MagicBitvector), V);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 711 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
715 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
717 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
720 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
722 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
724 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
726 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp 899 StoredVal = BinaryOperator::CreateLShr(StoredVal, Val, "tmp", InsertPt);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
AddressSanitizer.cpp 567 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 435 llvm::Value *A1 = Builder.CreateXor(Builder.CreateLShr(A0, K47), A0);
437 llvm::Value *B1 = Builder.CreateXor(Builder.CreateLShr(B0, K47), B0);
    [all...]
CGExprScalar.cpp     [all...]
CGBuiltin.cpp     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 383 case kOpLsr: res = irb_->CreateLShr(src1, src2); break;
    [all...]

Completed in 3579 milliseconds

1 2