-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethod_rewriter.h
38 lines (28 loc) · 844 Bytes
/
method_rewriter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef OTEL_CLR_PROFILER_METHOD_REWRITER_H_
#define OTEL_CLR_PROFILER_METHOD_REWRITER_H_
#include "util.h"
#include "cor.h"
namespace trace
{
// forward declarations
class RejitHandlerModule;
class RejitHandlerModuleMethod;
class MethodRewriter
{
public:
virtual HRESULT Rewrite(RejitHandlerModule* moduleHandler, RejitHandlerModuleMethod* methodHandler) = 0;
};
class TracerMethodRewriter : public MethodRewriter, public Singleton<TracerMethodRewriter>
{
friend class Singleton<TracerMethodRewriter>;
private:
TracerMethodRewriter(){}
public:
HRESULT Rewrite(RejitHandlerModule* moduleHandler, RejitHandlerModuleMethod* methodHandler) override;
};
} // namespace trace
#endif // OTEL_CLR_PROFILER_METHOD_REWRITER_H_