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

1 2

  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 176 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
184 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24),
186 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
204 Value *Tmp8 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 56),
206 Value *Tmp7 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 40),
208 Value *Tmp6 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24),
210 Value *Tmp5 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
  /external/llvm/unittests/IR/
PatternMatch.cpp 245 IRB.CreateShl(L, R, "", /* NUW */ false, /* NSW */ true)));
265 IRB.CreateShl(L, R, "", /* NUW */ true, /* NSW */ false)));
278 EXPECT_FALSE(m_NSWShl(m_Value(), m_Value()).match(IRB.CreateShl(L, R)));
280 IRB.CreateShl(L, R, "", /* NUW */ true, /* NSW */ false)));
292 EXPECT_FALSE(m_NUWShl(m_Value(), m_Value()).match(IRB.CreateShl(L, R)));
294 IRB.CreateShl(L, R, "", /* NUW */ false, /* NSW */ true)));
IRBuilderTest.cpp 215 Builder.CreateShl(V, V, "", /* NUW */ false, /* NSW */ true))
225 Builder.CreateShl(V, V, "", /* NUW */ true, /* NSW */ false))
237 Builder.CreateShl(C, C, "", /* NUW */ false, /* NSW */ true))
247 Builder.CreateShl(C, C, "", /* NUW */ true, /* NSW */ false))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 190 V = IC.Builder->CreateShl(C, NumBits);
423 Builder->CreateShl(Op0BO->getOperand(0), Op1, Op0BO->getName());
443 Builder->CreateShl(Op0BO->getOperand(0), Op1,
459 Builder->CreateShl(Op0BO->getOperand(1), Op1, Op0BO->getName());
478 Builder->CreateShl(Op0BO->getOperand(1), Op1, Op0BO->getName());
663 Value *Shift = Builder->CreateShl(X, ShiftDiffCst);
724 return BinaryOperator::CreateShl(ConstantExpr::getShl(C1, C2), A);
    [all...]
InstCombineMulDivRem.cpp 44 return IC.Builder->CreateShl(PowerOf2, A);
157 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst);
267 return BinaryOperator::CreateShl(Op1, Y);
269 return BinaryOperator::CreateShl(Op0, Y);
    [all...]
InstCombineAddSub.cpp     [all...]
InstCombineCasts.cpp     [all...]
InstCombineSelect.cpp 451 V = Builder->CreateShl(V, C2Log - C1Log);
806 V = Builder->CreateShl(V, ValZeros - AndZeros);
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineCalls.cpp 641 return BinaryOperator::CreateShl(Vec,
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 274 Value *Q = Builder.CreateShl(Dividend, Tmp2);
310 Value *Tmp5 = Builder.CreateShl(R_1, One);
313 Value *Tmp8 = Builder.CreateShl(Q_2, One);
333 Value *Tmp13 = Builder.CreateShl(Q_3, One);
  /external/llvm/include/llvm/IR/
NoFolder.h 118 Instruction *CreateShl(Constant *LHS, Constant *RHS, bool HasNUW = false,
120 BinaryOperator *BO = BinaryOperator::CreateShl(LHS, RHS);
ConstantFolder.h 75 Constant *CreateShl(Constant *LHS, Constant *RHS,
IRBuilder.h 751 Value *CreateShl(Value *LHS, Value *RHS, const Twine &Name = "",
755 return Insert(Folder.CreateShl(LC, RC, HasNUW, HasNSW), Name);
759 Value *CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = "",
761 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
764 Value *CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = "",
766 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 89 Constant *CreateShl(Constant *LHS, Constant *RHS,
  /external/llvm/include/llvm/MC/
MCExpr.h 476 static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
MemorySanitizer.cpp     [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 399 case kOpLsl: res = irb_->CreateShl(src1, src2); break;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 255 return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
    [all...]

Completed in 538 milliseconds

1 2