Home
last modified time | relevance | path

Searched refs:UserTy (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h169 template <typename UserTy> // UserTy == 'User' or 'const User'
177 using value_type = UserTy *;
202 UserTy *operator*() const {
206 UserTy *operator->() const { return operator*(); }
208 operator user_iterator_impl<const UserTy>() const {
209 return user_iterator_impl<const UserTy>(*UI);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1505 Type *UserTy = nullptr; in findCommonType() local
1507 UserTy = LI->getType(); in findCommonType()
1509 UserTy = SI->getValueOperand()->getType(); in findCommonType()
1512 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) { in findCommonType()
1529 if (!UserTy || (Ty && Ty != UserTy)) in findCommonType()
1532 Ty = UserTy; in findCommonType()
5641 Type *UserTy = LI->getType(); in propagateStoredValuesToLoads() local
5643 if (!LI->isSimple() || (PartitionType && UserTy != PartitionType)) in propagateStoredValuesToLoads()
5645 PartitionType = UserTy; in propagateStoredValuesToLoads()
5648 Type *UserTy = SI->getValueOperand()->getType(); in propagateStoredValuesToLoads() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp8110 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { in shouldNotPrintDirectly() local
8111 StringRef Name = UserTy->getDecl()->getName(); in shouldNotPrintDirectly()
8123 TyTy = UserTy->desugar(); in shouldNotPrintDirectly()