Searched defs:CreateAShr (Results 1 - 4 of 4) sorted by relevance
/external/llvm/include/llvm/Support/ |
H A D | ConstantFolder.h | 83 Constant *CreateAShr(Constant *LHS, Constant *RHS, function in class:llvm::ConstantFolder
|
H A D | TargetFolder.h | 96 Constant *CreateAShr(Constant *LHS, Constant *RHS, bool isExact = false)const{ function in class:llvm::TargetFolder
|
H A D | NoFolder.h | 131 Instruction *CreateAShr(Constant *LHS, Constant *RHS, function in class:llvm::NoFolder 134 return BinaryOperator::CreateAShr(LHS, RHS);
|
/external/llvm/include/llvm/IR/ |
H A D | IRBuilder.h | 729 Value *CreateAShr(Value *LHS, Value *RHS, const Twine &Name = "", function in class:llvm::IRBuilder 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 = "", function in class:llvm::IRBuilder 740 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact); 742 Value *CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = "", function in class:llvm::IRBuilder 744 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
|
Completed in 142 milliseconds