/llvm-project/llvm/unittests/DebugInfo/CodeView/ |
H A D | RandomAccessVisitorTest.cpp | 116 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 D | ExceptionDemo.cpp | 148 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 D | LLVMContextImpl.h | 729 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 D | DebugInfoMetadata.cpp | 878 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 D | LVCodeViewReader.cpp | 507 [&](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 D | LVCodeViewReader.h | 92 std::vector<CVType> TypeArray;
|
/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 1425 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 D | MetadataTest.cpp | 2340 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 D | CodeViewDebug.cpp | 429 if (auto TypeArray = Ty->getTypeArray()) { in getFunctionOptions() local 430 if (TypeArray.size()) in getFunctionOptions() 431 ReturnTy = TypeArray[0]; in getFunctionOptions()
|