Lines Matching refs:Pointee
191 const Type *Pointee; member in __anonece5a09e0111::PointerType
195 PointerType(const Type *Pointee, bool Const) in PointerType() argument
196 : Type(TypeKind::Pointer), Pointee(Pointee), Const(Const) {} in PointerType()
198 bool requiresFloat() const override { return Pointee->requiresFloat(); } in requiresFloat()
199 bool requiresMVE() const override { return Pointee->requiresMVE(); } in requiresMVE()
201 std::string Name = Pointee->cName(); in cName()
206 assert(!isa<PointerType>(Pointee) && "Pointer to pointer not supported"); in cName()
213 return "llvm::PointerType::getUnqual(" + Pointee->llvmName() + ")"; in llvmName()
215 const Type *getPointeeType() const { return Pointee; } in getPointeeType()
1124 const Type *Pointee = getType(D->getArg(0), Param); in getType() local
1125 return getPointerType(Pointee, Op->getValueAsBit("const")); in getType()