Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:pImpl

67 LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID), pImpl(0) {
712 if (!pImpl)
713 pImpl = new LDVImpl(this);
714 return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf);
718 if (pImpl)
719 static_cast<LDVImpl*>(pImpl)->clear();
723 if (pImpl)
724 delete static_cast<LDVImpl*>(pImpl);
860 if (pImpl)
861 static_cast<LDVImpl*>(pImpl)->splitRegister(OldReg, NewRegs);
982 if (pImpl)
983 static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM);
989 if (pImpl)
990 static_cast<LDVImpl*>(pImpl)->print(dbgs());