| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | LoopUnrollAnalyzer.cpp | 108 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()
|
| HD | TargetTransformInfo.cpp | 574 } 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()
|
| HD | ValueTracking.cpp | 1752 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/ |
| HD | TargetLoweringObjectFile.cpp | 95 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/ |
| HD | AsmPrinter.cpp | 2417 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/ |
| HD | MVETailPredication.cpp | 255 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/ |
| HD | nis_object.x | 127 CDS= 8 enumerator
|
| /freebsd-11-stable/sys/powerpc/conf/ |
| HD | MPC85XX | 2 # Custom kernel for Freescale MPC85XX development boards like the CDS etc.
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| HD | X86MCInstLower.cpp | 2520 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/ |
| HD | CGDecl.cpp | 885 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()
|
| HD | CGExprConstant.cpp | 346 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/ |
| HD | NVPTXAsmPrinter.cpp | 1938 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/ |
| HD | Instructions.cpp | 1863 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()
|
| HD | Constants.cpp | 398 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/ |
| HD | ExecutionEngine.cpp | 1167 if (const ConstantDataSequential *CDS = in InitializeMemory() local 1170 StringRef Data = CDS->getRawDataValues(); in InitializeMemory()
|
| /freebsd-11-stable/contrib/file/magic/Magdir/ |
| HD | sysex | 310 >1 belong&0xffffff00 0x00204000 CDS Advanced Technology
|
| /freebsd-11-stable/sys/boot/fdt/dts/powerpc/ |
| HD | mpc8555cds.dts | 2 * MPC8555 CDS Device Tree Source
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| HD | BitcodeWriter.cpp | 2412 } 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/ |
| HD | config.h.in | 287 /* Define this to enable RR type CDS. */
|
| /freebsd-11-stable/contrib/ldns/ |
| HD | configure.ac | 395 AC_DEFINE_UNQUOTED([RRTYPE_CDS], [], [Define this to enable RR type CDS.])
|
| HD | Changelog | 18 * New RR types HIP, NINFO, RKEY, CDS, EUI48, EUI64, URI, CAA and TA.
|
| /freebsd-11-stable/usr.bin/fortune/datfiles/ |
| HD | fortunes.sp.ok | 678 CDS
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| HD | SelectionDAGBuilder.cpp | 1518 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/ |
| HD | SystemZScheduleZ196.td | 569 (instregex "CDS(Y)?$")>;
|
| HD | SystemZScheduleZEC12.td | 581 (instregex "CDS(Y)?$")>;
|