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

  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 264 Value *Addr, uint32_t TypeSize, bool IsWrite,
267 Value *ShadowValue, uint32_t TypeSize);
525 static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
526 size_t Res = CountTrailingZeros_32(TypeSize / 8);
648 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
650 assert((TypeSize % 8) == 0);
653 if (TypeSize == 8 || TypeSize == 16 ||
654 TypeSize == 32 || TypeSize == 64 || TypeSize == 128
    [all...]
ThreadSanitizer.cpp 513 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
514 if (TypeSize != 8 && TypeSize != 16 &&
515 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
520 size_t Idx = CountTrailingZeros_32(TypeSize / 8);
MemorySanitizer.cpp 594 uint32_t TypeSize = MS.TD->getTypeSizeInBits(OrigTy);
595 return IntegerType::get(*MS.C, TypeSize);
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 675 void LayoutWideBitField(uint64_t FieldSize, uint64_t 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/Transforms/Scalar/
CodeGenPrepare.cpp     [all...]
SROA.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 751 unsigned TypeSize = (size_t)TD.getTypeAllocSize(Ty);
754 unsigned MemToAlloc = std::max(1U, NumElements * TypeSize);
759 DEBUG(dbgs() << "Allocated Type: " << *Ty << " (" << TypeSize << " bytes) x "
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 449 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
454 llvm::ConstantInt::get(SizeTy, TypeSize),
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 643 uint64_t TypeSize = TD ? TD->getTypeAllocSize(IndexedTy) : 1;
647 unsigned(CountTrailingZeros_64(TypeSize) +
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 369 milliseconds