HomeSort by relevance Sort by last modified time
    Searched refs:CreateShl (Results 1 - 25 of 29) 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/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);
InstCombineCasts.cpp     [all...]
InstCombineMulDivRem.cpp 42 return IC.Builder->CreateShl(PowerOf2, A);
152 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst);
258 return BinaryOperator::CreateShl(Op1, Y);
260 return BinaryOperator::CreateShl(Op0, Y);
    [all...]
InstCombineSelect.cpp 400 V = Builder->CreateShl(V, C2Log - C1Log);
715 V = Builder->CreateShl(V, ValZeros - AndZeros);
    [all...]
InstCombineAddSub.cpp 963 Value *NewShl = Builder->CreateShl(XorLHS, ShAmt, "sext");
996 BinaryOperator::CreateShl(LHS, ConstantInt::get(I.getType(), 1));
    [all...]
InstCombineSimplifyDemanded.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);
  /art/compiler/llvm/
runtime_support_builder.cc 192 Value* owner = irb_.CreateShl(lock_id, LW_LOCK_OWNER_SHIFT);
223 Value* my_monitor = irb_.CreateShl(lock_id, LW_LOCK_OWNER_SHIFT);
gbc_expander.cc     [all...]
  /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 692 Value *CreateShl(Value *LHS, Value *RHS, const Twine &Name = "",
696 return Insert(Folder.CreateShl(LC, RC, HasNUW, HasNSW), Name);
700 Value *CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = "",
702 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
705 Value *CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = "",
707 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 452 static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
GVN.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp     [all...]
CGCall.cpp 686 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
    [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 243 return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 382 case kOpLsl: res = irb_->CreateShl(src1, src2); break;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 222 milliseconds

1 2