Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1586 typedef llvm::ArrayRef<llvm::Type*> TypeArray; typedef
1614 TypeArray(builder.getInt32Ty())); in createStandardUtilityFunctions()
1623 TypeArray(caughtResultFieldTypes)); in createStandardUtilityFunctions()
1627 TypeArray(ourTypeInfoType)); in createStandardUtilityFunctions()
1635 TypeArray(builder.getInt64Ty())); in createStandardUtilityFunctions()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DLLVMContextImpl.h700 Metadata *TypeArray;
702 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray)
703 : Flags(Flags), CC(CC), TypeArray(TypeArray) {}
705 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {}
709 TypeArray == RHS->getRawTypeArray();
712 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
H A DDebugInfoMetadata.cpp795 uint8_t CC, Metadata *TypeArray, in getImpl() argument
798 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray)); in getImpl()
799 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray}; in getImpl()
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1319 uint8_t CC, DITypeRefArray TypeArray,
1322 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate);
1325 uint8_t CC, Metadata *TypeArray,
1335 (DIFlags Flags, uint8_t CC, DITypeRefArray TypeArray),
1336 (Flags, CC, TypeArray))
1338 (DIFlags Flags, uint8_t CC, Metadata *TypeArray),
1339 (Flags, CC, TypeArray))
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp425 if (auto TypeArray = Ty->getTypeArray()) { in getFunctionOptions() local
426 if (TypeArray.size()) in getFunctionOptions()
427 ReturnTy = TypeArray[0]; in getFunctionOptions()