Home
last modified time | relevance | path

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

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDLoopUnrollAnalyzer.cpp108 ConstantDataSequential *CDS = in visitLoad() local
110 if (!CDS) in visitLoad()
116 if (CDS->getElementType() != I.getType()) in visitLoad()
119 unsigned ElemSize = CDS->getElementType()->getPrimitiveSizeInBits() / 8U; in visitLoad()
129 if (Index >= CDS->getNumElements()) { in visitLoad()
135 Constant *CV = CDS->getElementAsConstant(Index); in visitLoad()
HDTargetTransformInfo.cpp574 } else if (auto *CDS = dyn_cast<ConstantDataSequential>(V)) { in getOperandInfo() local
576 for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I) { in getOperandInfo()
577 if (auto *CI = dyn_cast<ConstantInt>(CDS->getElementAsConstant(I))) in getOperandInfo()
HDValueTracking.cpp1752 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) { in computeKnownBits() local
1756 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in computeKnownBits()
1757 APInt Elt = CDS->getElementAsAPInt(i); in computeKnownBits()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/
HDTargetLoweringObjectFile.cpp95 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(C)) { in IsNullTerminatedString() local
96 unsigned NumElts = CDS->getNumElements(); in IsNullTerminatedString()
99 if (CDS->getElementAsInteger(NumElts-1) != 0) in IsNullTerminatedString()
104 if (CDS->getElementAsInteger(i) == 0) in IsNullTerminatedString()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDAsmPrinter.cpp2417 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) in isRepeatedByteSequence() local
2418 return isRepeatedByteSequence(CDS); in isRepeatedByteSequence()
2424 const ConstantDataSequential *CDS, in emitGlobalConstantDataSequential() argument
2427 int Value = isRepeatedByteSequence(CDS, DL); in emitGlobalConstantDataSequential()
2429 uint64_t Bytes = DL.getTypeAllocSize(CDS->getType()); in emitGlobalConstantDataSequential()
2436 if (CDS->isString()) in emitGlobalConstantDataSequential()
2437 return AP.OutStreamer->EmitBytes(CDS->getAsString()); in emitGlobalConstantDataSequential()
2440 unsigned ElementByteSize = CDS->getElementByteSize(); in emitGlobalConstantDataSequential()
2441 if (isa<IntegerType>(CDS->getElementType())) { in emitGlobalConstantDataSequential()
2442 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in emitGlobalConstantDataSequential()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
HDMVETailPredication.cpp255 if (auto *CDS = dyn_cast<ConstantDataSequential>(Const)) { in isTailPredicate() local
256 for (unsigned i = 0; i < CDS->getNumElements(); ++i) { in isTailPredicate()
257 if (CDS->getElementAsInteger(i) != i) in isTailPredicate()
/freebsd-11-stable/include/rpcsvc/
HDnis_object.x127 CDS= 8 enumerator
/freebsd-11-stable/sys/powerpc/conf/
HDMPC85XX2 # Custom kernel for Freescale MPC85XX development boards like the CDS etc.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86MCInstLower.cpp2520 if (auto *CDS = dyn_cast<ConstantDataSequential>(C)) { in EmitInstruction() local
2523 for (int i = 0, NumElements = CDS->getNumElements(); i < NumElements; in EmitInstruction()
2527 if (CDS->getElementType()->isIntegerTy()) in EmitInstruction()
2528 printConstant(CDS->getElementAsAPInt(i), CS); in EmitInstruction()
2529 else if (CDS->getElementType()->isHalfTy() || in EmitInstruction()
2530 CDS->getElementType()->isFloatTy() || in EmitInstruction()
2531 CDS->getElementType()->isDoubleTy()) in EmitInstruction()
2532 printConstant(CDS->getElementAsAPFloat(i), CS); in EmitInstruction()
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGDecl.cpp885 if (llvm::ConstantDataSequential *CDS = in canEmitInitWithFewStoresAfterBZero() local
887 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in canEmitInitWithFewStoresAfterBZero()
888 llvm::Constant *Elt = CDS->getElementAsConstant(i); in canEmitInitWithFewStoresAfterBZero()
914 if (llvm::ConstantDataSequential *CDS = in emitStoresForInitAfterBZero() local
916 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in emitStoresForInitAfterBZero()
917 llvm::Constant *Elt = CDS->getElementAsConstant(i); in emitStoresForInitAfterBZero()
HDCGExprConstant.cpp346 if (auto *CDS = dyn_cast<llvm::ConstantDataSequential>(C)) { in split() local
348 CharUnits ElemSize = getSize(CDS->getElementType()); in split()
350 llvm::map_range(llvm::seq(0u, CDS->getNumElements()), in split()
352 return CDS->getElementAsConstant(Elem); in split()
356 llvm::seq(0u, CDS->getNumElements()), in split()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
HDNVPTXAsmPrinter.cpp1938 if (const ConstantDataSequential *CDS = in bufferAggregateConstant() local
1940 if (CDS->getNumElements()) in bufferAggregateConstant()
1941 for (unsigned i = 0; i < CDS->getNumElements(); ++i) in bufferAggregateConstant()
1942 bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0, in bufferAggregateConstant()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDInstructions.cpp1863 if (const auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) { in isValidOperands() local
1866 if (CDS->getElementAsInteger(i) >= V1Size*2) in isValidOperands()
1884 if (auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) in getMaskValue() local
1885 return CDS->getElementAsInteger(i); in getMaskValue()
1896 if (auto *CDS = dyn_cast<ConstantDataSequential>(Mask)) { in getShuffleMask() local
1898 Result.push_back(CDS->getElementAsInteger(i)); in getShuffleMask()
HDConstants.cpp398 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this)) in getAggregateElement() local
399 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) in getAggregateElement()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
HDExecutionEngine.cpp1167 if (const ConstantDataSequential *CDS = in InitializeMemory() local
1170 StringRef Data = CDS->getRawDataValues(); in InitializeMemory()
/freebsd-11-stable/contrib/file/magic/Magdir/
HDsysex310 >1 belong&0xffffff00 0x00204000 CDS Advanced Technology
/freebsd-11-stable/sys/boot/fdt/dts/powerpc/
HDmpc8555cds.dts2 * MPC8555 CDS Device Tree Source
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
HDBitcodeWriter.cpp2412 } else if (const ConstantDataSequential *CDS = in writeConstants() local
2415 Type *EltTy = CDS->getType()->getElementType(); in writeConstants()
2417 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2418 Record.push_back(CDS->getElementAsInteger(i)); in writeConstants()
2420 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in writeConstants()
2422 CDS->getElementAsAPFloat(i).bitcastToAPInt().getLimitedValue()); in writeConstants()
/freebsd-11-stable/contrib/ldns/ldns/
HDconfig.h.in287 /* Define this to enable RR type CDS. */
/freebsd-11-stable/contrib/ldns/
HDconfigure.ac395 AC_DEFINE_UNQUOTED([RRTYPE_CDS], [], [Define this to enable RR type CDS.])
HDChangelog18 * New RR types HIP, NINFO, RKEY, CDS, EUI48, EUI64, URI, CAA and TA.
/freebsd-11-stable/usr.bin/fortune/datfiles/
HDfortunes.sp.ok678 CDS
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAGBuilder.cpp1518 if (const ConstantDataSequential *CDS = in getValueImpl() local
1521 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in getValueImpl()
1522 SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode(); in getValueImpl()
1529 if (isa<ArrayType>(CDS->getType())) in getValueImpl()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZScheduleZ196.td569 (instregex "CDS(Y)?$")>;
HDSystemZScheduleZEC12.td581 (instregex "CDS(Y)?$")>;

12