Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/IR/
H A DLLVMContextImpl.h564 Metadata *TypeArray;
566 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray)
567 : Flags(Flags), CC(CC), TypeArray(TypeArray) {}
569 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {}
573 TypeArray == RHS->getRawTypeArray();
576 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
H A DDebugInfoMetadata.cpp464 uint8_t CC, Metadata *TypeArray, in getImpl() argument
467 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray)); in getImpl()
468 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray}; in getImpl()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1123 uint8_t CC, DITypeRefArray TypeArray,
1126 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate);
1129 uint8_t CC, Metadata *TypeArray,
1139 (DIFlags Flags, uint8_t CC, DITypeRefArray TypeArray),
1140 (Flags, CC, TypeArray))
1142 (DIFlags Flags, uint8_t CC, Metadata *TypeArray),
1143 (Flags, CC, TypeArray))
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp377 if (auto TypeArray = Ty->getTypeArray()) { in getFunctionOptions() local
378 if (TypeArray.size()) in getFunctionOptions()
379 ReturnTy = TypeArray[0].resolve(); in getFunctionOptions()