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

  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 575 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
576 if (TypeSize != 8 && TypeSize != 16 &&
577 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
582 size_t Idx = countTrailingZeros(TypeSize / 8);
AddressSanitizer.cpp 285 Value *Addr, uint32_t TypeSize, bool IsWrite,
288 Value *ShadowValue, uint32_t TypeSize);
544 static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
545 size_t Res = countTrailingZeros(TypeSize / 8);
667 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
669 assert((TypeSize % 8) == 0);
672 if (TypeSize == 8 || TypeSize == 16 ||
673 TypeSize == 32 || TypeSize == 64 || TypeSize == 128
    [all...]
MemorySanitizer.cpp 605 uint32_t TypeSize = MS.TD->getTypeSizeInBits(OrigTy);
606 return IntegerType::get(*MS.C, TypeSize);
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 274 APInt TypeSize(IntPtrWidth, TD->getTypeAllocSize(GTI.getIndexedType()));
275 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize;
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 643 uint64_t TypeSize = TD ? TD->getTypeAllocSize(IndexedTy) : 1;
647 unsigned(countTrailingZeros(TypeSize) +
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp     [all...]
SROA.cpp     [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 677 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 452 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
457 llvm::ConstantInt::get(SizeTy, TypeSize),
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 1453 milliseconds