Searched refs:AllocSize (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DSROA.cpp382 AllocSize(TD.getTypeAllocSize(AI.getAllocatedType())),
389 const uint64_t AllocSize; member in class:AllocaPartitioning::BuilderBase
516 (Offset >= 0 && (uint64_t)Offset >= AllocSize) ||
519 << " which starts past the end of the " << AllocSize
540 assert(AllocSize >= BeginOffset); // Established above.
541 if (Size > AllocSize - BeginOffset) {
543 << " to remain within the " << AllocSize << " byte alloca:\n"
546 EndOffset = AllocSize;
571 if (Offset < 0 || (uint64_t)Offset >= AllocSize ||
572 Size > (AllocSize
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DStringMap.h148 unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+ local
153 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DInstructions.cpp361 Type *AllocTy, Value *AllocSize,
383 if (IsConstantOne(AllocSize)) {
384 AllocSize = ArraySize; // Operand * 1 = Operand
389 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
393 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
396 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
401 assert(AllocSize
359 createMalloc(Instruction *InsertBefore, BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
444 CreateMalloc(Instruction *InsertBefore, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function * MallocF, const Twine &Name) argument
461 CreateMalloc(BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
[all...]
H A DCore.cpp2027 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); local
2028 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2030 ITy, unwrap(Ty), AllocSize,
2038 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); local
2039 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2041 ITy, unwrap(Ty), AllocSize,
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3216 SDValue AllocSize = getValue(I.getArraySize()); local
3219 if (AllocSize.getValueType() != IntPtr)
3220 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr);
3222 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr,
3223 AllocSize,
3235 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
3236 AllocSize.getValueType(), AllocSize,
3240 AllocSize
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DInstructions.h1214 Value *AllocSize, Value *ArraySize = 0,
1219 Value *AllocSize, Value *ArraySize = 0,
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DGlobalOpt.cpp1735 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize); local
1738 AllocSize, NumElements,

Completed in 281 milliseconds