Home
last modified time | relevance | path

Searched refs:ComponentLayout (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DVTableBuilder.h408 VTableComponentLayout ComponentLayout = Pointer);
462 return ComponentLayout; in getVTableComponentLayout()
465 bool isPointerLayout() const { return ComponentLayout == Pointer; } in isPointerLayout()
466 bool isRelativeLayout() const { return ComponentLayout == Relative; } in isRelativeLayout()
469 VTableComponentLayout ComponentLayout;
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h720 class ComponentLayout {
747 ComponentLayout(ComponentKind Kind) : Kind(Kind) { in ComponentLayout() function
752 ComponentLayout(const ComponentProps &OpXProps) in ComponentLayout() function
786 class ComponentInfo : public ComponentLayout, public ComponentProps {
791 : ComponentLayout(Kind), ComponentProps(OpDesc) {} in ComponentLayout() function
795 : ComponentLayout(OpXProps), ComponentProps(OpDesc) {} in ComponentInfo()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp2333 ASTContext &Context, VTableComponentLayout ComponentLayout) in ItaniumVTableContext() argument
2334 : VTableContextBase(/*MS=*/false), ComponentLayout(ComponentLayout) {} in ItaniumVTableContext()
H A DASTContext.cpp12501 auto ComponentLayout = getLangOpts().RelativeCXXABIVTables in getVTableContext() local
12504 VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout)); in getVTableContext()