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/IR/
IRBuilder.h 711 Value *CreateLShr(Value *LHS, Value *RHS, const Twine &Name = "",
715 return Insert(Folder.CreateLShr(LC, RC, isExact), Name);
717 return Insert(BinaryOperator::CreateLShr(LHS, RHS), Name);
720 Value *CreateLShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
722 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
724 Value *CreateLShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
726 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
    [all...]

Completed in 4550 milliseconds