Lines Matching defs:AllocaInst
60 // AllocaInst Class
64 AllocaInst::getAllocationSize(const DataLayout &DL) const {
81 AllocaInst::getAllocationSizeInBits(const DataLayout &DL) const {
1215 // AllocaInst Implementation
1240 AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, const Twine &Name,
1242 : AllocaInst(Ty, AddrSpace, /*ArraySize=*/nullptr, Name, InsertBefore) {}
1244 AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize,
1246 : AllocaInst(Ty, AddrSpace, ArraySize,
1250 AllocaInst::AllocaInst(Type *Ty, unsigned AddrSpace, Value *ArraySize,
1261 bool AllocaInst::isArrayAllocation() const {
1270 bool AllocaInst::isStaticAlloca() const {
4324 AllocaInst *AllocaInst::cloneImpl() const {
4325 AllocaInst *Result = new AllocaInst(getAllocatedType(), getAddressSpace(),