Home
last modified time | relevance | path

Searched refs:CDS (Results 1 – 25 of 36) sorted by relevance

12

/src/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopUnrollAnalyzer.cpp116 ConstantDataSequential *CDS = in visitLoad() local
118 if (!CDS) in visitLoad()
124 if (CDS->getElementType() != I.getType()) in visitLoad()
127 unsigned ElemSize = CDS->getElementType()->getPrimitiveSizeInBits() / 8U; in visitLoad()
137 if (Index >= CDS->getNumElements()) { in visitLoad()
143 Constant *CV = CDS->getElementAsConstant(Index); in visitLoad()
H A DTargetTransformInfo.cpp872 } else if (const auto *CDS = dyn_cast<ConstantDataSequential>(V)) { in getOperandInfo() local
874 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) { in getOperandInfo()
875 if (auto *CI = dyn_cast<ConstantInt>(CDS->getElementAsConstant(I))) { in getOperandInfo()
/src/contrib/libcbor/doc/source/api/
H A Ddecoding.rst21 │ │ │ CDS │ ║ │ │
36 (PSD = Provided Data Structures, CDS = Custom Data Structures)
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupVectorConstants.cpp118 if (auto *CDS = dyn_cast<ConstantDataSequential>(C)) { in extractConstantBits() local
119 bool IsInteger = CDS->getElementType()->isIntegerTy(); in extractConstantBits()
120 bool IsFloat = CDS->getElementType()->isHalfTy() || in extractConstantBits()
121 CDS->getElementType()->isBFloatTy() || in extractConstantBits()
122 CDS->getElementType()->isFloatTy() || in extractConstantBits()
123 CDS->getElementType()->isDoubleTy(); in extractConstantBits()
126 unsigned EltBits = CDS->getElementType()->getPrimitiveSizeInBits(); in extractConstantBits()
127 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) { in extractConstantBits()
129 Bits.insertBits(CDS->getElementAsAPInt(I), I * EltBits); in extractConstantBits()
131 Bits.insertBits(CDS->getElementAsAPFloat(I).bitcastToAPInt(), in extractConstantBits()
H A DX86MCInstLower.cpp1580 } else if (auto *CDS = dyn_cast<ConstantDataSequential>(COp)) { in printConstant() local
1581 Type *EltTy = CDS->getElementType(); in printConstant()
1585 unsigned E = std::min(BitWidth / EltBits, CDS->getNumElements()); in printConstant()
1591 printConstant(CDS->getElementAsAPInt(I), CS, PrintZero); in printConstant()
1593 printConstant(CDS->getElementAsAPFloat(I), CS, PrintZero); in printConstant()
1661 if (auto *CDS = dyn_cast<ConstantDataSequential>(C)) { in printExtend() local
1662 int NumElts = CDS->getNumElements(); in printExtend()
1670 if (CDS->getElementType()->isIntegerTy()) { in printExtend()
1671 APInt Elt = CDS->getElementAsAPInt(i); in printExtend()
/src/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp106 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(C)) { in IsNullTerminatedString() local
107 unsigned NumElts = CDS->getNumElements(); in IsNullTerminatedString()
110 if (CDS->getElementAsInteger(NumElts-1) != 0) in IsNullTerminatedString()
115 if (CDS->getElementAsInteger(i) == 0) in IsNullTerminatedString()
/src/contrib/llvm-project/llvm/lib/Object/
H A DOffloadBinary.cpp132 auto *CDS = dyn_cast<ConstantDataSequential>(GV->getInitializer()); in extractFromBitcode() local
133 if (!CDS) in extractFromBitcode()
136 MemoryBufferRef Contents(CDS->getAsString(), M->getName()); in extractFromBitcode()
/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3345 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) in isRepeatedByteSequence() local
3346 return isRepeatedByteSequence(CDS); in isRepeatedByteSequence()
3364 const DataLayout &DL, const ConstantDataSequential *CDS, AsmPrinter &AP, in emitGlobalConstantDataSequential() argument
3367 int Value = isRepeatedByteSequence(CDS, DL); in emitGlobalConstantDataSequential()
3369 uint64_t Bytes = DL.getTypeAllocSize(CDS->getType()); in emitGlobalConstantDataSequential()
3376 if (CDS->isString()) in emitGlobalConstantDataSequential()
3377 return AP.OutStreamer->emitBytes(CDS->getAsString()); in emitGlobalConstantDataSequential()
3380 unsigned ElementByteSize = CDS->getElementByteSize(); in emitGlobalConstantDataSequential()
3381 if (isa<IntegerType>(CDS->getElementType())) { in emitGlobalConstantDataSequential()
3382 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) { in emitGlobalConstantDataSequential()
[all …]
/src/include/rpcsvc/
H A Dnis_object.x124 CDS= 8 enumerator
/src/sys/contrib/device-tree/src/powerpc/fsl/
H A Dmpc8548cds_36b.dts3 * MPC8548 CDS Device Tree Source (36-bit address map)
H A Dmpc8548cds_32b.dts3 * MPC8548 CDS Device Tree Source (32-bit address map)
H A Dppa8548.dts7 * MPC8548 CDS Device Tree Source (36-bit address map)
H A Dmpc8541cds.dts3 * MPC8541 CDS Device Tree Source
H A Dmpc8555cds.dts3 * MPC8555 CDS Device Tree Source
/src/sys/powerpc/conf/
H A DMPC85XX2 # Custom kernel for Freescale MPC85XX development boards like the CDS etc.
/src/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp2061 } else if (const ConstantDataSequential *CDS = in writeConstants() local
2064 Type *EltTy = CDS->getElementType(); in writeConstants()
2066 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2067 Record.push_back(CDS->getElementAsInteger(i)); in writeConstants()
2069 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in writeConstants()
2074 F = CDS->getElementAsFloat(i); in writeConstants()
2079 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in writeConstants()
2084 F = CDS->getElementAsDouble(i); in writeConstants()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp934 if (llvm::ConstantDataSequential *CDS = in canEmitInitWithFewStoresAfterBZero() local
936 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in canEmitInitWithFewStoresAfterBZero()
937 llvm::Constant *Elt = CDS->getElementAsConstant(i); in canEmitInitWithFewStoresAfterBZero()
966 if (llvm::ConstantDataSequential *CDS = in emitStoresForInitAfterBZero() local
968 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in emitStoresForInitAfterBZero()
969 llvm::Constant *Elt = CDS->getElementAsConstant(i); in emitStoresForInitAfterBZero()
H A DCGExprConstant.cpp354 if (auto *CDS = dyn_cast<llvm::ConstantDataSequential>(C)) { in split() local
358 CharUnits ElemSize = getSize(CDS->getElementType()); in split()
360 llvm::map_range(llvm::seq(0u, CDS->getNumElements()), in split()
362 return CDS->getElementAsConstant(Elem); in split()
366 llvm::seq(0u, CDS->getNumElements()), in split()
/src/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1947 if (const ConstantDataSequential *CDS = in bufferAggregateConstant() local
1949 if (CDS->getNumElements()) in bufferAggregateConstant()
1950 for (unsigned i = 0; i < CDS->getNumElements(); ++i) in bufferAggregateConstant()
1951 bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0, in bufferAggregateConstant()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1193 if (const ConstantDataSequential *CDS = in InitializeMemory() local
1196 StringRef Data = CDS->getRawDataValues(); in InitializeMemory()
/src/sys/dts/powerpc/
H A Dmpc8555cds.dts2 * MPC8555 CDS Device Tree Source
/src/contrib/ldns/
H A DChangelog103 * bugfix #3437: CDS & CDNSKEY RRsets should be signed with the KSK
184 * CDS and CDNSKEY rr type from RFC 7344.
204 * bugfix #570: Add TLSA, CDS, CDNSKEY and OPENPGPKEY RR types to ldnsx
296 * New RR types HIP, NINFO, RKEY, CDS, EUI48, EUI64, URI, CAA and TA.
/src/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp1775 if (const auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) { in isValidOperands() local
1779 if (CDS->getElementAsInteger(i) >= V1Size*2) in isValidOperands()
1809 if (auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) { in getShuffleMask() local
1811 Result.push_back(CDS->getElementAsInteger(i)); in getShuffleMask()
/src/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2764 } else if (const ConstantDataSequential *CDS = in writeConstants() local
2767 Type *EltTy = CDS->getElementType(); in writeConstants()
2769 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2770 Record.push_back(CDS->getElementAsInteger(i)); in writeConstants()
2772 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2774 CDS->getElementAsAPFloat(i).bitcastToAPInt().getLimitedValue()); in writeConstants()
/src/contrib/file/magic/Magdir/
H A Dsysex345 >1 belong&0xffffff00 0x00204000 CDS Advanced Technology

12