Searched refs:DTy (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BTFDebug.cpp | 43 BTFTypeDerived::BTFTypeDerived(const DIDerivedType *DTy, unsigned Tag, in BTFTypeDerived() argument 45 : DTy(DTy), NeedsFixup(NeedsFixup) { in BTFTypeDerived() 73 BTFType.NameOff = BDebug.addString(DTy->getName()); in completeType() 79 const DIType *ResolvedType = DTy->getBaseType(); in completeType() 549 void BTFDebug::visitDerivedType(const DIDerivedType *DTy, uint32_t &TypeId, in visitDerivedType() argument 551 unsigned Tag = DTy->getTag(); in visitDerivedType() 560 const DIType *Base = DTy->getBaseType(); in visitDerivedType() 570 auto TypeEntry = std::make_unique<BTFTypeDerived>(DTy, Tag, true); in visitDerivedType() 574 TypeId = addType(std::move(TypeEntry), DTy); in visitDerivedType() 584 auto TypeEntry = std::make_unique<BTFTypeDerived>(DTy, Tag, false); in visitDerivedType() [all …]
|
D | BPFAbstractMemberAccess.cpp | 202 while (auto *DTy = dyn_cast<DIDerivedType>(Ty)) { in stripQualifiers() local 203 if (!SkipDIDerivedTag(DTy->getTag())) in stripQualifiers() 205 Ty = DTy->getBaseType(); in stripQualifiers() 211 while (auto *DTy = dyn_cast<DIDerivedType>(Ty)) { in stripQualifiers() local 212 if (!SkipDIDerivedTag(DTy->getTag())) in stripQualifiers() 214 Ty = DTy->getBaseType(); in stripQualifiers() 760 auto *DTy = cast<DIDerivedType>(Ty); in computeBaseAndAccessKey() local 761 assert(DTy->getTag() == dwarf::DW_TAG_pointer_type); in computeBaseAndAccessKey() 763 BaseTy = stripQualifiers(DTy->getBaseType()); in computeBaseAndAccessKey()
|
D | BTFDebug.h | 59 const DIDerivedType *DTy; variable 282 void visitDerivedType(const DIDerivedType *DTy, uint32_t &TypeId,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 474 if (auto *DTy = dyn_cast<DIDerivedType>(Ty)) { in isUnsignedDIType() local 489 assert(DTy->getBaseType() && "Expected valid base type"); in isUnsignedDIType() 490 return isUnsignedDIType(DD, DTy->getBaseType()); in isUnsignedDIType() 788 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIDerivedType *DTy) { in constructTypeDIE() argument 790 StringRef Name = DTy->getName(); in constructTypeDIE() 791 uint64_t Size = DTy->getSizeInBits() >> 3; in constructTypeDIE() 795 const DIType *FromTy = DTy->getBaseType(); in constructTypeDIE() 806 uint32_t AlignInBytes = DTy->getAlignInBytes(); in constructTypeDIE() 821 *getOrCreateTypeDIE(cast<DIDerivedType>(DTy)->getClassType())); in constructTypeDIE() 823 if (!DTy->isForwardDecl()) in constructTypeDIE() [all …]
|
D | DwarfUnit.h | 310 void constructTypeDIE(DIE &Buffer, const DIDerivedType *DTy);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Debugify.cpp | 71 DIType *&DTy = TypeCache[Size]; in applyDebugifyMetadata() local 72 if (!DTy) { in applyDebugifyMetadata() 74 DTy = DIB.createBasicType(Name, Size, dwarf::DW_ATE_unsigned); in applyDebugifyMetadata() 76 return DTy; in applyDebugifyMetadata()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/ |
D | IRMover.cpp | 67 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); 214 void TypeMapTy::finishType(StructType *DTy, StructType *STy, in finishType() argument 216 DTy->setBody(ETypes, STy->isPacked()); in finishType() 222 DTy->setName(TmpName); in finishType() 225 DstStructTypesSet.addNonOpaque(DTy); in finishType() 260 StructType *DTy = StructType::create(Ty->getContext()); in get() local 261 return *Entry = DTy; in get() 285 if (auto *DTy = dyn_cast<StructType>(*Entry)) { in get() local 286 if (DTy->isOpaque()) { in get() 288 finishType(DTy, STy, ElementTypes); in get() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 10372 auto *DTy = Denominator->getType(); in isImpliedViaOperations() local 10374 if (DTy->isPointerTy() != FRHSTy->isPointerTy()) in isImpliedViaOperations() 10383 auto *WTy = getWiderType(DTy, FRHSTy); in isImpliedViaOperations()
|