Searched refs:ElementSize (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DSparseBitVector.h43 template <unsigned ElementSize = 128>
45 : public ilist_node<SparseBitVectorElement<ElementSize> > {
50 BITWORDS_PER_ELEMENT = (ElementSize + BITWORD_SIZE - 1) / BITWORD_SIZE,
51 BITS_PER_ELEMENT = ElementSize
265 template <unsigned ElementSize>
266 struct ilist_traits<SparseBitVectorElement<ElementSize> >
267 : public ilist_default_traits<SparseBitVectorElement<ElementSize> > {
268 typedef SparseBitVectorElement<ElementSize> Element;
281 template <unsigned ElementSize = 128>
283 typedef ilist<SparseBitVectorElement<ElementSize> > ElementLis
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DSROA.cpp1467 APInt ElementSize(Offset.getBitWidth(), ElementSizeInBits / 8);
1468 APInt NumSkippedElements = Offset.udiv(ElementSize);
1471 Offset -= NumSkippedElements * ElementSize;
1479 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
1480 APInt NumSkippedElements = Offset.udiv(ElementSize);
1484 Offset -= NumSkippedElements * ElementSize;
1533 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
1534 if (ElementSize == 0)
1536 APInt NumSkippedElements = Offset.udiv(ElementSize);
1538 Offset -= NumSkippedElements * ElementSize;
1667 uint64_t ElementSize = Ty->getScalarSizeInBits(); local
2064 uint64_t ElementSize; member in class:__anon10435::AllocaPartitionRewriter
2880 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy); local
2924 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy); local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1153 unsigned int ElementSize =0; local
1163 ElementSize = TD->getTypeStoreSize(ETy);
1173 AggBuffer aggBuffer(ElementSize, O, *this);
1178 O << ElementSize/8; local
1182 O << ElementSize/4; local
1188 O << ElementSize; local
1197 if (ElementSize) {
1199 O << ElementSize; local
1206 if (ElementSize) {
1208 O << ElementSize; local
1320 int64_t ElementSize =0; local
1827 int ElementSize = TD->getTypeAllocSize(CPV->getType()); local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/
H A DExecutionEngine.cpp961 unsigned ElementSize = local
964 InitializeMemory(CP->getOperand(i), (char*)Addr+i*ElementSize);
974 unsigned ElementSize = local
977 InitializeMemory(CPA->getOperand(i), (char*)Addr+i*ElementSize);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DMemoryBuiltins.cpp204 unsigned ElementSize = TD->getTypeAllocSize(T); local
206 ElementSize = TD->getStructLayout(ST)->getSizeInBytes();
208 // If malloc call's arg can be determined to be a multiple of ElementSize,
212 if (ComputeMultiple(MallocArg, ElementSize, Multiple,
H A DScalarEvolution.cpp3161 const SCEV *ElementSize = getSizeOfExpr(*GTI);
3167 const SCEV *LocalOffset = getMulExpr(IndexS, ElementSize,
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp509 // N = N + Idx * ElementSize;
510 uint64_t ElementSize = TD.getTypeAllocSize(Ty); local
518 if (ElementSize != 1) {
519 IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
H A DSelectionDAGBuilder.cpp3172 // N = N + Idx * ElementSize;
3173 APInt ElementSize = APInt(TLI.getPointerTy().getSizeInBits(), local
3183 if (ElementSize != 1) {
3184 if (ElementSize.isPowerOf2()) {
3185 unsigned Amt = ElementSize.logBase2();
3190 SDValue Scale = DAG.getConstant(ElementSize, TLI.getPointerTy());
H A DSelectionDAG.cpp3004 unsigned ElementSize = VT.getSizeInBits(); local
3005 unsigned Shift = ElementSize * N2C->getZExtValue();
3007 return getConstant(ShiftedVal.trunc(ElementSize), VT);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1498 unsigned ElementSize = VecEltTy->getPrimitiveSizeInBits(); local
1499 Type *ElementIntTy = IntegerType::get(C->getContext(), ElementSize);
1503 i*ElementSize));

Completed in 300 milliseconds