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

  /external/llvm/include/llvm/Support/
ConstantFolder.h 79 Constant *CreateLShr(Constant *LHS, Constant *RHS,
NoFolder.h 125 Instruction *CreateLShr(Constant *LHS, Constant *RHS,
128 return BinaryOperator::CreateLShr(LHS, RHS);
TargetFolder.h 93 Constant *CreateLShr(Constant *LHS, Constant *RHS, bool isExact = false)const{
  /external/llvm/include/llvm/
IRBuilder.h 676 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
680 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
682 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
685 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
687 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
689 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
691 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]

Completed in 397 milliseconds