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

  /external/llvm/lib/CodeGen/
Analysis.cpp 102 uint64_t EltSize = TLI.getDataLayout()->getTypeAllocSize(EltTy);
105 StartingOffset + i * EltSize);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
LegalizeDAG.cpp 598 unsigned EltSize = EltVT.getSizeInBits()/8;
599 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
    [all...]
SelectionDAG.cpp 122 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
124 if (CN->getAPIntValue().countTrailingOnes() < EltSize)
127 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize)
166 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
168 if (CN->getAPIntValue().countTrailingZeros() < EltSize)
171 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/R600/
SIInstrInfo.cpp 222 unsigned EltSize;
224 EltSize = getOpRegClass(*LdSt, 0)->getSize() / 2;
228 EltSize = getOpRegClass(*LdSt, Data0Idx)->getSize();
232 EltSize *= 64;
237 Offset = EltSize * Offset0;
    [all...]
AMDGPUISelLowering.cpp 724 unsigned EltSize = TD->getTypeAllocSize(SeqTy->getElementType());
727 SDValue Offset = DAG.getConstant(i * EltSize, PtrVT);
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 333 uint64_t EltSize = DL.getTypeAllocSize(CS->getOperand(Index)->getType());
335 if (ByteOffset < EltSize &&
364 uint64_t EltSize = DL.getTypeAllocSize(EltTy);
365 uint64_t Index = ByteOffset / EltSize;
366 uint64_t Offset = ByteOffset - Index * EltSize;
378 uint64_t BytesWritten = EltSize - Offset;
379 assert(BytesWritten <= EltSize && "Not indexing into this element?");
    [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 854 unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
862 EltSize, !Subtarget.isLittle()) ||
863 (SplatBitSize != EltSize) ||
864 (SplatValue.getZExtValue() >= EltSize))
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 522 uint64_t EltSize = DL.getTypeAllocSize(STy->getElementType());
539 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 423 unsigned EltSize = In->getPrimitiveSizeInBits()/8;
424 if (EltSize == AllocaSize)
430 if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 &&
431 (!VectorTy || EltSize == VectorTy->getElementType()
435 VectorTy = VectorType::get(In, AllocaSize/EltSize);
788 unsigned EltSize = DL.getTypeAllocSizeInBits(VTy->getElementType());
789 Elt = Offset/EltSize;
790 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking");
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 710 milliseconds