HomeSort by relevance Sort by last modified time
    Searched refs:EltSize (Results 1 - 19 of 19) sorted by null

  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 416 unsigned EltSize = In->getPrimitiveSizeInBits()/8;
417 if (EltSize == AllocaSize)
423 if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 &&
424 (!VectorTy || EltSize == VectorTy->getElementType()
428 VectorTy = VectorType::get(In, AllocaSize/EltSize);
781 unsigned EltSize = TD.getTypeAllocSizeInBits(VTy->getElementType());
782 Elt = Offset/EltSize;
783 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking");
    [all...]
  /external/llvm/include/llvm/Support/
Allocator.h 170 // Round EltSize up to the specified alignment.
171 size_t EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
172 return static_cast<T*>(Allocate(Num * EltSize, Alignment));
  /external/llvm/lib/CodeGen/
Analysis.cpp 92 uint64_t EltSize = TLI.getDataLayout()->getTypeAllocSize(EltTy);
95 StartingOffset + i * EltSize);
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.h 240 /// VRRC = VADD_SPLAT Elt, EltSize - Temporary node to be expanded
305 bool isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize);
313 unsigned getVSPLTImmediate(SDNode *N, unsigned EltSize);
PPCISelDAGToDAG.cpp     [all...]
PPCISelLowering.cpp 745 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
747 (EltSize == 1 || EltSize == 2 || EltSize == 4));
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 310 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
312 if (ByteOffset < EltSize &&
341 uint64_t EltSize = TD.getTypeAllocSize(EltTy);
342 uint64_t Index = ByteOffset / EltSize;
343 uint64_t Offset = ByteOffset - Index * EltSize;
355 uint64_t BytesWritten = EltSize - Offset;
356 assert(BytesWritten <= EltSize && "Not indexing into this element?");
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 805 uint64_t EltSize = TD->getTypeAllocSize(AT->getElementType());
806 assert(EltSize && "Cannot index into a zero-sized array");
807 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
808 Offset %= EltSize;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
LegalizeDAG.cpp 601 unsigned EltSize = EltVT.getSizeInBits()/8;
602 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
    [all...]
SelectionDAG.cpp 123 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
125 if (CN->getAPIntValue().countTrailingOnes() < EltSize)
128 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 582 uint32_t EltSize = MS.TD->getTypeSizeInBits(VT->getElementType());
583 return VectorType::get(IntegerType::get(*MS.C, EltSize),
    [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 713 uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType());
730 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 490 milliseconds