Home
last modified time | relevance | path

Searched refs:IsPointer (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h86 explicit LLT() : IsPointer(false), IsVector(false), RawData(0) {} in LLT()
92 bool isScalar() const { return isValid() && !IsPointer && !IsVector; } in isScalar()
94 bool isPointer() const { return isValid() && IsPointer && !IsVector; } in isPointer()
102 if (!IsPointer) in getNumElements()
166 if (!IsPointer) in getScalarSizeInBits()
171 if (!IsPointer) in getScalarSizeInBits()
180 assert(IsPointer && "cannot get address space of non-pointer type"); in getAddressSpace()
190 if (IsPointer) in getElementType()
206 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector &&
257 uint64_t IsPointer : 1;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h54 unsigned IsPointer : 1; member
68 IsCopyElisionCandidate(0), IsPointer(0), ByValOrByRefSize(0), in ArgFlagsTy()
141 bool isPointer() const { return IsPointer; } in isPointer()
142 void setPointer() { IsPointer = 1; } in setPointer()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DRISCVVEmitter.cpp61 bool IsPointer = false; member in __anond814f6670111::RVVType
372 if (IsPointer) in initBuiltinStr()
434 if (IsPointer) in initBuiltinStr()
484 if (IsPointer) in initTypeStr()
524 if (IsPointer) in initTypeStr()
710 if (IsPointer) in applyModifier()
712 IsPointer = true; in applyModifier()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DLowLevelType.cpp30 IsPointer = false; in LLT()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp4326 unsigned IsPointer : 1; member in __anon895218281311::CatchHandlerType
4332 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {} in CatchHandlerType()
4338 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) { in CatchHandlerType()
4340 IsPointer = true; in CatchHandlerType()
4342 if (IsPointer || QT->isReferenceType()) in CatchHandlerType()
4350 CatchHandlerType(QualType QT, bool IsPointer) in CatchHandlerType() argument
4351 : QT(QT), IsPointer(IsPointer) {} in CatchHandlerType()
4354 bool isPointer() const { return IsPointer; } in isPointer()
4359 if (LHS.IsPointer != RHS.IsPointer) in operator ==()
H A DOpenCLBuiltins.td128 bit IsPointer = 0;
146 let IsPointer = _Ty.IsPointer;
159 let IsPointer = 1;
171 let IsPointer = _Ty.IsPointer;
183 let IsPointer = _Ty.IsPointer;
196 let IsPointer = _Ty.IsPointer;
H A DSemaDeclAttr.cpp5038 bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag"; in handleArgumentWithTypeTagAttr() local
5039 if (IsPointer) { in handleArgumentWithTypeTagAttr()
5049 IsPointer)); in handleArgumentWithTypeTagAttr()
H A DSemaInit.cpp7698 bool IsPointer = !Member->getType()->isReferenceType(); in checkInitializerLifetime() local
7699 Diag(DiagLoc, IsPointer ? diag::warn_init_ptr_member_to_parameter_addr in checkInitializerLifetime()
7704 << (unsigned)IsPointer; in checkInitializerLifetime()
H A DSemaOpenMP.cpp18366 bool IsPointer = CurType->isAnyPointerType(); in VisitOMPArraySectionExpr() local
18368 if (!IsPointer && !CurType->isArrayType()) { in VisitOMPArraySectionExpr()
18386 if (NotWhole || IsPointer) in VisitOMPArraySectionExpr()
18390 if (IsPointer && !AllowAnotherPtr) in VisitOMPArraySectionExpr()
18404 if (IsPointer) in VisitOMPArraySectionExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DMicrosoftMangle.cpp2223 bool IsPointer = T->isAnyPointerType() || T->isMemberPointerType() || in mangleType() local
2240 if (!IsPointer && Quals) { in mangleType()
2250 if ((!IsPointer && Quals) || isa<TagType>(T) || isArtificialTagType(T)) { in mangleType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp4184 bool IsPointer = T->isPointerType(); in getCatchableTypeArray() local
4185 if (IsPointer) in getCatchableTypeArray()
4217 if (IsPointer) in getCatchableTypeArray()
4240 if (IsPointer && T->getPointeeType()->isObjectType()) in getCatchableTypeArray()
H A DCGOpenMPRuntime.cpp7771 bool IsPointer = in generateInfoForComponentList() local
7780 bool IsNonDerefPointer = IsPointer && !UO && !BO && !IsNonContiguous; in generateInfoForComponentList()
7841 (((IsPointer || ForDeviceAddr) && in generateInfoForComponentList()
7843 (IsPrevMemberReference && !IsPointer) || in generateInfoForComponentList()
7849 assert(!IsPointer && in generateInfoForComponentList()
7957 if (IsPointer || (IsMemberReference && Next != CE)) in generateInfoForComponentList()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTokenKinds.def530 TYPE_TRAIT_1(__is_pointer, IsPointer, KEYCXX)
H A DAttr.td3269 BoolArgument<"IsPointer", /*opt*/0, /*fake*/1>];
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/
H A DTarget.td893 bit IsPointer = false;
904 let IsPointer = true in {