Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h94 if (!IsPointer) in getNumElements()
110 if (!IsPointer) in getScalarSizeInBits()
115 if (!IsPointer) in getScalarSizeInBits()
134 if (IsPointer) in getElementType()
143 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector &&
194 uint64_t IsPointer : 1;
213 void init(bool IsPointer, bool IsVector, uint16_t NumElements,
215 this->IsPointer = IsPointer;
218 if (!IsPointer)
225 if (!IsPointer)
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DLowLevelType.cpp31 IsPointer = false; in LLT()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp3909 unsigned IsPointer : 1; member in __anon4bf2252c0c11::CatchHandlerType
3915 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {} in CatchHandlerType()
3921 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) { in CatchHandlerType()
3923 IsPointer = true; in CatchHandlerType()
3925 if (IsPointer || QT->isReferenceType()) in CatchHandlerType()
3933 CatchHandlerType(QualType QT, bool IsPointer) in CatchHandlerType() argument
3934 : QT(QT), IsPointer(IsPointer) {} in CatchHandlerType()
3937 bool isPointer() const { return IsPointer; } in isPointer()
3942 if (LHS.IsPointer != RHS.IsPointer) in operator ==()
H A DSemaInit.cpp7030 bool IsPointer = Member->getType()->isAnyPointerType(); in checkInitializerLifetime() local
7031 Diag(DiagLoc, IsPointer ? diag::warn_init_ptr_member_to_parameter_addr in checkInitializerLifetime()
7036 << (unsigned)IsPointer; in checkInitializerLifetime()
H A DSemaDeclAttr.cpp4718 bool IsPointer = AL.getName()->getName() == "pointer_with_type_tag"; in handleArgumentWithTypeTagAttr() local
4719 if (IsPointer) { in handleArgumentWithTypeTagAttr()
4729 TypeTagIdx, IsPointer, AL.getAttributeSpellingListIndex())); in handleArgumentWithTypeTagAttr()
H A DSemaOpenMP.cpp12564 bool IsPointer = CurType->isAnyPointerType(); in checkMapClauseExpressionBase() local
12566 if (!IsPointer && !CurType->isArrayType()) { in checkMapClauseExpressionBase()
12584 if (NotWhole || IsPointer) in checkMapClauseExpressionBase()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DMicrosoftMangle.cpp1864 bool IsPointer = T->isAnyPointerType() || T->isMemberPointerType() || in mangleType() local
1881 if (!IsPointer && Quals) { in mangleType()
1891 if ((!IsPointer && Quals) || isa<TagType>(T) || isArtificialTagType(T)) { in mangleType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp4081 bool IsPointer = T->isPointerType(); in getCatchableTypeArray() local
4082 if (IsPointer) in getCatchableTypeArray()
4114 if (IsPointer) in getCatchableTypeArray()
4137 if (IsPointer && T->getPointeeType()->isObjectType()) in getCatchableTypeArray()
H A DCGOpenMPRuntime.cpp7098 bool IsPointer = in generateInfoForComponentList() local
7104 if (Next == CE || IsPointer || IsFinalArraySection) { in generateInfoForComponentList()
7120 IsPointer && EncounteredME && in generateInfoForComponentList()
7128 assert(!IsPointer && in generateInfoForComponentList()
7203 if (IsPointer) in generateInfoForComponentList()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTokenKinds.def497 TYPE_TRAIT_1(__is_pointer, IsPointer, KEYCXX)
H A DAttr.td2708 BoolArgument<"IsPointer", /*opt*/0, /*fake*/1>];
/freebsd-12.1/contrib/llvm/include/llvm/Target/
H A DTarget.td812 bit IsPointer = 0;
822 let IsPointer = 1 in {