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

  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 119 uint64_t TySize = MF->getDataLayout().getTypeAllocSize(Ty);
121 TySize *= CUI->getZExtValue(); // Get total allocated size.
122 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
125 MF->getFrameInfo()->CreateStackObject(TySize, Align, false, AI);
  /external/llvm/lib/Transforms/Instrumentation/
SafeStack.cpp 611 uint64_t TySize = DL->getTypeAllocSize(Ty);
612 Value *Size = IRB.CreateMul(ArraySize, ConstantInt::get(IntPtrTy, TySize));

Completed in 84 milliseconds