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

  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 231 uint64_t TypeSize = TD->getTypeAllocSize(GTI.getIndexedType());
233 ConstantOffset += CI->getSExtValue()*TypeSize;
234 } else if (TypeSize) { // Scales of zero don't do anything.
241 VariableScale = TypeSize;
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 289 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
290 if (TypeSize != 8 && TypeSize != 16 &&
291 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
304 size_t Idx = CountTrailingZeros_32(TypeSize / 8);
AddressSanitizer.cpp 136 Value *Addr, uint32_t TypeSize, bool IsWrite);
138 bool IsWrite, uint32_t TypeSize);
310 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
312 if (TypeSize != 8 && TypeSize != 16 &&
313 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
319 instrumentAddress(I, IRB, Addr, TypeSize, IsWrite);
323 IRBuilder<> &IRB, Value *Addr, bool IsWrite, uint32_t TypeSize) {
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 631 uint64_t TypeSize = TD ? TD->getTypeAllocSize(IndexedTy) : 1;
635 unsigned(CountTrailingZeros_64(TypeSize) +
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 676 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize,
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 426 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
431 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 405 milliseconds