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

  /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/lib/Transforms/InstCombine/
InstCombineShifts.cpp 188 V = IC.Builder->CreateShl(C, NumBits);
420 Builder->CreateShl(Op0BO->getOperand(0), Op1, Op0BO->getName());
436 Builder->CreateShl(Op0BO->getOperand(0), Op1,
452 Builder->CreateShl(Op0BO->getOperand(1), Op1, Op0BO->getName());
467 Builder->CreateShl(Op0BO->getOperand(1), Op1, Op0BO->getName());
652 Value *Shift = Builder->CreateShl(X, ShiftDiffCst);
710 return BinaryOperator::CreateShl(ConstantExpr::getShl(C1, C2), A);
InstCombineMulDivRem.cpp 42 return IC.Builder->CreateShl(PowerOf2, A);
123 BinaryOperator *Shl = BinaryOperator::CreateShl(Op0, NewCst);
226 return BinaryOperator::CreateShl(Op1, Y);
228 return BinaryOperator::CreateShl(Op0, Y);
    [all...]
InstCombineCasts.cpp     [all...]
InstCombineAddSub.cpp 927 Value *NewShl = Builder->CreateShl(XorLHS, ShAmt, "sext");
955 BinaryOperator::CreateShl(LHS, ConstantInt::get(I.getType(), 1));
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineSelect.cpp 644 V = Builder->CreateShl(V, ValZeros - AndZeros);
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 231 Value *Q = Builder.CreateShl(Dividend, Tmp2);
267 Value *Tmp5 = Builder.CreateShl(R_1, One);
270 Value *Tmp8 = Builder.CreateShl(Q_2, One);
290 Value *Tmp13 = Builder.CreateShl(Q_3, One);
  /external/llvm/include/llvm/Support/
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,
TargetFolder.h 89 Constant *CreateShl(Constant *LHS, Constant *RHS,
  /external/llvm/include/llvm/IR/
IRBuilder.h 689 Value *CreateShl(Value *LHS, Value *RHS, const Twine &Name = "",
693 return Insert(Folder.CreateShl(LC, RC, HasNUW, HasNSW), Name);
697 Value *CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = "",
699 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
702 Value *CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = "",
704 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 420 static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp     [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 241 case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 1375 milliseconds