/external/llvm/lib/CodeGen/ |
Analysis.cpp | 93 uint64_t EltSize = TLI.getDataLayout()->getTypeAllocSize(EltTy); 96 StartingOffset + i * EltSize);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeTypes.cpp | [all...] |
LegalizeDAG.cpp | 609 unsigned EltSize = EltVT.getSizeInBits()/8; 610 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT)); [all...] |
SelectionDAG.cpp | 121 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits(); 123 if (CN->getAPIntValue().countTrailingOnes() < EltSize) 126 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize) 165 unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits(); 167 if (CN->getAPIntValue().countTrailingZeros() < EltSize) 170 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize) [all...] |
DAGCombiner.cpp | [all...] |
/external/llvm/lib/Analysis/ |
ConstantFolding.cpp | 324 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType()); 326 if (ByteOffset < EltSize && 355 uint64_t EltSize = TD.getTypeAllocSize(EltTy); 356 uint64_t Index = ByteOffset / EltSize; 357 uint64_t Offset = ByteOffset - Index * EltSize; 369 uint64_t BytesWritten = EltSize - Offset; 370 assert(BytesWritten <= EltSize && "Not indexing into this element?"); [all...] |
/external/llvm/lib/IR/ |
Constants.cpp | [all...] |
/external/llvm/lib/Target/Mips/ |
MipsSEISelLowering.cpp | 851 unsigned EltSize = Ty.getVectorElementType().getSizeInBits(); 859 EltSize, !Subtarget->isLittle()) || 860 (SplatBitSize != EltSize) || 861 (SplatValue.getZExtValue() >= EltSize)) [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | [all...] |
PPCISelLowering.cpp | [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/InstCombine/ |
InstructionCombining.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
ScalarReplAggregates.cpp | 418 unsigned EltSize = In->getPrimitiveSizeInBits()/8; 419 if (EltSize == AllocaSize) 425 if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 && 426 (!VectorTy || EltSize == VectorTy->getElementType() 430 VectorTy = VectorType::get(In, AllocaSize/EltSize); 783 unsigned EltSize = DL.getTypeAllocSizeInBits(VTy->getElementType()); 784 Elt = Offset/EltSize; 785 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking"); [all...] |
/external/clang/lib/AST/ |
ExprConstant.cpp | [all...] |
/external/llvm/lib/Target/R600/ |
AMDGPUISelLowering.cpp | 646 unsigned EltSize = TD->getTypeAllocSize(SeqTy->getElementType()); 649 SDValue Offset = DAG.getConstant(i * EltSize, PtrVT); [all...] |
/external/clang/lib/CodeGen/ |
CGBuiltin.cpp | [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
MemorySanitizer.cpp | 762 uint32_t EltSize = MS.DL->getTypeSizeInBits(VT->getElementType()); 763 return VectorType::get(IntegerType::get(*MS.C, EltSize), [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | [all...] |