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

1 2

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Analysis.cpp 93 uint64_t EltSize = TLI.getTargetData()->getTypeAllocSize(EltTy);
96 StartingOffset + i * EltSize);
  /frameworks/compile/libbcc/lib/
RSX86TranslateGEPPass.cpp 89 // Offset = Offset + Index * EltSize for index into an array or a vector
90 llvm::Value *EltSize = llvm::ConstantInt::get(
95 EltSize, "", GEP);
  /external/swiftshader/third_party/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 103 uint64_t EltSize = DL.getTypeAllocSize(EltTy);
106 StartingOffset + i * EltSize);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 344 unsigned EltSize = EltVT.getSizeInBits()/8;
346 DAG.getConstant(EltSize, dl, IdxVT));
    [all...]
LegalizeTypes.cpp     [all...]
  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 515 unsigned EltSize = VT.getScalarSizeInBits();
520 assert((EltSize == 32 || EltSize == 64) && "Unexpected element size");
524 M = (EltSize == 64 ? ((M >> 1) & 0x1) : (M & 0x3));
533 unsigned EltSize = VT.getScalarSizeInBits();
538 assert((EltSize == 32 || EltSize == 64) && "Unexpected element size");
560 if (EltSize == 64)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 583 auto EltSize = DL.getTypeAllocSize(ET);
604 Offset += EltSize;
    [all...]
InstructionCombining.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 285 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
287 if (ByteOffset < EltSize &&
314 uint64_t EltSize = TD.getTypeAllocSize(CA->getType()->getElementType());
315 uint64_t Index = ByteOffset / EltSize;
316 uint64_t Offset = ByteOffset - Index * EltSize;
321 if (EltSize >= BytesLeft)
325 BytesLeft -= EltSize;
326 CurPtr += EltSize;
332 uint64_t EltSize = TD.getTypeAllocSize(CV->getType()->getElementType());
333 uint64_t Index = ByteOffset / EltSize;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
LegalizeDAG.cpp 667 unsigned EltSize = EltVT.getSizeInBits()/8;
668 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CGClass.cpp 586 CharUnits EltSize = CGF.getContext().getTypeSizeInChars(T);
587 CharUnits Align = LV.getAlignment().alignmentOfArrayElement(EltSize);
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 339 uint64_t EltSize = DL.getTypeAllocSize(CS->getOperand(Index)->getType());
341 if (ByteOffset < EltSize &&
370 uint64_t EltSize = DL.getTypeAllocSize(EltTy);
371 uint64_t Index = ByteOffset / EltSize;
372 uint64_t Offset = ByteOffset - Index * EltSize;
384 uint64_t BytesWritten = EltSize - Offset;
385 assert(BytesWritten <= EltSize && "Not indexing into this element?");
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 380 unsigned EltSize = Idx->getScalarSizeInBits();
382 if (EltSize == 64 && IdxSize == 128)
384 else if (EltSize == 32 && IdxSize == 128)
386 else if (EltSize == 64 && IdxSize == 256)
    [all...]
Constants.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp 238 unsigned EltSize;
240 EltSize = getOpRegClass(LdSt, 0)->getSize() / 2;
244 EltSize = getOpRegClass(LdSt, Data0Idx)->getSize();
248 EltSize *= 64;
253 Offset = EltSize * Offset0;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 855 unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
863 EltSize, !Subtarget.isLittle()) ||
864 (SplatBitSize != EltSize) ||
865 (SplatValue.getZExtValue() >= EltSize))
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 485 uint64_t EltSize = DL.getTypeAllocSize(STy->getElementType());
504 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp 547 uint64_t EltSize = TD.getTypeAllocSize(STy->getElementType());
565 unsigned NewAlign = (unsigned)MinAlign(StartAlignment, EltSize*i);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp 775 uint64_t EltSize = TD->getTypeAllocSize(AT->getElementType());
776 assert(EltSize && "Cannot index into a zero-sized array");
777 NewIndices.push_back(ConstantInt::get(IntPtrTy,Offset/EltSize));
778 Offset %= EltSize;
    [all...]
  /external/swiftshader/third_party/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);
695 unsigned EltSize = TD.getTypeAllocSizeInBits(VTy->getElementType());
696 Elt = Offset/EltSize;
697 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking");
721 uint64_t EltSize = TD.getTypeAllocSizeInBits(AT->getElementType())
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]

Completed in 1473 milliseconds

1 2