/external/llvm/lib/Linker/ |
D | IRMover.cpp | 65 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); 209 void TypeMapTy::finishType(StructType *DTy, StructType *STy, in finishType() argument 211 DTy->setBody(ETypes, STy->isPacked()); in finishType() 217 DTy->setName(TmpName); in finishType() 220 DstStructTypesSet.addNonOpaque(DTy); in finishType() 247 StructType *DTy = StructType::create(Ty->getContext()); in get() local 248 return *Entry = DTy; in get() 271 if (auto *DTy = dyn_cast<StructType>(*Entry)) { in get() local 272 if (DTy->isOpaque()) { in get() 274 finishType(DTy, STy, ElementTypes); in get() [all …]
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 448 auto *DTy = cast<DIDerivedType>(Ty); in addBlockByrefAddress() local 449 TmpTy = resolve(DTy->getBaseType()); in addBlockByrefAddress() 527 if (auto *DTy = dyn_cast<DIDerivedType>(Ty)) { in isUnsignedDIType() local 542 DITypeRef Deriv = DTy->getBaseType(); in isUnsignedDIType() 839 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIDerivedType *DTy) { in constructTypeDIE() argument 841 StringRef Name = DTy->getName(); in constructTypeDIE() 842 uint64_t Size = DTy->getSizeInBits() >> 3; in constructTypeDIE() 846 const DIType *FromTy = resolve(DTy->getBaseType()); in constructTypeDIE() 864 *getOrCreateTypeDIE(resolve(cast<DIDerivedType>(DTy)->getClassType()))); in constructTypeDIE() 866 if (!DTy->isForwardDecl()) in constructTypeDIE() [all …]
|
D | DwarfUnit.h | 346 void constructTypeDIE(DIE &Buffer, const DIDerivedType *DTy); 347 void constructTypeDIE(DIE &Buffer, const DISubroutineType *DTy);
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 1022 QualType DTy = cast<CXXDeleteExpr>(E)->getDestroyedType(); in canThrow() local 1023 if (DTy.isNull() || DTy->isDependentType()) { in canThrow() 1028 if (const RecordType *RT = DTy->getAs<RecordType>()) { in canThrow()
|
D | SemaType.cpp | 5352 const Type *DTy = Ty->getUnqualifiedDesugaredType(); in FunctionTypeUnwrapper() local 5353 if (Ty == DTy) { in FunctionTypeUnwrapper() 5358 T = QualType(DTy, 0); in FunctionTypeUnwrapper()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 3553 QualType DTy = DE->getDestroyedType(); in VisitCXXDeleteExpr() local 3554 DTy = DTy.getNonReferenceType(); in VisitCXXDeleteExpr() 3555 CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl(); in VisitCXXDeleteExpr() 3884 QualType DTy = DE->getDestroyedType(); in getDestructorDecl() local 3885 DTy = DTy.getNonReferenceType(); in getDestructorDecl() 3887 astContext.getBaseElementType(DTy)->getAsCXXRecordDecl(); in getDestructorDecl()
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 3222 *DTy = BC->getDestTy()->getPointerElementType(); in isDereferenceableAndAlignedPointer() local 3223 if (STy->isSized() && DTy->isSized() && in isDereferenceableAndAlignedPointer() 3224 (DL.getTypeStoreSize(STy) >= DL.getTypeStoreSize(DTy)) && in isDereferenceableAndAlignedPointer() 3225 (DL.getABITypeAlignment(STy) >= DL.getABITypeAlignment(DTy))) in isDereferenceableAndAlignedPointer()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 620 QualType DTy = DE->getDestroyedType(); in ProcessDeleteDtor() local 621 QualType BTy = getContext().getBaseElementType(DTy); in ProcessDeleteDtor()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 569 SDValue getConvertRndSat(EVT VT, SDLoc dl, SDValue Val, SDValue DTy,
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 1272 llvm::DIType *DTy = DBuilder.createInheritance( in CollectCXXBases() local 1274 EltTys.push_back(DTy); in CollectCXXBases()
|
D | CGBuiltin.cpp | 3142 llvm::Type *DTy =llvm::VectorType::getTruncatedElementVectorType(VTy); in EmitCommonNeonBuiltinExpr() local 3143 Ops[0] = Builder.CreateBitCast(Ops[0], DTy); in EmitCommonNeonBuiltinExpr()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1675 SDValue Val, SDValue DTy, in getConvertRndSat() argument 1680 if (DTy == STy && in getConvertRndSat() 1685 SDValue Ops[] = { Val, DTy, STy, Rnd, Sat }; in getConvertRndSat()
|