Home
last modified time | relevance | path

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

/external/llvm/test/CodeGen/X86/
Dnegate-add-zero.ll8 %"struct.CDS::DefaultAlloc" = type <{ i8 }>
9 %"struct.CDS::SingularError" = type { %"struct.CDS::exception" }
10 %"struct.CDS::auto_ptr<IVMAtom>" = type { %struct.IVMAtom* }
11 %"struct.CDS::exception" = type { [300 x i8] }
30 …%"struct.CDSVector<Vec3,0,CDS::DefaultAlloc>" = type { %"struct.CDSVectorBase<Vec3,CDS::DefaultAll…
31 …%"struct.CDSVector<double,0,CDS::DefaultAlloc>" = type { %"struct.CDSVectorBase<double,CDS::Defaul…
32 …%"struct.CDSVectorBase<Vec3,CDS::DefaultAlloc>" = type { %"struct.CDSVectorRep<Vec3,CDS::DefaultAl…
33 …%"struct.CDSVectorBase<double,CDS::DefaultAlloc>" = type { %"struct.CDSVectorRep<double,CDS::Defau…
34 …%"struct.CDSVectorRep<Vec3,CDS::DefaultAlloc>" = type { i32, %"struct.CDS::DefaultAlloc", %struct.…
35 …%"struct.CDSVectorRep<double,CDS::DefaultAlloc>" = type { i32, %"struct.CDS::DefaultAlloc", double…
[all …]
/external/llvm/lib/Target/
DTargetLoweringObjectFile.cpp79 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(C)) { in IsNullTerminatedString() local
80 unsigned NumElts = CDS->getNumElements(); in IsNullTerminatedString()
83 if (CDS->getElementAsInteger(NumElts-1) != 0) in IsNullTerminatedString()
88 if (CDS->getElementAsInteger(i) == 0) in IsNullTerminatedString()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1619 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) in isRepeatedByteSequence() local
1620 return isRepeatedByteSequence(CDS); in isRepeatedByteSequence()
1625 static void emitGlobalConstantDataSequential(const ConstantDataSequential *CDS, in emitGlobalConstantDataSequential() argument
1629 int Value = isRepeatedByteSequence(CDS, AP.TM); in emitGlobalConstantDataSequential()
1631 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType()); in emitGlobalConstantDataSequential()
1638 if (CDS->isString()) in emitGlobalConstantDataSequential()
1639 return AP.OutStreamer.EmitBytes(CDS->getAsString(), AddrSpace); in emitGlobalConstantDataSequential()
1642 unsigned ElementByteSize = CDS->getElementByteSize(); in emitGlobalConstantDataSequential()
1643 if (isa<IntegerType>(CDS->getElementType())) { in emitGlobalConstantDataSequential()
1644 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in emitGlobalConstantDataSequential()
[all …]
/external/clang/lib/CodeGen/
DCGDecl.cpp693 if (llvm::ConstantDataSequential *CDS = in canEmitInitWithFewStoresAfterMemset() local
695 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in canEmitInitWithFewStoresAfterMemset()
696 llvm::Constant *Elt = CDS->getElementAsConstant(i); in canEmitInitWithFewStoresAfterMemset()
722 if (llvm::ConstantDataSequential *CDS = in emitStoresForInitAfterMemset() local
724 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in emitStoresForInitAfterMemset()
725 llvm::Constant *Elt = CDS->getElementAsConstant(i); in emitStoresForInitAfterMemset()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp942 } else if (const ConstantDataSequential *CDS = in WriteConstants() local
945 Type *EltTy = CDS->getType()->getElementType(); in WriteConstants()
947 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) in WriteConstants()
948 Record.push_back(CDS->getElementAsInteger(i)); in WriteConstants()
950 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in WriteConstants()
952 F = CDS->getElementAsFloat(i); in WriteConstants()
957 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in WriteConstants()
959 F = CDS->getElementAsDouble(i); in WriteConstants()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp780 } else if (const ConstantDataSequential *CDS = in printConstant() local
782 if (CDS->isString()) { in printConstant()
785 StringRef Str = CDS->getAsString(); in printConstant()
801 for (unsigned i = 0; i != CDS->getNumElements(); ++i) { in printConstant()
802 Constant *Elt = CDS->getElementAsConstant(i); in printConstant()
809 if (isa<ArrayType>(CDS->getType())) in printConstant()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp1907 if (const ConstantDataSequential *CDS = in bufferAggregateConstant() local
1909 if (CDS->getNumElements()) in bufferAggregateConstant()
1910 for (unsigned i = 0; i < CDS->getNumElements(); ++i) in bufferAggregateConstant()
1911 bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0, in bufferAggregateConstant()
/external/llvm/lib/IR/
DInstructions.cpp1591 if (const ConstantDataSequential *CDS = in isValidOperands() local
1595 if (CDS->getElementAsInteger(i) >= V1Size*2) in isValidOperands()
1616 if (ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(Mask)) in getMaskValue() local
1617 return CDS->getElementAsInteger(i); in getMaskValue()
1630 if (ConstantDataSequential *CDS=dyn_cast<ConstantDataSequential>(Mask)) { in getShuffleMask() local
1632 Result.push_back(CDS->getElementAsInteger(i)); in getShuffleMask()
DConstants.cpp202 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this)) in getAggregateElement() local
203 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) : 0; in getAggregateElement()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp997 if (const ConstantDataSequential *CDS = in InitializeMemory() local
1000 StringRef Data = CDS->getRawDataValues(); in InitializeMemory()
/external/llvm/lib/Analysis/
DValueTracking.cpp261 if (ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V)) { in ComputeMaskedBits() local
266 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in ComputeMaskedBits()
267 Elt = CDS->getElementAsInteger(i); in ComputeMaskedBits()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp1096 if (const ConstantDataSequential *CDS = in getValueImpl() local
1099 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { in getValueImpl()
1100 SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode(); in getValueImpl()
1107 if (isa<ArrayType>(CDS->getType())) in getValueImpl()
/external/srec/config/en.us/dictionary/
Dc0.618120 CDS S IY1 D IY1 Z