Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp522 const CTFType *ctf_type = it->second; in CompleteType() local
523 assert(ctf_type && "m_compiler_types should only contain valid CTF types"); in CompleteType()
526 assert(llvm::isa<CTFRecord>(ctf_type)); in CompleteType()
529 const CTFRecord *ctf_record = static_cast<const CTFRecord *>(ctf_type); in CompleteType()
536 ctf_type->uid, field.type); in CompleteType()
556 m_ctf_types.erase(ctf_type->uid); in CompleteType()
572 llvm::Expected<TypeSP> SymbolFileCTF::CreateType(CTFType *ctf_type) { in CreateType() argument
573 if (!ctf_type) in CreateType()
577 switch (ctf_type->kind) { in CreateType()
579 return CreateInteger(*static_cast<CTFInteger *>(ctf_type)); in CreateType()
[all …]