HomeSort by relevance Sort by last modified time
    Searched refs:isSized (Results 1 - 25 of 37) sorted by null

1 2

  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 192 if (I1ElTy->isSized()) I1Size = AA.getTypeStoreSize(I1ElTy);
197 if (I2ElTy->isSized()) I2Size = AA.getTypeStoreSize(I2ElTy);
281 if (ElTy->isSized()) Size = AA.getTypeStoreSize(ElTy);
Loads.cpp 80 if (BaseType && BaseType->isSized()) {
Lint.cpp 427 if (TD && !AI->isArrayAllocation() && ATy->isSized())
430 if (TD && BaseAlign == 0 && ATy->isSized())
437 if (TD && GTy->isSized())
440 if (TD && BaseAlign == 0 && GTy->isSized())
454 if (TD && Align == 0 && Ty && Ty->isSized())
MemoryBuiltins.cpp 208 if (!T || !T->isSized() || !TD)
434 if (!I.getAllocatedType()->isSized())
661 if (!I.getAllocatedType()->isSized())
ConstantFolding.cpp 420 !GV->getInitializer()->getType()->isSized())
654 if (!TD || !cast<PointerType>(Ptr->getType())->getElementType()->isSized() ||
740 if (!ATy->getElementType()->isSized())
    [all...]
ValueTracking.cpp 280 if (ObjectType->isSized()) {
319 if (EltTy->isSized())
641 if (!IndexedTy->isSized()) return;
    [all...]
BasicAliasAnalysis.cpp 317 ->getElementType()->isSized())
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 96 !GV->getType()->isSized() || isZeroLengthArray(GV->getType()))
  /external/llvm/lib/IR/
Type.cpp 163 return ATy->getElementType()->isSized();
166 return VTy->getElementType()->isSized();
171 return cast<StructType>(this)->isSized();
559 bool StructType::isSized() const {
569 if (!(*I)->isSized())
DataLayout.cpp 531 assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!");
Verifier.cpp 833 PTy->getElementType()->isSized(),
    [all...]
  /external/llvm/include/llvm/IR/
DataLayout.h 305 /// The type passed must have a size (Type::isSized() must return true).
449 assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!");
DerivedTypes.h 251 /// isSized - Return true if this is a sized type.
252 bool isSized() const;
Type.h 274 /// isSized - Return true if it makes sense to take the size of this type. To
278 bool isSized() const {
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 443 if (!ResultType->isSized()) {
456 if (!EltTy->isSized()) {
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 765 if (!Ty->isSized()) return 0;
    [all...]
InstCombineCalls.cpp 106 if (TD && SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) {
779 if (!SrcTy->isSized() || !DstTy->isSized())
    [all...]
InstCombineLoadStoreAlloca.cpp 199 if (TD && AI.getAllocatedType()->isSized()) {
224 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() ||
InstCombineCasts.cpp 92 if (!AllocElTy->isSized() || !CastElTy->isSized()) return 0;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 585 if (!OrigTy->isSized()) {
767 if (!AI->getType()->isSized()) {
    [all...]
AddressSanitizer.cpp 495 AI.getAllocatedType()->isSized());
666 assert(OrigTy->isSized());
    [all...]
ThreadSanitizer.cpp 574 assert(OrigTy->isSized());
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 408 if (LI->getType()->isSized())
    [all...]
MemCpyOptimizer.cpp 629 if (!StructTy->isSized()) {
    [all...]
SROA.cpp     [all...]

Completed in 155 milliseconds

1 2