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

  /external/llvm/include/llvm/Support/
ConstantFolder.h 75 Constant *CreateShl(Constant *LHS, Constant *RHS,
NoFolder.h 118 Instruction *CreateShl(Constant *LHS, Constant *RHS, bool HasNUW = false,
120 BinaryOperator *BO = BinaryOperator::CreateShl(LHS, RHS);
TargetFolder.h 89 Constant *CreateShl(Constant *LHS, Constant *RHS,
  /external/llvm/include/llvm/MC/
MCExpr.h 420 static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *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...]

Completed in 24 milliseconds