Home
last modified time | relevance | path

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

/llvm-project/llvm/unittests/DebugInfo/CodeView/
H A DRandomAccessVisitorTest.cpp116 GlobalState->TypeArray = VarStreamArray<CVType>(GlobalState->ItemStream); in SetUpTestCase()
166 VarStreamArray<CVType> TypeArray; member
206 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
238 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
267 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
297 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
327 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
370 std::vector<CVType> TypeArray = { in TEST_F() local
375 ItemStream.setItems(TypeArray); in TEST_F()
/llvm-project/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp148 typedef llvm::ArrayRef<llvm::Type *> TypeArray;
1596 TypeArray(builder.getInt32Ty())); in createStandardUtilityFunctions()
1605 TypeArray(caughtResultFieldTypes)); in createStandardUtilityFunctions()
1609 TypeArray(ourTypeInfoType)); in createStandardUtilityFunctions()
1617 TypeArray(builder.getInt64Ty())); in createStandardUtilityFunctions()
1586 typedef llvm::ArrayRef<llvm::Type*> TypeArray; global() typedef
/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h729 Metadata *TypeArray;
731 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray)
732 : Flags(Flags), CC(CC), TypeArray(TypeArray) {}
734 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {}
738 TypeArray == RHS->getRawTypeArray();
741 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
H A DDebugInfoMetadata.cpp878 uint8_t CC, Metadata *TypeArray, in getImpl()
881 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray));
882 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray}; in DIFile()
874 getImpl(LLVMContext & Context,DIFlags Flags,uint8_t CC,Metadata * TypeArray,StorageType Storage,bool ShouldCreate) getImpl() argument
/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp507 [&](TypeIndex TI, const CVType &Type) { TypeArray.push_back(Type); }); in loadPrecompiledObject()
511 ItemStream->setItems(TypeArray); in loadPrecompiledObject()
515 std::make_shared<LazyRandomTypeCollection>(TypeStream, TypeArray.size()); in loadPrecompiledObject()
/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h92 std::vector<CVType> TypeArray;
/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1425 uint8_t CC, DITypeRefArray TypeArray,
1428 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate); in classof()
1431 uint8_t CC, Metadata *TypeArray,
1441 (DIFlags Flags, uint8_t CC, DITypeRefArray TypeArray),
1442 (Flags, CC, TypeArray))
1444 (DIFlags Flags, uint8_t CC, Metadata *TypeArray),
1445 (Flags, CC, TypeArray))
/llvm-project/llvm/unittests/IR/
H A DMetadataTest.cpp2340 MDTuple *TypeArray = getTuple(); in TEST_F()
2342 auto *N = DISubroutineType::get(Context, Flags, 0, TypeArray); in TEST_F()
2345 EXPECT_EQ(TypeArray, N->getTypeArray().get()); in TEST_F()
2346 EXPECT_EQ(N, DISubroutineType::get(Context, Flags, 0, TypeArray)); in TEST_F()
2348 EXPECT_NE(N, DISubroutineType::get(Context, FlagsPOne, 0, TypeArray)); in TEST_F()
2353 Context, Flags, dwarf::DW_CC_BORLAND_msfastcall, TypeArray); in TEST_F()
2355 dwarf::DW_CC_BORLAND_stdcall, TypeArray); in TEST_F()
2358 dwarf::DW_CC_BORLAND_msfastcall, TypeArray)); in TEST_F()
2360 Context, Flags, dwarf::DW_CC_BORLAND_stdcall, TypeArray)); in TEST_F()
2337 MDTuple *TypeArray = getTuple(); TEST_F() local
/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()