clang 20.0.0git
|
CGRecordLayout - This class handles struct and union layout info while lowering AST types to LLVM types. More...
#include "/home/buildbot/as-worker-4/publish-doxygen-docs/llvm-project/clang/lib/CodeGen/CGRecordLayout.h"
Public Member Functions | |
CGRecordLayout (llvm::StructType *CompleteObjectType, llvm::StructType *BaseSubobjectType, bool IsZeroInitializable, bool IsZeroInitializableAsBase) | |
llvm::StructType * | getLLVMType () const |
Return the "complete object" LLVM type associated with this record. | |
llvm::StructType * | getBaseSubobjectLLVMType () const |
Return the "base subobject" LLVM type associated with this record. | |
bool | isZeroInitializable () const |
Check whether this struct can be C++ zero-initialized with a zeroinitializer. | |
bool | isZeroInitializableAsBase () const |
Check whether this struct can be C++ zero-initialized with a zeroinitializer when considered as a base subobject. | |
bool | containsFieldDecl (const FieldDecl *FD) const |
unsigned | getLLVMFieldNo (const FieldDecl *FD) const |
Return llvm::StructType element number that corresponds to the field FD. | |
bool | hasNonVirtualBaseLLVMField (const CXXRecordDecl *RD) const |
unsigned | getNonVirtualBaseLLVMFieldNo (const CXXRecordDecl *RD) const |
unsigned | getVirtualBaseIndex (const CXXRecordDecl *base) const |
Return the LLVM field index corresponding to the given virtual base. | |
const CGBitFieldInfo & | getBitFieldInfo (const FieldDecl *FD) const |
Return the BitFieldInfo that corresponds to the field FD. | |
void | print (raw_ostream &OS) const |
void | dump () const |
Friends | |
class | CodeGenTypes |
CGRecordLayout - This class handles struct and union layout info while lowering AST types to LLVM types.
These layout objects are only created on demand as IR generation requires.
Definition at line 122 of file CGRecordLayout.h.
|
inline |
Definition at line 163 of file CGRecordLayout.h.
Definition at line 196 of file CGRecordLayout.h.
Referenced by getGEPIndicesToField().
LLVM_DUMP_METHOD void CGRecordLayout::dump | ( | ) | const |
Definition at line 1247 of file CGRecordLayoutBuilder.cpp.
References print().
|
inline |
Return the "base subobject" LLVM type associated with this record.
Definition at line 180 of file CGRecordLayout.h.
Referenced by EmitNullConstant().
|
inline |
Return the BitFieldInfo that corresponds to the field FD.
Definition at line 227 of file CGRecordLayout.h.
References clang::FieldDecl::getCanonicalDecl(), and clang::FieldDecl::isBitField().
Referenced by setUsedBits().
Return llvm::StructType element number that corresponds to the field FD.
Definition at line 202 of file CGRecordLayout.h.
References clang::FieldDecl::getCanonicalDecl().
Referenced by emitAddrOfFieldStorage(), EmitNullConstant(), emitPreserveStructAccess(), getGEPIndicesToField(), and clang::CodeGen::getLLVMFieldNumber().
|
inline |
Return the "complete object" LLVM type associated with this record.
Definition at line 174 of file CGRecordLayout.h.
Referenced by EmitNullConstant().
|
inline |
Definition at line 214 of file CGRecordLayout.h.
Referenced by EmitNullConstant().
|
inline |
Return the LLVM field index corresponding to the given virtual base.
Only valid when operating on the complete object.
Definition at line 221 of file CGRecordLayout.h.
Referenced by EmitNullConstant().
|
inline |
Definition at line 210 of file CGRecordLayout.h.
|
inline |
Check whether this struct can be C++ zero-initialized with a zeroinitializer.
Definition at line 186 of file CGRecordLayout.h.
Referenced by clang::CodeGen::CodeGenTypes::isZeroInitializable().
|
inline |
Check whether this struct can be C++ zero-initialized with a zeroinitializer when considered as a base subobject.
Definition at line 192 of file CGRecordLayout.h.
Referenced by EmitNullConstantForBase().
void CGRecordLayout::print | ( | raw_ostream & | OS | ) | const |
Definition at line 1217 of file CGRecordLayoutBuilder.cpp.
References clang::RecordDecl::field_begin(), and clang::DeclContext::getParent().
Referenced by dump().
|
friend |
Definition at line 123 of file CGRecordLayout.h.