Searched refs:ctf_type (Results 1 – 1 of 1) sorted by relevance
522 const CTFType *ctf_type = it->second; in CompleteType() local523 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() argument573 if (!ctf_type) in CreateType()577 switch (ctf_type->kind) { in CreateType()579 return CreateInteger(*static_cast<CTFInteger *>(ctf_type)); in CreateType()[all …]