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.cpp520 const CTFType *ctf_type = it->second; in CompleteType() local
521 assert(ctf_type && "m_compiler_types should only contain valid CTF types"); in CompleteType()
524 assert(llvm::isa<CTFRecord>(ctf_type)); in CompleteType()
527 const CTFRecord *ctf_record = static_cast<const CTFRecord *>(ctf_type); in CompleteType()
534 ctf_type->uid, field.type); in CompleteType()
555 m_ctf_types.erase(ctf_type->uid); in CompleteType()
571 llvm::Expected<TypeSP> SymbolFileCTF::CreateType(CTFType *ctf_type) { in CreateType() argument
572 if (!ctf_type) in CreateType()
576 switch (ctf_type->kind) { in CreateType()
578 return CreateInteger(*static_cast<CTFInteger *>(ctf_type)); in CreateType()
[all …]