Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DVTableBuilder.h400 VTableComponentLayout ComponentLayout = Pointer);
433 return ComponentLayout; in getVTableComponentLayout()
436 bool isPointerLayout() const { return ComponentLayout == Pointer; } in isPointerLayout()
437 bool isRelativeLayout() const { return ComponentLayout == Relative; } in isRelativeLayout()
440 VTableComponentLayout ComponentLayout;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.h645 class ComponentLayout {
672 ComponentLayout(ComponentKind Kind) : Kind(Kind) { in ComponentLayout() function
677 ComponentLayout(const ComponentProps &OpXProps) in ComponentLayout() function
711 class ComponentInfo : public ComponentLayout, public ComponentProps {
716 : ComponentLayout(Kind), ComponentProps(OpDesc) {} in ComponentLayout() function
720 : ComponentLayout(OpXProps), ComponentProps(OpDesc) {} in ComponentInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp2269 ASTContext &Context, VTableComponentLayout ComponentLayout) in ItaniumVTableContext() argument
2270 : VTableContextBase(/*MS=*/false), ComponentLayout(ComponentLayout) {} in ItaniumVTableContext()
H A DASTContext.cpp12019 auto ComponentLayout = getLangOpts().RelativeCXXABIVTables in getVTableContext() local
12022 VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout)); in getVTableContext()