| /llvm-project-15.0.7/llvm/unittests/DebugInfo/CodeView/ |
| H A D | RandomAccessVisitorTest.cpp | 118 GlobalState->TypeArray = VarStreamArray<CVType>(GlobalState->ItemStream); in SetUpTestCase() 167 VarStreamArray<CVType> TypeArray; member 207 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F() 239 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F() 268 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F() 298 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F() 328 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F() 371 std::vector<CVType> TypeArray = { in TEST_F() local 376 ItemStream.setItems(TypeArray); in TEST_F()
|
| /llvm-project-15.0.7/llvm/examples/ExceptionDemo/ |
| H A D | ExceptionDemo.cpp | 1586 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()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 651 Metadata *TypeArray; 653 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray) 654 : Flags(Flags), CC(CC), TypeArray(TypeArray) {} 656 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {} 660 TypeArray == RHS->getRawTypeArray(); 663 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
|
| H A D | DebugInfoMetadata.cpp | 761 uint8_t CC, Metadata *TypeArray, in getImpl() argument 764 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray)); in getImpl() 765 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray}; in getImpl()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 1278 uint8_t CC, DITypeRefArray TypeArray, 1281 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate); 1284 uint8_t CC, Metadata *TypeArray, 1294 (DIFlags Flags, uint8_t CC, DITypeRefArray TypeArray), 1295 (Flags, CC, TypeArray)) 1297 (DIFlags Flags, uint8_t CC, Metadata *TypeArray), 1298 (Flags, CC, TypeArray))
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | MetadataTest.cpp | 2087 MDTuple *TypeArray = getTuple(); in TEST_F() local 2089 auto *N = DISubroutineType::get(Context, Flags, 0, TypeArray); in TEST_F() 2092 EXPECT_EQ(TypeArray, N->getTypeArray().get()); in TEST_F() 2093 EXPECT_EQ(N, DISubroutineType::get(Context, Flags, 0, TypeArray)); in TEST_F() 2095 EXPECT_NE(N, DISubroutineType::get(Context, FlagsPOne, 0, TypeArray)); in TEST_F() 2100 Context, Flags, dwarf::DW_CC_BORLAND_msfastcall, TypeArray); in TEST_F() 2102 dwarf::DW_CC_BORLAND_stdcall, TypeArray); in TEST_F() 2105 dwarf::DW_CC_BORLAND_msfastcall, TypeArray)); in TEST_F() 2107 Context, Flags, dwarf::DW_CC_BORLAND_stdcall, TypeArray)); in TEST_F()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 427 if (auto TypeArray = Ty->getTypeArray()) { in getFunctionOptions() local 428 if (TypeArray.size()) in getFunctionOptions() 429 ReturnTy = TypeArray[0]; in getFunctionOptions()
|