reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
102 static Ty *create(BumpPtrAllocator &Allocator, MachineFunction &MF) { 103 return new (Allocator.Allocate<Ty>()) Ty(MF); 103 return new (Allocator.Allocate<Ty>()) Ty(MF); 571 Ty *getInfo() { 573 MFInfo = Ty::template create<Ty>(Allocator, *this); 573 MFInfo = Ty::template create<Ty>(Allocator, *this); 578 const Ty *getInfo() const { 579 return const_cast<MachineFunction*>(this)->getInfo<Ty>();include/llvm/Support/Allocator.h
81 template <typename T> T *Allocate(size_t Num = 1) { 82 return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T))); 82 return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));lib/Target/SystemZ/SystemZFrameLowering.cpp
72 SystemZMachineFunctionInfo *MFI = MF.getInfo<SystemZMachineFunctionInfo>(); 72 SystemZMachineFunctionInfo *MFI = MF.getInfo<SystemZMachineFunctionInfo>(); 140 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 140 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 234 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 234 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 347 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 347 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 478 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 478 SystemZMachineFunctionInfo *ZFI = MF.getInfo<SystemZMachineFunctionInfo>(); 518 MF.getInfo<SystemZMachineFunctionInfo>()->getManipulatesSP());lib/Target/SystemZ/SystemZISelLowering.cpp
1300 SystemZMachineFunctionInfo *FuncInfo = 1301 MF.getInfo<SystemZMachineFunctionInfo>(); 2970 SystemZMachineFunctionInfo* MFI = 2971 DAG.getMachineFunction().getInfo<SystemZMachineFunctionInfo>(); 3064 SystemZMachineFunctionInfo *FI = MF.getInfo<SystemZMachineFunctionInfo>(); 3064 SystemZMachineFunctionInfo *FI = MF.getInfo<SystemZMachineFunctionInfo>(); 3157 SystemZMachineFunctionInfo *FuncInfo = 3158 MF.getInfo<SystemZMachineFunctionInfo>(); 3863 MF.getInfo<SystemZMachineFunctionInfo>()->setManipulatesSP(true); 3871 MF.getInfo<SystemZMachineFunctionInfo>()->setManipulatesSP(true);lib/Target/SystemZ/SystemZLDCleanup.cpp
72 SystemZMachineFunctionInfo* MFI = F.getInfo<SystemZMachineFunctionInfo>(); 72 SystemZMachineFunctionInfo* MFI = F.getInfo<SystemZMachineFunctionInfo>();