Lines Matching defs:AllocaInst
58 // AllocaInst Class
62 AllocaInst::getAllocationSize(const DataLayout &DL) const {
79 AllocaInst::getAllocationSizeInBits(const DataLayout &DL) const {
1181 // AllocaInst Implementation
1206 AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, const Twine &Name,
1208 : AllocaInst(Ty, AddrSpace, /*ArraySize=*/nullptr, Name, InsertBefore) {}
1210 AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize,
1212 : AllocaInst(Ty, AddrSpace, ArraySize,
1216 AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize,
1227 bool AllocaInst::isArrayAllocation() const {
1236 bool AllocaInst::isStaticAlloca() const {
4219 AllocaInst *AllocaInst::cloneImpl() const {
4220 AllocaInst *Result = new AllocaInst(getAllocatedType(), getAddressSpace(),