| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/ |
| H A D | LowLevelType.h | 142 : IsScalar(false), IsPointer(false), IsVector(false), RawData(0) {} in LLT() 151 return isValid() && IsPointer && !IsVector; in isPointer() 153 constexpr bool isPointerVector() const { return IsPointer && isVector(); } in isPointerVector() 155 return IsPointer && isValid(); in isPointerOrPointerVector() 280 if (IsPointer) in getElementType() 293 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector && 362 uint64_t IsPointer : 1; 384 constexpr void init(bool IsPointer, bool IsVector, bool IsScalar, 389 this->IsPointer = IsPointer; 392 if (IsPointer) { [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetCallingConv.h | 56 unsigned IsPointer : 1; member 70 IsCopyElisionCandidate(0), IsPointer(0) { in ArgFlagsTy() 145 bool isPointer() const { return IsPointer; } in isPointer() 146 void setPointer() { IsPointer = 1; } in setPointer()
|
| /freebsd/contrib/llvm-project/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 148 if (IsPointer) in initBuiltinStr() 213 if (IsPointer) in initBuiltinStr() 221 if (IsPointer) in initBuiltinStr() 276 if (IsPointer) in initTypeStr() 327 if (IsPointer) in initTypeStr() 839 IsPointer = true; in applyModifier()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGenTypes/ |
| H A D | LowLevelType.cpp | 32 IsPointer = false; in LLT()
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangOpenCLBuiltinEmitter.cpp | 248 TypeFlags() : IsConst(false), IsVolatile(false), IsPointer(false) {} in TypeFlags() 251 bool IsPointer : 1; member 998 if (Flags.IsPointer) { in getTypeString() 1017 if (Type->getValueAsBit("IsPointer") || Flags.IsPointer) { in getTypeString() 1043 Flags.IsPointer = Type->getValueAsBit("IsPointer"); in getTypeLists()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVType.h | 30 IsPointer, enumerator 82 KIND(LVTypeKind, IsPointer);
|
| /freebsd/contrib/llvm-project/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 257 bool IsPointer = false; variable 317 bool isPointer() const { return IsPointer; } in isPointer()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4197 unsigned IsPointer : 1; 4203 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {} in CatchHandlerType() 4209 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) { in CatchHandlerType() 4211 IsPointer = true; in CatchHandlerType() 4214 if (IsPointer || QT->isReferenceType()) in CatchHandlerType() 4221 CatchHandlerType(QualType QT, bool IsPointer) in CatchHandlerType() argument 4222 : QT(QT), IsPointer(IsPointer) {} in CatchHandlerType() 4225 bool isPointer() const { return IsPointer; } in isPointer() 4230 if (LHS.IsPointer != RHS.IsPointer) in operator ==()
|
| H A D | OpenCLBuiltins.td | 177 bit IsPointer = 0; 195 let IsPointer = _Ty.IsPointer; 208 let IsPointer = 1; 220 let IsPointer = _Ty.IsPointer; 232 let IsPointer = _Ty.IsPointer; 245 let IsPointer = _Ty.IsPointer;
|
| H A D | CheckExprLifetime.cpp | 1470 bool IsPointer = !Member->getType()->isReferenceType(); in checkExprLifetimeImpl() local 1472 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr in checkExprLifetimeImpl() 1477 << (unsigned)IsPointer; in checkExprLifetimeImpl()
|
| H A D | SemaDeclAttr.cpp | 5886 bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag"; in handleArgumentWithTypeTagAttr() local 5887 if (IsPointer) { in handleArgumentWithTypeTagAttr() 5897 TypeTagIdx, IsPointer)); in handleArgumentWithTypeTagAttr()
|
| H A D | SemaOpenMP.cpp | 21018 bool IsPointer = CurType->isAnyPointerType(); in VisitArraySectionExpr() local 21020 if (!IsPointer && !CurType->isArrayType()) { in VisitArraySectionExpr() 21038 if (NotWhole || IsPointer) in VisitArraySectionExpr() 21042 if (IsPointer && !AllowAnotherPtr) in VisitArraySectionExpr() 21058 if (IsPointer) in VisitArraySectionExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Scalarizer.cpp | 125 bool IsPointer; member in __anon7628c1430111::Scatterer 364 IsPointer = V->getType()->isPointerTy(); in INITIALIZE_PASS_DEPENDENCY() 369 IsPointer) && in INITIALIZE_PASS_DEPENDENCY() 383 if (IsPointer) { in operator []()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVType.cpp | 94 {LVTypeKind::IsPointer, &LVType::getIsPointer},
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
| H A D | Options.cpp | 403 clEnumValN(LVTypeKind::IsPointer, "Pointer", "Pointer."),
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | MicrosoftMangle.cpp | 2593 bool IsPointer = T->isAnyPointerType() || T->isMemberPointerType() || in mangleType() local 2610 if (!IsPointer && Quals) { in mangleType() 2620 if ((!IsPointer && Quals) || isa<TagType>(T) || isArtificialTagType(T)) { in mangleType()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | MicrosoftCXXABI.cpp | 4283 bool IsPointer = T->isPointerType(); in getCatchableTypeArray() local 4284 if (IsPointer) in getCatchableTypeArray() 4316 if (IsPointer) in getCatchableTypeArray() 4339 if (IsPointer && T->getPointeeType()->isObjectType()) in getCatchableTypeArray()
|
| H A D | CGOpenMPRuntime.cpp | 7463 bool IsPointer = local 7472 bool IsNonDerefPointer = IsPointer && 7538 (((IsPointer || ForDeviceAddr) && 7540 (IsPrevMemberReference && !IsPointer) || 7546 assert(!IsPointer && 7687 if (IsPointer || (IsMemberReference && Next != CE))
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TokenKinds.def | 587 TYPE_TRAIT_1(__is_pointer, IsPointer, KEYCXX)
|
| H A D | Attr.td | 4251 BoolArgument<"IsPointer", /*opt*/0, /*fake*/1>];
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | Target.td | 1074 bit IsPointer = false; 1085 let IsPointer = true in {
|