Home
last modified time | relevance | path

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

12

/freebsd/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.cpp842 } else if (const auto *CDS = dyn_cast<ConstantDataSequential>(V)) { in getOperandInfo() local
844 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) { in getOperandInfo()
845 if (auto *CI = dyn_cast<ConstantInt>(CDS->getElementAsConstant(I))) { in getOperandInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupVectorConstants.cpp85 if (auto *CDS = dyn_cast<ConstantDataSequential>(C)) { in extractConstantBits() local
86 bool IsInteger = CDS->getElementType()->isIntegerTy(); in extractConstantBits()
87 bool IsFloat = CDS->getElementType()->isHalfTy() || in extractConstantBits()
88 CDS->getElementType()->isBFloatTy() || in extractConstantBits()
89 CDS->getElementType()->isFloatTy() || in extractConstantBits()
90 CDS->getElementType()->isDoubleTy(); in extractConstantBits()
93 unsigned EltBits = CDS->getElementType()->getPrimitiveSizeInBits(); in extractConstantBits()
94 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) { in extractConstantBits()
96 Bits.insertBits(CDS->getElementAsAPInt(I), I * EltBits); in extractConstantBits()
98 Bits.insertBits(CDS->getElementAsAPFloat(I).bitcastToAPInt(), in extractConstantBits()
H A DX86MCInstLower.cpp1513 } else if (auto *CDS = dyn_cast<ConstantDataSequential>(COp)) { in printConstant() local
1514 Type *EltTy = CDS->getElementType(); in printConstant()
1518 unsigned E = std::min(BitWidth / EltBits, CDS->getNumElements()); in printConstant()
1524 printConstant(CDS->getElementAsAPInt(I), CS, PrintZero); in printConstant()
1526 printConstant(CDS->getElementAsAPFloat(I), CS, PrintZero); in printConstant()
/freebsd/contrib/libcbor/doc/source/api/
H A Ddecoding.rst21 │ │ │ CDS │ ║ │ │
36 (PSD = Provided Data Structures, CDS = Custom Data Structures)
/freebsd/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()
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3335 return isRepeatedByteSequence(CDS); in isRepeatedByteSequence()
3356 int Value = isRepeatedByteSequence(CDS, DL); in emitGlobalConstantDataSequential()
3358 uint64_t Bytes = DL.getTypeAllocSize(CDS->getType()); in emitGlobalConstantDataSequential()
3365 if (CDS->isString()) in emitGlobalConstantDataSequential()
3366 return AP.OutStreamer->emitBytes(CDS->getAsString()); in emitGlobalConstantDataSequential()
3369 unsigned ElementByteSize = CDS->getElementByteSize(); in emitGlobalConstantDataSequential()
3370 if (isa<IntegerType>(CDS->getElementType())) { in emitGlobalConstantDataSequential()
3376 AP.OutStreamer->emitIntValue(CDS->getElementAsInteger(I), in emitGlobalConstantDataSequential()
3380 Type *ET = CDS->getElementType(); in emitGlobalConstantDataSequential()
3387 unsigned Size = DL.getTypeAllocSize(CDS->getType()); in emitGlobalConstantDataSequential()
[all …]
/freebsd/include/rpcsvc/
H A Dnis_object.x124 CDS= 8 enumerator
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A Dmpc8548cds_32b.dts3 * MPC8548 CDS Device Tree Source (32-bit address map)
H A Dmpc8548cds_36b.dts3 * MPC8548 CDS Device Tree Source (36-bit address map)
H A Dppa8548.dts7 * MPC8548 CDS Device Tree Source (36-bit address map)
H A Dmpc8555cds.dts3 * MPC8555 CDS Device Tree Source
H A Dmpc8541cds.dts3 * MPC8541 CDS Device Tree Source
/freebsd/sys/powerpc/conf/
H A DMPC85XX2 # Custom kernel for Freescale MPC85XX development boards like the CDS etc.
H A DMPC85XXSPE2 # Custom kernel for Freescale MPC85XX development boards like the CDS etc.
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILBitcodeWriter.cpp2062 } else if (const ConstantDataSequential *CDS = in writeConstants() local
2065 Type *EltTy = CDS->getElementType(); in writeConstants()
2067 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2068 Record.push_back(CDS->getElementAsInteger(i)); in writeConstants()
2070 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in writeConstants()
2075 F = CDS->getElementAsFloat(i); in writeConstants()
2080 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in writeConstants()
2085 F = CDS->getElementAsDouble(i); in writeConstants()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp932 if (llvm::ConstantDataSequential *CDS = in canEmitInitWithFewStoresAfterBZero() local
934 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in canEmitInitWithFewStoresAfterBZero()
935 llvm::Constant *Elt = CDS->getElementAsConstant(i); in canEmitInitWithFewStoresAfterBZero()
964 if (llvm::ConstantDataSequential *CDS = in emitStoresForInitAfterBZero() local
966 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in emitStoresForInitAfterBZero()
967 llvm::Constant *Elt = CDS->getElementAsConstant(i); in emitStoresForInitAfterBZero()
H A DCGExprConstant.cpp353 if (auto *CDS = dyn_cast<llvm::ConstantDataSequential>(C)) { in split() local
357 CharUnits ElemSize = getSize(CDS->getElementType()); in split()
359 llvm::map_range(llvm::seq(0u, CDS->getNumElements()), in split()
361 return CDS->getElementAsConstant(Elem); in split()
365 llvm::seq(0u, CDS->getNumElements()), in split()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1928 if (const ConstantDataSequential *CDS = in bufferAggregateConstant() local
1930 if (CDS->getNumElements()) in bufferAggregateConstant()
1931 for (unsigned i = 0; i < CDS->getNumElements(); ++i) in bufferAggregateConstant()
1932 bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0, in bufferAggregateConstant()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1193 if (const ConstantDataSequential *CDS = in InitializeMemory() local
1196 StringRef Data = CDS->getRawDataValues(); in InitializeMemory()
/freebsd/sys/dts/powerpc/
H A Dmpc8555cds.dts2 * MPC8555 CDS Device Tree Source
/freebsd/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.
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2673 } else if (const ConstantDataSequential *CDS = in writeConstants() local
2676 Type *EltTy = CDS->getElementType(); in writeConstants()
2678 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2679 Record.push_back(CDS->getElementAsInteger(i)); in writeConstants()
2681 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2683 CDS->getElementAsAPFloat(i).bitcastToAPInt().getLimitedValue()); in writeConstants()
/freebsd/contrib/file/magic/Magdir/
H A Dsysex345 >1 belong&0xffffff00 0x00204000 CDS Advanced Technology

12