Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/
H A DLowLevelType.h142 : 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 DTargetCallingConv.h56 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 DRISCVVIntrinsicUtils.cpp148 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 DLowLevelType.cpp32 IsPointer = false; in LLT()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp248 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 DLVType.h30 IsPointer, enumerator
82 KIND(LVTypeKind, IsPointer);
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h257 bool IsPointer = false; variable
317 bool isPointer() const { return IsPointer; } in isPointer()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4197 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 DOpenCLBuiltins.td177 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 DCheckExprLifetime.cpp1470 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 DSemaDeclAttr.cpp5886 bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag"; in handleArgumentWithTypeTagAttr() local
5887 if (IsPointer) { in handleArgumentWithTypeTagAttr()
5897 TypeTagIdx, IsPointer)); in handleArgumentWithTypeTagAttr()
H A DSemaOpenMP.cpp21018 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 DScalarizer.cpp125 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 DLVType.cpp94 {LVTypeKind::IsPointer, &LVType::getIsPointer},
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A DOptions.cpp403 clEnumValN(LVTypeKind::IsPointer, "Pointer", "Pointer."),
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp2593 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 DMicrosoftCXXABI.cpp4283 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 DCGOpenMPRuntime.cpp7463 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 DTokenKinds.def587 TYPE_TRAIT_1(__is_pointer, IsPointer, KEYCXX)
H A DAttr.td4251 BoolArgument<"IsPointer", /*opt*/0, /*fake*/1>];
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTarget.td1074 bit IsPointer = false;
1085 let IsPointer = true in {