Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h708 Metadata *TypeArray;
710 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray)
711 : Flags(Flags), CC(CC), TypeArray(TypeArray) {}
713 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {}
717 TypeArray == RHS->getRawTypeArray();
720 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
H A DDebugInfoMetadata.cpp864 uint8_t CC, Metadata *TypeArray, in getImpl() argument
867 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray)); in getImpl()
868 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray}; in getImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h92 std::vector<CVType> TypeArray;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp512 [&](TypeIndex TI, const CVType &Type) { TypeArray.push_back(Type); }); in loadPrecompiledObject()
516 ItemStream->setItems(TypeArray); in loadPrecompiledObject()
520 std::make_shared<LazyRandomTypeCollection>(TypeStream, TypeArray.size()); in loadPrecompiledObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1330 uint8_t CC, DITypeRefArray TypeArray,
1333 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate);
1336 uint8_t CC, Metadata *TypeArray,
1346 (DIFlags Flags, uint8_t CC, DITypeRefArray TypeArray),
1347 (Flags, CC, TypeArray))
1349 (DIFlags Flags, uint8_t CC, Metadata *TypeArray),
1350 (Flags, CC, TypeArray))
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp429 if (auto TypeArray = Ty->getTypeArray()) { in getFunctionOptions() local
430 if (TypeArray.size()) in getFunctionOptions()
431 ReturnTy = TypeArray[0]; in getFunctionOptions()