| OLD | NEW |
| 1 //===- subzero/src/IceInstrumentation.h - ICE instrumentation ---*- C++ -*-===// | 1 //===- subzero/src/IceInstrumentation.h - ICE instrumentation ---*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 virtual void instrumentIntrinsicCall(LoweringContext &, | 62 virtual void instrumentIntrinsicCall(LoweringContext &, |
| 63 const class InstIntrinsicCall *) {} | 63 const class InstIntrinsicCall *) {} |
| 64 virtual void instrumentLoad(LoweringContext &, const class InstLoad *) {} | 64 virtual void instrumentLoad(LoweringContext &, const class InstLoad *) {} |
| 65 virtual void instrumentPhi(LoweringContext &, const class InstPhi *) {} | 65 virtual void instrumentPhi(LoweringContext &, const class InstPhi *) {} |
| 66 virtual void instrumentRet(LoweringContext &, const class InstRet *) {} | 66 virtual void instrumentRet(LoweringContext &, const class InstRet *) {} |
| 67 virtual void instrumentSelect(LoweringContext &, const class InstSelect *) {} | 67 virtual void instrumentSelect(LoweringContext &, const class InstSelect *) {} |
| 68 virtual void instrumentStore(LoweringContext &, const class InstStore *) {} | 68 virtual void instrumentStore(LoweringContext &, const class InstStore *) {} |
| 69 virtual void instrumentSwitch(LoweringContext &, const class InstSwitch *) {} | 69 virtual void instrumentSwitch(LoweringContext &, const class InstSwitch *) {} |
| 70 virtual void instrumentUnreachable(LoweringContext &, | 70 virtual void instrumentUnreachable(LoweringContext &, |
| 71 const class InstUnreachable *) {} | 71 const class InstUnreachable *) {} |
| 72 virtual void instrumentStart(Cfg *) {} |
| 72 virtual void instrumentLocalVars(Cfg *) {} | 73 virtual void instrumentLocalVars(Cfg *) {} |
| 73 | 74 |
| 74 protected: | 75 protected: |
| 75 GlobalContext *Ctx; | 76 GlobalContext *Ctx; |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 } // end of namespace Ice | 79 } // end of namespace Ice |
| 79 | 80 |
| 80 #endif // SUBZERO_SRC_ICEINSTRUMENTATION_H | 81 #endif // SUBZERO_SRC_ICEINSTRUMENTATION_H |
| OLD | NEW |