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

  /external/llvm/lib/CodeGen/
Analysis.cpp 94 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
97 StartingOffset + i * EltSize);
  /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/Analysis/
ConstantFolding.cpp 322 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
324 if (ByteOffset < EltSize &&
353 uint64_t EltSize = TD.getTypeAllocSize(EltTy);
354 uint64_t Index = ByteOffset / EltSize;
355 uint64_t Offset = ByteOffset - Index * EltSize;
366 if (EltSize >= BytesLeft)
370 BytesLeft -= EltSize;
371 CurPtr += EltSize;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
LegalizeDAG.cpp 593 unsigned EltSize = EltVT.getSizeInBits()/8;
594 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
    [all...]
SelectionDAG.cpp 136 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
139 EltSize)
143 .bitcastToAPInt().countTrailingOnes() < EltSize)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 544 uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType());
561 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 780 uint64_t EltSize = TD->getTypeAllocSize(AT->getElementType());
781 assert(EltSize && "Cannot index into a zero-sized array");
782 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
783 Offset %= EltSize;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 363 unsigned EltSize = In->getPrimitiveSizeInBits()/8;
364 if (EltSize == AllocaSize)
370 if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 &&
371 (!VectorTy || EltSize == VectorTy->getElementType()
375 VectorTy = VectorType::get(In, AllocaSize/EltSize);
698 unsigned EltSize = TD.getTypeAllocSizeInBits(VTy->getElementType());
699 Elt = Offset/EltSize;
700 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking");
724 uint64_t EltSize = TD.getTypeAllocSizeInBits(AT->getElementType())
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 650 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
652 (EltSize == 1 || EltSize == 2 || EltSize == 4));
664 for (unsigned i = 1; i != EltSize; ++i)
668 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
670 for (unsigned j = 0; j != EltSize; ++j)
695 unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
697 assert(isSplatShuffleMask(SVOp, EltSize));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 2220 milliseconds