/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/CodeGen/SelectionDAG/ |
LegalizeTypes.cpp | [all...] |
LegalizeDAG.cpp | 605 unsigned EltSize = EltVT.getSizeInBits()/8; 606 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) [all...] |
DAGCombiner.cpp | [all...] |
/external/llvm/lib/Analysis/ |
ConstantFolding.cpp | 311 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType()); 313 if (ByteOffset < EltSize && 342 uint64_t EltSize = TD.getTypeAllocSize(EltTy); 343 uint64_t Index = ByteOffset / EltSize; 344 uint64_t Offset = ByteOffset - Index * EltSize; 356 uint64_t BytesWritten = EltSize - Offset; 357 assert(BytesWritten <= EltSize && "Not indexing into this element?"); [all...] |
/external/llvm/lib/Target/Mips/ |
MipsSEISelLowering.cpp | 396 unsigned EltSize = Ty.getVectorElementType().getSizeInBits(); 401 EltSize, !Subtarget->isLittle()) || 402 (SplatBitSize != EltSize) || 403 (SplatValue.getZExtValue() >= EltSize))
|
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | [all...] |
PPCISelLowering.cpp | [all...] |
/external/clang/lib/AST/ |
ExprConstant.cpp | [all...] |
/external/llvm/lib/IR/ |
Constants.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/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/lib/Transforms/IPO/ |
GlobalOpt.cpp | 714 uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType()); 731 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i); [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
MemorySanitizer.cpp | 593 uint32_t EltSize = MS.TD->getTypeSizeInBits(VT->getElementType()); 594 return VectorType::get(IntegerType::get(*MS.C, EltSize), [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |