forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethoditer.cpp
248 lines (209 loc) · 6.11 KB
/
methoditer.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//*****************************************************************************
// File: MethodIter.cpp
// Iterate through jitted instances of a method.
//*****************************************************************************
#include "common.h"
#include "methoditer.h"
//---------------------------------------------------------------------------------------
//
// Iterates next MethodDesc. Updates the holder only if the assembly differs from the previous one.
// Caller should not release (i.e. change) the holder explicitly between calls, otherwise collectible
// assembly might be without a reference and get deallocated (even the native part).
//
BOOL LoadedMethodDescIterator::Next(
CollectibleAssemblyHolder<Assembly *> * pAssemblyHolder)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
}
CONTRACTL_END
if (!m_fFirstTime)
{
// This is the 2nd or more time we called Next().
// If the method + type is not generic, then nothing more to iterate.
if (!m_mainMD->HasClassOrMethodInstantiation())
{
*pAssemblyHolder = NULL;
return FALSE;
}
goto ADVANCE_METHOD;
}
m_fFirstTime = FALSE;
// This is the 1st time we've called Next(). must Initialize iterator
if (m_mainMD == NULL)
{
m_mainMD = m_module->LookupMethodDef(m_md);
}
// note m_mainMD should be sufficiently restored to allow us to get
// at the method table, flags and token etc.
if (m_mainMD == NULL)
{
*pAssemblyHolder = NULL;
return FALSE;
}
// Needs to work w/ non-generic methods too.
if (!m_mainMD->HasClassOrMethodInstantiation())
{
*pAssemblyHolder = NULL;
return TRUE;
}
m_assemIterator = m_pAppDomain->IterateAssembliesEx(m_assemIterationFlags);
ADVANCE_ASSEMBLY:
if (!m_assemIterator.Next(pAssemblyHolder))
{
_ASSERTE(*pAssemblyHolder == NULL);
return FALSE;
}
#ifdef _DEBUG
dbg_m_pAssembly = *pAssemblyHolder;
#endif //_DEBUG
m_currentModule = (*pAssemblyHolder)->GetModule();
if (m_mainMD->HasClassInstantiation())
{
m_typeIterator.Reset();
}
else
{
m_startedNonGenericType = FALSE;
}
ADVANCE_TYPE:
if (m_mainMD->HasClassInstantiation())
{
if (!GetCurrentModule()->GetAvailableParamTypes()->FindNext(&m_typeIterator, &m_typeIteratorEntry))
goto ADVANCE_ASSEMBLY;
TypeHandle th = m_typeIteratorEntry->GetTypeHandle();
if (th.IsTypeDesc())
goto ADVANCE_TYPE;
MethodTable *pMT = th.AsMethodTable();
// Check the class token
if (pMT->GetTypeDefRid() != m_mainMD->GetMethodTable()->GetTypeDefRid())
goto ADVANCE_TYPE;
// Check the module is correct
if (pMT->GetModule() != m_module)
goto ADVANCE_TYPE;
}
else if (m_startedNonGenericType)
{
goto ADVANCE_ASSEMBLY;
}
else
{
m_startedNonGenericType = TRUE;
}
if (m_mainMD->HasMethodInstantiation())
{
m_methodIterator.Reset();
}
else
{
m_startedNonGenericMethod = FALSE;
}
ADVANCE_METHOD:
if (m_mainMD->HasMethodInstantiation())
{
if (!GetCurrentModule()->GetInstMethodHashTable()->FindNext(&m_methodIterator, &m_methodIteratorEntry))
goto ADVANCE_TYPE;
if (m_methodIteratorEntry->GetMethod()->GetModule() != m_module)
goto ADVANCE_METHOD;
if (m_methodIteratorEntry->GetMethod()->GetMemberDef() != m_md)
goto ADVANCE_METHOD;
}
else if (m_startedNonGenericMethod)
{
goto ADVANCE_TYPE;
}
else
{
m_startedNonGenericMethod = TRUE;
}
// Note: We don't need to keep the assembly alive in DAC - see code:CollectibleAssemblyHolder#CAH_DAC
#ifndef DACCESS_COMPILE
_ASSERTE_MSG(
*pAssemblyHolder == dbg_m_pAssembly,
"Caller probably modified the assembly holder, which they shouldn't - see method comment.");
#endif //DACCESS_COMPILE
return TRUE;
} // LoadedMethodDescIterator::Next
Module * LoadedMethodDescIterator::GetCurrentModule()
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
}
CONTRACTL_END
return m_currentModule;
}
MethodDesc *LoadedMethodDescIterator::Current()
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
PRECONDITION(CheckPointer(m_mainMD));
}
CONTRACTL_END
if (m_mainMD->HasMethodInstantiation())
{
_ASSERTE(m_methodIteratorEntry);
return m_methodIteratorEntry->GetMethod();
}
if (!m_mainMD->HasClassInstantiation())
{
// No Method or Class instantiation,then it's not generic.
return m_mainMD;
}
MethodTable *pMT = m_typeIteratorEntry->GetTypeHandle().GetMethodTable()->GetCanonicalMethodTable();
PREFIX_ASSUME(pMT != NULL);
return pMT->GetParallelMethodDesc(m_mainMD);
}
void
LoadedMethodDescIterator::Start(
AppDomain * pAppDomain,
Module *pModule,
mdMethodDef md,
AssemblyIterationFlags assemblyIterationFlags)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
PRECONDITION(CheckPointer(pModule));
PRECONDITION(CheckPointer(pAppDomain, NULL_OK));
}
CONTRACTL_END;
m_assemIterationFlags = assemblyIterationFlags;
m_mainMD = NULL;
m_module = pModule;
m_md = md;
m_pAppDomain = pAppDomain;
m_fFirstTime = TRUE;
_ASSERTE(pAppDomain != NULL);
_ASSERTE(TypeFromToken(m_md) == mdtMethodDef);
}
// This is special init for DAC only
// @TODO:: change it to dac compile only.
void
LoadedMethodDescIterator::Start(
AppDomain *pAppDomain,
Module *pModule,
mdMethodDef md,
MethodDesc *pMethodDesc)
{
Start(pAppDomain, pModule, md);
m_mainMD = pMethodDesc;
}
LoadedMethodDescIterator::LoadedMethodDescIterator(void)
{
LIMITED_METHOD_CONTRACT;
m_mainMD = NULL;
m_module = NULL;
m_md = mdTokenNil;
m_pAppDomain = NULL;
}