Searched refs:getTypeAlign (Results 1 - 12 of 12) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h272 unsigned getTypeAlign(IntType T) const;
340 unsigned getWCharAlign() const { return getTypeAlign(WCharType); }
345 unsigned getChar16Align() const { return getTypeAlign(Char16Type); }
350 unsigned getChar32Align() const { return getTypeAlign(Char32Type); }
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DItaniumCXXABI.cpp108 unsigned Align = Target.getTypeAlign(PtrDiff);
H A DASTContext.cpp1553 Align = getTypeAlign(cast<ArrayType>(T)->getElementType());
1886 return toCharUnitsFromBits(getTypeAlign(T));
1889 return toCharUnitsFromBits(getTypeAlign(T));
1935 return std::max(getTypeAlign(T), getTargetInfo().getMinGlobalAlign());
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp502 CGM.getContext().getTypeAlign(BT), llvm::dwarf::DW_ATE_unsigned);
572 uint64_t Align = CGM.getContext().getTypeAlign(BT);
583 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
706 Align = CGM.getContext().getTypeAlign(Ty);
729 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
790 FieldAlign = CGM.getContext().getTypeAlign(Ty);
1086 uint64_t Align = CGM.getContext().getTypeAlign(ThisPtrTy);
1770 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
1861 FieldAlign = CGM.getContext().getTypeAlign(FType);
1935 uint64_t Align = CGM.getContext().getTypeAlign(T
[all...]
H A DTargetInfo.cpp1210 unsigned TypeAlign = getContext().getTypeAlign(Ty) / 8;
2294 if (OffsetBase % getContext().getTypeAlign(AT->getElementType()))
2394 if (!BitField && Offset % getContext().getTypeAlign(i->getType())) {
2492 unsigned Align = std::max(getContext().getTypeAlign(Ty) / 8, 8U);
3858 if (isAggregateTypeForABI(Ty) && getContext().getTypeAlign(Ty) >= 128) {
3859 if (HasQPX && getContext().getTypeAlign(Ty) >= 256)
4346 unsigned Alignment = getContext().getTypeAlign(Ty);
4391 unsigned Alignment = getContext().getTypeAlign(RetTy);
5046 CharUnits::fromQuantity(getContext().getTypeAlign(Ty) / 8), false);
5054 uint64_t TyAlign = getContext().getTypeAlign(T
[all...]
H A DCGAtomic.cpp1300 getContext().getTypeSize(Ty), getContext().getTypeAlign(Ty));
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp233 /// getTypeAlign - Return the alignment (in bits) of the specified integer type
235 unsigned TargetInfo::getTypeAlign(IntType T) const { function in class:TargetInfo
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h1814 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; } function in class:clang::ASTContext::DynTypedNodeList
1815 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; } function in class:clang::ASTContext::DynTypedNodeList
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclAttr.cpp1098 S.Context.getTypeAlign(FD->getType()) <= 8)
2975 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2984 S.Context.getTypeAlign(FieldType) > FirstAlign) {
2988 : S.Context.getTypeAlign(FieldType);
H A DSemaDecl.cpp2140 OldAlign = S.Context.getTypeAlign(Ty);
2142 NewAlign = S.Context.getTypeAlign(Ty);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6913 unsigned Align = Context->getTypeAlign(IVQT)/8;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp4733 return getASTContext()->getTypeAlign(GetQualType(type));

Completed in 475 milliseconds