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

  /external/llvm/include/llvm/Support/
ConstantFolder.h 83 Constant *CreateAShr(Constant *LHS, Constant *RHS,
NoFolder.h 131 Instruction *CreateAShr(Constant *LHS, Constant *RHS,
134 return BinaryOperator::CreateAShr(LHS, RHS);
TargetFolder.h 96 Constant *CreateAShr(Constant *LHS, Constant *RHS, bool isExact = false)const{
  /external/llvm/include/llvm/IR/
IRBuilder.h 729 Value *CreateAShr(Value *LHS, Value *RHS, const Twine &Name = "",
733 return Insert(Folder.CreateAShr(LC, RC, isExact), Name);
735 return Insert(BinaryOperator::CreateAShr(LHS, RHS), Name);
738 Value *CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
740 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
742 Value *CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
744 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]

Completed in 208 milliseconds