| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| D | LowerGlobalDtors.cpp | 86 auto *ETy = dyn_cast<StructType>(InitList->getType()->getElementType()); in runImpl() local 87 if (!ETy || ETy->getNumElements() != 3 || in runImpl() 88 !ETy->getTypeAtIndex(0U)->isIntegerTy() || in runImpl() 89 !ETy->getTypeAtIndex(1U)->isPointerTy() || in runImpl() 90 !ETy->getTypeAtIndex(2U)->isPointerTy()) in runImpl()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/NVPTX/ |
| D | NVPTXLowerAlloca.cpp | 73 auto ETy = allocaInst->getAllocatedType(); in runOnFunction() local 74 auto LocalAddrTy = PointerType::get(ETy, ADDRESS_SPACE_LOCAL); in runOnFunction() 76 auto GenericAddrTy = PointerType::get(ETy, ADDRESS_SPACE_GENERIC); in runOnFunction()
|
| D | NVPTXAsmPrinter.cpp | 984 Type *ETy = GVar->getValueType(); in printModuleLevelGV() local 1115 O << " .align " << (int)DL.getPrefTypeAlign(ETy).value(); in printModuleLevelGV() 1117 if (ETy->isFloatingPointTy() || ETy->isPointerTy() || in printModuleLevelGV() 1118 (ETy->isIntegerTy() && ETy->getScalarSizeInBits() <= 64)) { in printModuleLevelGV() 1121 if (ETy->isIntegerTy(1)) in printModuleLevelGV() 1124 O << getPTXFundamentalTypeStr(ETy, false); in printModuleLevelGV() 1158 switch (ETy->getTypeID()) { in printModuleLevelGV() 1163 ElementSize = DL.getTypeStoreSize(ETy); in printModuleLevelGV() 1389 Type *ETy = GVar->getValueType(); in emitPTXGlobalVariable() local 1403 O << " .align " << (int)DL.getPrefTypeAlign(ETy).value(); in emitPTXGlobalVariable() [all …]
|
| D | NVPTXISelLowering.cpp | 1417 Type *ETy = Args[i].IndirectType; in getPrototype() local 1420 getFunctionByValParamAlign(F, ETy, InitialAlign, DL); in getPrototype() 1552 Type *ETy = (IsByVal ? Args[i].IndirectType : Ty); in LowerCall() local 1553 ComputePTXValueVTs(*this, DL, ETy, VTs, &Offsets, IsByVal ? 0 : VAOffset); in LowerCall() 1561 ArgAlign = getFunctionByValParamAlign(CB->getCalledFunction(), ETy, in LowerCall()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/BPF/ |
| D | BTFDebug.h | 102 const DICompositeType *ETy; variable 106 BTFTypeEnum(const DICompositeType *ETy, uint32_t NumValues, bool IsSigned); 223 const DICompositeType *ETy; variable 227 BTFTypeEnum64(const DICompositeType *ETy, uint32_t NumValues, bool IsSigned); 335 void visitEnumType(const DICompositeType *ETy, uint32_t &TypeId);
|
| D | BTFDebug.cpp | 166 BTFTypeEnum::BTFTypeEnum(const DICompositeType *ETy, uint32_t VLen, in BTFTypeEnum() argument 167 bool IsSigned) : ETy(ETy) { in BTFTypeEnum() 170 BTFType.Size = roundupToBytes(ETy->getSizeInBits()); in BTFTypeEnum() 178 BTFType.NameOff = BDebug.addString(ETy->getName()); in completeType() 180 DINodeArray Elements = ETy->getElements(); in completeType() 205 BTFTypeEnum64::BTFTypeEnum64(const DICompositeType *ETy, uint32_t VLen, in BTFTypeEnum64() argument 206 bool IsSigned) : ETy(ETy) { in BTFTypeEnum64() 209 BTFType.Size = roundupToBytes(ETy->getSizeInBits()); in BTFTypeEnum64() 217 BTFType.NameOff = BDebug.addString(ETy->getName()); in completeType() 219 DINodeArray Elements = ETy->getElements(); in completeType()
|
| /openbsd/src/gnu/llvm/clang/lib/AST/ |
| D | FormatString.cpp | 352 if (const auto *ETy = argTy->getAs<EnumType>()) { in matchesType() local 355 if (!ETy->getDecl()->isComplete()) in matchesType() 357 argTy = ETy->getDecl()->getIntegerType(); in matchesType() 392 if (const EnumType *ETy = argTy->getAs<EnumType>()) { in matchesType() local 395 if (!ETy->getDecl()->isComplete()) in matchesType() 398 argTy = ETy->getDecl()->getIntegerType(); in matchesType()
|
| D | ScanfFormatString.cpp | 428 if (const EnumType *ETy = PT->getAs<EnumType>()) { in fixType() local 430 if (!ETy->getDecl()->isComplete()) in fixType() 432 PT = ETy->getDecl()->getIntegerType(); in fixType()
|
| D | PrintfFormatString.cpp | 730 if (const EnumType *ETy = QT->getAs<EnumType>()) in fixType() local 731 QT = ETy->getDecl()->getIntegerType(); in fixType()
|
| D | ASTContext.cpp | 10502 if (const auto *ETy = LHS->getAs<EnumType>()) { in mergeTypes() local 10503 return mergeEnumWithInteger(*this, ETy, RHS, false); in mergeTypes() 10505 if (const EnumType* ETy = RHS->getAs<EnumType>()) { in mergeTypes() local 10506 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType); in mergeTypes() 10928 if (const auto *ETy = T->getAs<EnumType>()) in getCorrespondingUnsignedType() local 10929 T = ETy->getDecl()->getIntegerType(); in getCorrespondingUnsignedType() 11002 if (const auto *ETy = T->getAs<EnumType>()) in getCorrespondingSignedType() local 11003 T = ETy->getDecl()->getIntegerType(); in getCorrespondingSignedType()
|
| /openbsd/src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| D | 3494.crt | 17 AAABMA0GCSqGSIb3DQEBCwUAA4IBAQBta4BH77dkpKG/jbB2U1ZmF2RAx9sv+ETy
|
| /openbsd/src/gnu/llvm/clang/lib/CodeGen/ |
| D | CodeGenTypes.cpp | 656 QualType ETy = RTy->getPointeeType(); in ConvertType() local 657 llvm::Type *PointeeType = ConvertTypeForMem(ETy); in ConvertType() 658 unsigned AS = getTargetAddressSpace(ETy); in ConvertType() 664 QualType ETy = PTy->getPointeeType(); in ConvertType() local 665 llvm::Type *PointeeType = ConvertTypeForMem(ETy); in ConvertType() 668 unsigned AS = getTargetAddressSpace(ETy); in ConvertType()
|
| D | CodeGenTBAA.cpp | 198 if (const EnumType *ETy = dyn_cast<EnumType>(Ty)) { in getTypeInfoHelper() local 203 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible()) in getTypeInfoHelper() 208 MContext.mangleTypeName(QualType(ETy, 0), Out); in getTypeInfoHelper()
|
| D | CGCall.cpp | 2876 QualType ETy = ArrTy->getElementType(); in EmitFunctionProlog() local 2878 CGM.getNaturalTypeAlignment(ETy).getAsAlign(); in EmitFunctionProlog() 2881 if (!ETy->isIncompleteType() && ETy->isConstantSizeType() && in EmitFunctionProlog() 2885 getContext().getTypeSizeInChars(ETy).getQuantity() * in EmitFunctionProlog() 2889 ETy.getAddressSpace()) == 0 && in EmitFunctionProlog() 2900 QualType ETy = ArrTy->getElementType(); in EmitFunctionProlog() local 2902 CGM.getNaturalTypeAlignment(ETy).getAsAlign(); in EmitFunctionProlog() 2904 if (!getTypes().getTargetAddressSpace(ETy) && in EmitFunctionProlog() 3436 QualType ETy = Context.getBaseElementType(ATy); in setUsedBits() local 3437 int Size = Context.getTypeSizeInChars(ETy).getQuantity(); in setUsedBits() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | SelectionDAGNodes.h | 2352 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, EVT MemVT, 2355 LoadSDNodeBits.ExtTy = ETy; 2491 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, bool isExpanding, 2494 LoadSDNodeBits.ExtTy = ETy; 2519 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, 2523 LoadSDNodeBits.ExtTy = ETy; 2663 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, 2666 LoadSDNodeBits.ExtTy = ETy; 2851 ISD::MemIndexType IndexType, ISD::LoadExtType ETy) 2854 LoadSDNodeBits.ExtTy = ETy;
|
| D | BasicTTIImpl.h | 412 EVT ETy = getTLI()->getValueType(DL, Ty); in getRegUsageForType() local 413 return getTLI()->getNumRegisters(Ty->getContext(), ETy); in getRegUsageForType()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | InterleavedLoadCombinePass.cpp | 1201 Type *ETy = InterleavedLoad.front().SVI->getType()->getElementType(); in combine() local 1205 FixedVectorType *ILTy = FixedVectorType::get(ETy, Factor * ElementsPerSVI); in combine()
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | AsmWriter.cpp | 1479 Type *ETy = CA->getType()->getElementType(); in WriteConstantInternal() local 1481 WriterCtx.TypePrinter->print(ETy, Out); in WriteConstantInternal() 1486 WriterCtx.TypePrinter->print(ETy, Out); in WriteConstantInternal() 1504 Type *ETy = CA->getType()->getElementType(); in WriteConstantInternal() local 1506 WriterCtx.TypePrinter->print(ETy, Out); in WriteConstantInternal() 1511 WriterCtx.TypePrinter->print(ETy, Out); in WriteConstantInternal() 1549 Type *ETy = CVVTy->getElementType(); in WriteConstantInternal() local 1551 WriterCtx.TypePrinter->print(ETy, Out); in WriteConstantInternal() 1556 WriterCtx.TypePrinter->print(ETy, Out); in WriteConstantInternal()
|
| D | Verifier.cpp | 747 Type *ETy = STy->getTypeAtIndex(2); in visitGlobalVariable() local 748 Type *Int8Ty = Type::getInt8Ty(ETy->getContext()); in visitGlobalVariable() 749 Check(ETy->isPointerTy() && in visitGlobalVariable() 750 cast<PointerType>(ETy)->isOpaqueOrPointeeTypeMatches(Int8Ty), in visitGlobalVariable()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| D | FastISel.cpp | 1444 EVT ETy = TLI.getValueType(DL, I->getOperand(0)->getType()); in selectFreeze() local 1445 if (ETy == MVT::Other || !TLI.isTypeLegal(ETy)) in selectFreeze() 1449 MVT Ty = ETy.getSimpleVT(); in selectFreeze()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| D | HexagonVectorCombine.cpp | 1798 EVT ETy = EVT::getEVT(ElemTy, false); in getHvxTy() local 1799 assert(ETy.isSimple() && "Invalid HVX element type"); in getHvxTy() 1801 assert(HST.isHVXElementType(ETy.getSimpleVT(), /*IncludeBool=*/false) && in getHvxTy() 1804 unsigned NumElems = (8 * HwLen) / ETy.getSizeInBits(); in getHvxTy()
|
| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| D | ScalarEvolution.cpp | 2545 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); in getAddExpr() local 2547 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy && in getAddExpr() 3140 Type *ETy = Ops[0]->getType(); in getMulExpr() local 3141 assert(!ETy->isPointerTy()); in getMulExpr() 3143 assert(Ops[i]->getType() == ETy && in getMulExpr() 3675 Type *ETy = getEffectiveSCEVType(Operands[0]->getType()); in getAddRecExpr() local 3677 assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy && in getAddRecExpr() 3843 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); in getMinMaxExpr() local 3845 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy && in getMinMaxExpr() 4208 Type *ETy = getEffectiveSCEVType(Ops[0]->getType()); in getSequentialMinMaxExpr() local [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/X86/ |
| D | X86TargetTransformInfo.cpp | 6391 EVT ETy = TLI->getValueType(DL, VT); in getInterleavedMemoryOpCost() local 6392 if (!ETy.isSimple()) in getInterleavedMemoryOpCost() 6615 ETy.getSimpleVT())) in getInterleavedMemoryOpCost() 6620 ETy.getSimpleVT())) in getInterleavedMemoryOpCost() 6625 ETy.getSimpleVT())) in getInterleavedMemoryOpCost() 6634 ETy.getSimpleVT())) in getInterleavedMemoryOpCost() 6639 ETy.getSimpleVT())) in getInterleavedMemoryOpCost()
|
| /openbsd/src/gnu/llvm/clang/lib/Sema/ |
| D | SemaInit.cpp | 8477 QualType ETy = Entity.getType(); in Perform() local 8478 bool HasGlobalAS = ETy.hasAddressSpace() && in Perform() 8479 ETy.getAddressSpace() == LangAS::opencl_global; in Perform() 8482 ETy->isAtomicType() && !HasGlobalAS && in Perform()
|
| D | SemaStmt.cpp | 3295 QualType ETy = E->getType(); in ActOnIndirectGotoStmt() local 3303 if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing)) in ActOnIndirectGotoStmt()
|