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/RISCV/RISCVFrameLowering.cpp
106 auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>(); 106 auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>(); 236 auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>(); 236 auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>(); 328 const auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>(); 328 const auto *RVFI = MF.getInfo<RISCVMachineFunctionInfo>();lib/Target/RISCV/RISCVISelLowering.cpp
655 RISCVMachineFunctionInfo *FuncInfo = MF.getInfo<RISCVMachineFunctionInfo>(); 655 RISCVMachineFunctionInfo *FuncInfo = MF.getInfo<RISCVMachineFunctionInfo>(); 1163 int FI = MF.getInfo<RISCVMachineFunctionInfo>()->getMoveF64FrameIndex(); 1195 int FI = MF.getInfo<RISCVMachineFunctionInfo>()->getMoveF64FrameIndex(); 1949 RISCVMachineFunctionInfo *RVFI = MF.getInfo<RISCVMachineFunctionInfo>(); 1949 RISCVMachineFunctionInfo *RVFI = MF.getInfo<RISCVMachineFunctionInfo>();