| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | LowLevelTypeImpl.h | 146 return ElementCount::get(IsPointer in getElementCount() 217 if (!IsPointer) in getScalarSizeInBits() 221 } else if (IsPointer) in getScalarSizeInBits() 239 if (IsPointer) in getElementType() 255 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector && 323 uint64_t IsPointer : 1; 346 this->IsPointer = IsPointer; 353 if (!IsPointer) 366 } else if (IsPointer) 376 ((uint64_t)IsPointer) << 1 | ((uint64_t)IsVector); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetCallingConv.h | 54 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | RISCVVEmitter.cpp | 61 bool IsPointer = false; member in __anondf72edf00111::RVVType 376 if (IsPointer) in initBuiltinStr() 438 if (IsPointer) in initBuiltinStr() 446 if (IsPointer) in initBuiltinStr() 493 if (IsPointer) in initTypeStr() 535 if (IsPointer) in initTypeStr() 721 if (IsPointer) in applyModifier() 723 IsPointer = true; in applyModifier()
|
| H A D | ClangOpenCLBuiltinEmitter.cpp | 250 TypeFlags() : IsConst(false), IsVolatile(false), IsPointer(false) {} in TypeFlags() 253 bool IsPointer : 1; member 947 if (Flags.IsPointer) { in getTypeString() 966 if (Type->getValueAsBit("IsPointer") || Flags.IsPointer) { in getTypeString() 992 Flags.IsPointer = Type->getValueAsBit("IsPointer"); in getTypeLists()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | LowLevelType.cpp | 31 IsPointer = false; in LLT()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4274 unsigned IsPointer : 1; member in __anon5649fb511511::CatchHandlerType 4280 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {} in CatchHandlerType() 4286 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) { in CatchHandlerType() 4288 IsPointer = true; in CatchHandlerType() 4290 if (IsPointer || QT->isReferenceType()) in CatchHandlerType() 4298 CatchHandlerType(QualType QT, bool IsPointer) in CatchHandlerType() argument 4299 : QT(QT), IsPointer(IsPointer) {} in CatchHandlerType() 4302 bool isPointer() const { return IsPointer; } in isPointer() 4307 if (LHS.IsPointer != RHS.IsPointer) in operator ==()
|
| H A D | OpenCLBuiltins.td | 129 bit IsPointer = 0; 147 let IsPointer = _Ty.IsPointer; 160 let IsPointer = 1; 172 let IsPointer = _Ty.IsPointer; 184 let IsPointer = _Ty.IsPointer; 197 let IsPointer = _Ty.IsPointer;
|
| H A D | SemaInit.cpp | 7700 bool IsPointer = !Member->getType()->isReferenceType(); in checkInitializerLifetime() local 7701 Diag(DiagLoc, IsPointer ? diag::warn_init_ptr_member_to_parameter_addr in checkInitializerLifetime() 7706 << (unsigned)IsPointer; in checkInitializerLifetime()
|
| H A D | SemaDeclAttr.cpp | 5143 bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag"; in handleArgumentWithTypeTagAttr() local 5144 if (IsPointer) { in handleArgumentWithTypeTagAttr() 5154 IsPointer)); in handleArgumentWithTypeTagAttr()
|
| H A D | SemaOpenMP.cpp | 18749 bool IsPointer = CurType->isAnyPointerType(); in VisitOMPArraySectionExpr() local 18751 if (!IsPointer && !CurType->isArrayType()) { in VisitOMPArraySectionExpr() 18769 if (NotWhole || IsPointer) in VisitOMPArraySectionExpr() 18773 if (IsPointer && !AllowAnotherPtr) in VisitOMPArraySectionExpr() 18787 if (IsPointer) in VisitOMPArraySectionExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | MicrosoftMangle.cpp | 2223 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | MicrosoftCXXABI.cpp | 4184 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 D | CGOpenMPRuntime.cpp | 7954 bool IsPointer = in generateInfoForComponentList() local 7963 bool IsNonDerefPointer = IsPointer && !UO && !BO && !IsNonContiguous; in generateInfoForComponentList() 8024 (((IsPointer || ForDeviceAddr) && in generateInfoForComponentList() 8026 (IsPrevMemberReference && !IsPointer) || in generateInfoForComponentList() 8032 assert(!IsPointer && in generateInfoForComponentList() 8140 if (IsPointer || (IsMemberReference && Next != CE)) in generateInfoForComponentList()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TokenKinds.def | 532 TYPE_TRAIT_1(__is_pointer, IsPointer, KEYCXX)
|
| H A D | Attr.td | 3296 BoolArgument<"IsPointer", /*opt*/0, /*fake*/1>];
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | Target.td | 893 bit IsPointer = false; 904 let IsPointer = true in {
|