1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #pragma once
|
| #include "BasicBlockSpliter.h"
|
| #include "../metadata/Image.h"
| #include "../interpreter/Instruction.h"
| #include "../interpreter/Engine.h"
|
| namespace hybridclr
| {
| namespace transform
| {
| class HiTransform
| {
| public:
| static void Transform(metadata::Image* image, const MethodInfo* methodInfo, metadata::MethodBody& body, interpreter::InterpMethodInfo& result);
| };
| }
| }
|
|