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 405 static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
  /external/llvm/include/llvm/
IRBuilder.h 657 Value *CreateShl(Value *LHS, Value *RHS, const Twine &Name = "",
661 return Insert(Folder.CreateShl(LC, RC, HasNUW, HasNSW), Name);
665 Value *CreateShl(Value *LHS, const APInt &RHS, const Twine &Name = "",
667 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
670 Value *CreateShl(Value *LHS, uint64_t RHS, const Twine &Name = "",
672 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
    [all...]

Completed in 619 milliseconds