Searched refs:IsPointer (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h85 explicit LLT() : IsPointer(false), IsVector(false), RawData(0) {}
91 bool isScalar() const { return isValid() && !IsPointer && !IsVector; }
93 bool isPointer() const { return isValid() && IsPointer && !IsVector; }
101 if (!IsPointer)
145 if (!IsPointer)
150 if (!IsPointer)
159 assert(IsPointer && "cannot get address space of non-pointer type");
169 if (IsPointer)
178 return IsPointer == RHS.IsPointer
248 init(bool IsPointer, bool IsVector, uint16_t NumElements, unsigned SizeInBits, unsigned AddressSpace) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h50 unsigned IsPointer : 1; member in struct:llvm::ISD::ArgFlagsTy
63 IsCopyElisionCandidate(0), IsPointer(0), ByValSize(0),
125 bool isPointer() const { return IsPointer; }
126 void setPointer() { IsPointer = 1; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DLowLevelType.cpp20 init(/*IsPointer=*/false, VT.getVectorNumElements() > 1,
27 init(/*IsPointer=*/false, /*IsVector=*/false, /*NumElements=*/0,
30 IsPointer = false;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp3978 unsigned IsPointer : 1;
3984 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {}
3990 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) {
3992 IsPointer = true;
3994 if (IsPointer || QT->isReferenceType())
4002 CatchHandlerType(QualType QT, bool IsPointer) argument
4003 : QT(QT), IsPointer(IsPointer) {}
4006 bool isPointer() const { return IsPointer; }
4011 if (LHS.IsPointer !
[all...]
H A DSemaInit.cpp7477 bool IsPointer = !Member->getType()->isReferenceType();
7478 Diag(DiagLoc, IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
7483 << (unsigned)IsPointer;
H A DSemaDeclAttr.cpp4864 bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag";
4865 if (IsPointer) {
4875 IsPointer));
H A DSemaOpenMP.cpp15398 bool IsPointer = CurType->isAnyPointerType();
15400 if (!IsPointer && !CurType->isArrayType()) {
15418 if (NotWhole || IsPointer)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp4132 bool IsPointer = T->isPointerType(); local
4133 if (IsPointer)
4165 if (IsPointer)
4188 if (IsPointer && T->getPointeeType()->isObjectType())
H A DCGOpenMPRuntime.cpp7583 bool IsPointer = local
7589 if (Next == CE || IsPointer || IsFinalArraySection) {
7605 IsPointer && EncounteredME &&
7613 assert(!IsPointer &&
7690 if (IsPointer)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp1904 bool IsPointer = T->isAnyPointerType() || T->isMemberPointerType() || local
1921 if (!IsPointer && Quals) {
1931 if ((!IsPointer && Quals) || isa<TagType>(T) || isArtificialTagType(T)) {

Completed in 248 milliseconds